Switch
A toggle switch for on/off settings.
Preview
Props
| Prop | Type | Default | Description |
|---|---|---|---|
checked | boolean | false | Checked state |
disabled | boolean | false | Disables switch |
label | string | — | Label text |
onChange | function | — | Change handler |
Usage
const { Switch } = window.ColorSnap;
ReactDOM.createRoot(document.getElementById('root')).render(
React.createElement(Switch, { label: 'Enable notifications' })
);