Skip to content

Switch

const Switch: React.FC<SwitchProps>

Defined in: src/components/primitives/Switch/Switch.tsx:131

Switch component for boolean on/off states in editor toolbars, settings panels, and property inspectors.

More space-efficient than Checkbox for toggle options like “Show Grid”, “Snap to Grid”, “Auto-Save”.

Example

<Switch label="Show Grid" />
<Switch checked={value} onChange={setValue} label="Auto-save" />