12 lines
339 B
TypeScript
12 lines
339 B
TypeScript
import { Label } from '@workspace/ui/components/ui/label';
|
|
import { Switch } from '@/registry/radix/switch';
|
|
|
|
export const RadixSwitchDemo = () => {
|
|
return (
|
|
<div className="flex items-center space-x-2">
|
|
<Label htmlFor="airplane-mode">Airplane mode</Label>
|
|
<Switch defaultChecked id="airplane-mode" />
|
|
</div>
|
|
);
|
|
};
|