mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-30 16:14:13 +00:00
12 lines
330 B
TypeScript
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>
|
|
)
|
|
}
|