Files
shadcn-ui/apps/v4/examples/base/checkbox-disabled.tsx
2026-01-14 09:25:14 +04:00

12 lines
330 B
TypeScript

import { Checkbox } from "@/examples/base/ui/checkbox"
import { Field, FieldLabel } from "@/examples/base/ui/field"
export function CheckboxDisabled() {
return (
<Field orientation="horizontal">
<Checkbox id="toggle" disabled />
<FieldLabel htmlFor="toggle">Enable notifications</FieldLabel>
</Field>
)
}