Files
shadcn-ui/apps/v4/examples/base/field-switch.tsx
2026-01-15 17:32:16 +04:00

12 lines
337 B
TypeScript

import { Field, FieldLabel } from "@/examples/base/ui/field"
import { Switch } from "@/examples/base/ui/switch"
export default function FieldSwitch() {
return (
<Field orientation="horizontal" className="w-fit">
<FieldLabel htmlFor="2fa">Multi-factor authentication</FieldLabel>
<Switch id="2fa" />
</Field>
)
}