Checkbox
Binary or indeterminate checkbox. Public API maps Figma Checkbox + Label; box chrome from the Checkbox building block.
Appearance
Content
State
Props — Checkbox
View MUI docs| Prop | Type | Description |
|---|---|---|
size | "large" | "medium" | "small" | "extraSmall" | Box and label scale. |
labelStyle | "thin" | "thick" | thin = regular; thick = semibold. |
label | ReactNode | Label beside the checkbox. |
checked | boolean | Controlled checked state. |
defaultChecked | boolean | Uncontrolled initial checked state. |
indeterminate | boolean | Partially checked (mixed) state. |
disabled | boolean | Disables interaction. |
onChange | (event, checked) => void | Called when checked state changes. |