Files
shadcn-ui/apps/v4/examples/base/switch-with-label.tsx
2026-01-14 09:25:14 +04:00

12 lines
323 B
TypeScript

import { Label } from "@/examples/base/ui/label"
import { Switch } from "@/examples/base/ui/switch"
export function SwitchWithLabel() {
return (
<div className="flex items-center gap-2">
<Switch id="switch-bluetooth" defaultChecked />
<Label htmlFor="switch-bluetooth">Bluetooth</Label>
</div>
)
}