mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-28 23:24:13 +00:00
12 lines
343 B
TypeScript
12 lines
343 B
TypeScript
import { Field, FieldLabel } from "@/styles/base-nova/ui/field"
|
|
import { Switch } from "@/styles/base-nova/ui/switch"
|
|
|
|
export default function FieldSwitch() {
|
|
return (
|
|
<Field orientation="horizontal" className="w-fit">
|
|
<FieldLabel htmlFor="2fa">Multi-factor authentication</FieldLabel>
|
|
<Switch id="2fa" />
|
|
</Field>
|
|
)
|
|
}
|