Components
Loading preview...
Choose between a set of options.
@shugar
npx shadcn@latest add https://21st.dev/r/shugar/switchimport { Switch } from "@/components/ui/switch";
export default function FullWidthDemo() {
return (
<div className="flex flex-col items-start gap-2 w-3/4">
<Switch name="full-width" style={{ width: "100%" }}>
<Switch.Control
defaultChecked
label="Source"
size="large"
value="source"
/>
<Switch.Control label="Output" size="large" value="output" />
</Switch>
</div>
);
}