Components
npx shadcn@latest add https://21st.dev/r/shugar/switchLoading preview...
import { 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>
);
}
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...