Skip to content

Checkbox

const Checkbox: React.FC<CheckboxProps>

Defined in: src/components/primitives/Checkbox/Checkbox.tsx:44

Checkbox component for boolean selection in settings panels, property inspectors, and form interfaces.

Supports controlled/uncontrolled modes, indeterminate state, label positioning, sizes, variants, and error states.

Example

<Checkbox label="Enable shadows" />
<Checkbox checked={value} onChange={setValue} label="Auto-save" />
<Checkbox indeterminate label="Select all" />