mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-16 04:11:34 +00:00
12 lines
323 B
TypeScript
12 lines
323 B
TypeScript
import { Checkbox } from "@/examples/base/ui/checkbox"
|
|
import { Field, FieldLabel } from "@/examples/base/ui/field"
|
|
|
|
export function CheckboxBasic() {
|
|
return (
|
|
<Field orientation="horizontal">
|
|
<Checkbox id="terms" />
|
|
<FieldLabel htmlFor="terms">Accept terms and conditions</FieldLabel>
|
|
</Field>
|
|
)
|
|
}
|