mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-30 08:04:18 +00:00
20 lines
556 B
TypeScript
20 lines
556 B
TypeScript
import { Checkbox } from "@/styles/base-nova/ui/checkbox"
|
|
import { Field, FieldGroup, FieldLabel } from "@/styles/base-nova/ui/field"
|
|
|
|
export function CheckboxDisabled() {
|
|
return (
|
|
<FieldGroup className="mx-auto w-56">
|
|
<Field orientation="horizontal" data-disabled>
|
|
<Checkbox
|
|
id="toggle-checkbox-disabled"
|
|
name="toggle-checkbox-disabled"
|
|
disabled
|
|
/>
|
|
<FieldLabel htmlFor="toggle-checkbox-disabled">
|
|
Enable notifications
|
|
</FieldLabel>
|
|
</Field>
|
|
</FieldGroup>
|
|
)
|
|
}
|