mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-07 06:03:58 -05:00
Most simple components created
This commit is contained in:
7
lib/component/input/switch/DangerSwitch.tsx
Normal file
7
lib/component/input/switch/DangerSwitch.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function DangerSwitch(){
|
||||
return (
|
||||
<div>
|
||||
Danger Switch
|
||||
</div>
|
||||
);
|
||||
}
|
||||
7
lib/component/input/switch/DarkSwitch.tsx
Normal file
7
lib/component/input/switch/DarkSwitch.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function DarkSwitch(){
|
||||
return (
|
||||
<div>
|
||||
Dark Switch
|
||||
</div>
|
||||
);
|
||||
}
|
||||
7
lib/component/input/switch/LightSwitch.tsx
Normal file
7
lib/component/input/switch/LightSwitch.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function LightSwitch(){
|
||||
return (
|
||||
<div>
|
||||
Light Switch
|
||||
</div>
|
||||
);
|
||||
}
|
||||
7
lib/component/input/switch/PlainSwitch.tsx
Normal file
7
lib/component/input/switch/PlainSwitch.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function PlainSwitch(){
|
||||
return (
|
||||
<div>
|
||||
Plain Switch
|
||||
</div>
|
||||
);
|
||||
}
|
||||
7
lib/component/input/switch/PrimarySwitch.tsx
Normal file
7
lib/component/input/switch/PrimarySwitch.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function PrimarySwitch(){
|
||||
return (
|
||||
<div>
|
||||
Primary Switch
|
||||
</div>
|
||||
);
|
||||
}
|
||||
7
lib/component/input/switch/SecondarySwitch.tsx
Normal file
7
lib/component/input/switch/SecondarySwitch.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function SecondarySwitch(){
|
||||
return (
|
||||
<div>
|
||||
Secondary Switch
|
||||
</div>
|
||||
);
|
||||
}
|
||||
7
lib/component/input/switch/SuccessDangerSwitch.tsx
Normal file
7
lib/component/input/switch/SuccessDangerSwitch.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function SuccessDangerSwitch(){
|
||||
return (
|
||||
<div>
|
||||
Success Danger Switch
|
||||
</div>
|
||||
);
|
||||
}
|
||||
7
lib/component/input/switch/SuccessSwitch.tsx
Normal file
7
lib/component/input/switch/SuccessSwitch.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function SuccessSwitch(){
|
||||
return (
|
||||
<div>
|
||||
Success Switch
|
||||
</div>
|
||||
);
|
||||
}
|
||||
7
lib/component/input/switch/Switch.tsx
Normal file
7
lib/component/input/switch/Switch.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function Switch(){
|
||||
return (
|
||||
<div>
|
||||
Switch
|
||||
</div>
|
||||
);
|
||||
}
|
||||
7
lib/component/input/switch/TertiarySwitch.tsx
Normal file
7
lib/component/input/switch/TertiarySwitch.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function TertiarySwitch(){
|
||||
return (
|
||||
<div>
|
||||
Tertiary Switch
|
||||
</div>
|
||||
);
|
||||
}
|
||||
7
lib/component/input/switch/WarningSwitch.tsx
Normal file
7
lib/component/input/switch/WarningSwitch.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function WarningSwitch(){
|
||||
return (
|
||||
<div>
|
||||
Warning Switch
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user