<Switch />
Switch
src/components/form-controls.tsx
Import
import { Switch } from "@ossrandom/design-system";
Examples
<Space size="sm">
<Switch
size="xs"
/>
<Switch
size="sm"
/>
<Switch
size="md"
/>
<Switch
size="lg"
/>
</Space>
<Space size="sm">
<Switch />
<Switch
disabled
/>
<Switch
loading
/>
</Space>
API
extends BaseProps
| Prop | Type |
|---|---|
checked |
boolean |
defaultChecked |
boolean |
size |
Size |
disabled |
boolean |
loading |
boolean |
label |
ReactNode |
onChange |
(checked: boolean) => void; |