14 lines
388 B
TypeScript
14 lines
388 B
TypeScript
import { Switch } from '@/registry/headless/switch';
|
|
import { Field, Label } from '@headlessui/react';
|
|
|
|
export const HeadlessSwitchDemo = () => {
|
|
return (
|
|
<Field className="flex items-center space-x-2">
|
|
<Label htmlFor="airplane-mode" className="text-sm font-medium">
|
|
Airplane mode
|
|
</Label>
|
|
<Switch defaultChecked id="airplane-mode" />
|
|
</Field>
|
|
);
|
|
};
|