mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
16 lines
482 B
TypeScript
16 lines
482 B
TypeScript
import { Checkbox } from "@/styles/radix-nova/ui/checkbox"
|
|
import { Field, FieldLabel } from "@/styles/radix-nova/ui/field"
|
|
|
|
export function FieldCheckbox() {
|
|
return (
|
|
<FieldLabel htmlFor="checkbox-demo">
|
|
<Field orientation="horizontal">
|
|
<Checkbox id="checkbox-demo" defaultChecked />
|
|
<FieldLabel htmlFor="checkbox-demo" className="line-clamp-1">
|
|
I agree to the terms and conditions
|
|
</FieldLabel>
|
|
</Field>
|
|
</FieldLabel>
|
|
)
|
|
}
|