mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-02 17:08:39 +00:00
22 lines
569 B
TypeScript
22 lines
569 B
TypeScript
import { Checkbox } from "@/examples/base/ui/checkbox"
|
|
import {
|
|
Field,
|
|
FieldContent,
|
|
FieldDescription,
|
|
FieldLabel,
|
|
} from "@/examples/base/ui/field"
|
|
|
|
export function CheckboxWithDescription() {
|
|
return (
|
|
<Field orientation="horizontal">
|
|
<Checkbox id="terms-2" defaultChecked />
|
|
<FieldContent>
|
|
<FieldLabel htmlFor="terms-2">Accept terms and conditions</FieldLabel>
|
|
<FieldDescription>
|
|
By clicking this checkbox, you agree to the terms and conditions.
|
|
</FieldDescription>
|
|
</FieldContent>
|
|
</Field>
|
|
)
|
|
}
|