Most simple components created

This commit is contained in:
2025-07-18 23:30:48 -04:00
commit 5421c2346a
134 changed files with 13805 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
export default function DangerSwitch(){
return (
<div>
Danger Switch
</div>
);
}

View File

@@ -0,0 +1,7 @@
export default function DarkSwitch(){
return (
<div>
Dark Switch
</div>
);
}

View File

@@ -0,0 +1,7 @@
export default function LightSwitch(){
return (
<div>
Light Switch
</div>
);
}

View File

@@ -0,0 +1,7 @@
export default function PlainSwitch(){
return (
<div>
Plain Switch
</div>
);
}

View File

@@ -0,0 +1,7 @@
export default function PrimarySwitch(){
return (
<div>
Primary Switch
</div>
);
}

View File

@@ -0,0 +1,7 @@
export default function SecondarySwitch(){
return (
<div>
Secondary Switch
</div>
);
}

View File

@@ -0,0 +1,7 @@
export default function SuccessDangerSwitch(){
return (
<div>
Success Danger Switch
</div>
);
}

View File

@@ -0,0 +1,7 @@
export default function SuccessSwitch(){
return (
<div>
Success Switch
</div>
);
}

View File

@@ -0,0 +1,7 @@
export default function Switch(){
return (
<div>
Switch
</div>
);
}

View File

@@ -0,0 +1,7 @@
export default function TertiarySwitch(){
return (
<div>
Tertiary Switch
</div>
);
}

View File

@@ -0,0 +1,7 @@
export default function WarningSwitch(){
return (
<div>
Warning Switch
</div>
);
}