Files
shadcn-ui/apps/www/components/examples/switch/demo.tsx
2023-01-24 19:51:29 +04:00

12 lines
299 B
TypeScript

import { Label } from "@/components/ui/label"
import { Switch } from "@/components/ui/switch"
export function SwitchDemo() {
return (
<div className="flex items-center space-x-2">
<Switch id="airplane-mode" />
<Label htmlFor="airplane-mode">Airplane Mode</Label>
</div>
)
}