mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-30 08:04:18 +00:00
35 lines
1.3 KiB
TypeScript
35 lines
1.3 KiB
TypeScript
import { Label } from "@/registry/new-york-v4/ui/label"
|
|
import { Switch } from "@/registry/new-york-v4/ui/switch"
|
|
|
|
export function SwitchDemo() {
|
|
return (
|
|
<div className="flex flex-col gap-6">
|
|
<div className="flex items-center gap-2">
|
|
<Switch id="switch-demo-airplane-mode" />
|
|
<Label htmlFor="switch-demo-airplane-mode">Airplane Mode</Label>
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<Switch
|
|
id="switch-demo-bluetooth"
|
|
className="data-[state=checked]:bg-blue-500 dark:data-[state=checked]:bg-blue-600"
|
|
defaultChecked
|
|
/>
|
|
<Label htmlFor="switch-demo-bluetooth">Bluetooth</Label>
|
|
</div>
|
|
<Label className="flex items-center gap-6 rounded-lg border p-4 has-[[data-state=checked]]:border-blue-600">
|
|
<div className="flex flex-col gap-1">
|
|
<div className="font-medium">Share across devices</div>
|
|
<div className="text-muted-foreground text-sm font-normal">
|
|
Focus is shared across devices, and turns off when you leave the
|
|
app.
|
|
</div>
|
|
</div>
|
|
<Switch
|
|
id="switch-demo-focus-mode"
|
|
className="data-[state=checked]:bg-blue-500 dark:data-[state=checked]:bg-blue-600"
|
|
/>
|
|
</Label>
|
|
</div>
|
|
)
|
|
}
|