Files
shadcn-ui/apps/v4/examples/base/switch-demo.tsx
shadcn 62aef1117f fix
2026-01-08 21:27:27 +04:00

12 lines
305 B
TypeScript

import { Label } from "@/examples/base/ui/label"
import { Switch } from "@/examples/base/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>
)
}