examples/switch-minimal.tsx
1import { Switch } from "@/components/wensity/switch";23export function SwitchMinimal() {4 return (5 <Switch6 defaultChecked7 label="Reduce motion"8 description="Use shorter transitions across the interface."9 />10 );11}