Checkbox
Checkboxes allow users to select one or more items from a set of options or to toggle a single setting on or off.
Basic
A simple checkbox with a label. Use CheckboxControl for the standard checkbox implementation.
States
Use the checked prop to control the checkbox state. Supports true, false, and "mixed" for indeterminate state.
Disabled
Use the disabled prop to prevent interaction when the option is unavailable.
Interactive
An interactive example demonstrating controlled checkbox state.
Composable API
Use CheckboxRoot and CheckboxIndicator for custom checkbox implementations with full control over the indicator content.