Switch
A toggle between on and off, with a spring thumb.
01
Preview & playground
Edit the code — the preview updates live. Try changing props, text, or classes.
playground.tsx
function Demo() { const [on, setOn] = useState(true) return ( <label className="flex cursor-pointer items-center gap-3 text-sm text-fg"> <Switch checked={on} onCheckedChange={setOn} /> {on ? "Notifications on" : "Notifications off"} </label> ) } render(<Demo />)
02
Installation
Copy the source into your project with the registry CLI:
$pnpm dlx shadcn@latest add @stacklyui/switchOr install the package and import it:
$pnpm add @stacklyui/ui motion03
Usage
Import Switch from "@stacklyui/ui" and compose it as shown in the playground above. Every interactive primitive is built on Radix, so keyboard navigation, focus management, and ARIA are handled for you.