Checkbox Group
Provides shared state to a series of checkboxes.
View as MarkdownUsage guidelines
- Form controls must have an accessible name: It can be created using
<label>elements, or theFieldandFieldsetcomponents. See Labeling a checkbox group and the forms guide.
Anatomy
Checkbox Group is composed together with Checkbox. Import the components and place them together:
Examples
Labeling a checkbox group
Label the group with aria-labelledby and a sibling label element:
An enclosing <label> is the simplest labeling pattern for each checkbox:
Rendering as a native button
By default, <Checkbox.Root> renders a <span> element to support enclosing labels. Prefer rendering each checkbox as a native button when using sibling labels (htmlFor/id).
Native buttons with wrapping labels are supported by using the render callback to avoid invalid HTML, so the hidden input is placed outside the label:
Form integration
Use Field and Fieldset for group labeling and form integration:
Parent checkbox
A checkbox that controls other checkboxes within a <CheckboxGroup> can be created:
- Make
<CheckboxGroup>a controlled component - Pass an array of all the child checkbox values to the
allValuesprop on the<CheckboxGroup>component - Add the
parentboolean prop to the parent<Checkbox.Root>
The group controls the parent checkbox’s indeterminate state when some, but not all, child checkboxes are checked.
Nested parent checkbox
API reference
defaultValuestring[]—
- Name
- Description
Names of the checkboxes in the group that should be initially ticked.
To render a controlled checkbox group, use the
valueprop instead.- Type
valuestring[]—
- Name
- Description
Names of the checkboxes in the group that should be ticked.
To render an uncontrolled checkbox group, use the
defaultValueprop instead.- Type
onValueChangefunction—
- Name
- Description
Event handler called when a checkbox in the group is ticked or unticked. Provides the new value as an argument.
- Type
allValuesstring[]—
- Name
- Description
Names of all checkboxes in the group. Use this when creating a parent checkbox.
- Type
disabledbooleanfalse
- Name
- Description
Whether the component should ignore user interaction.
- Type
- Default
false
classNamestring | function—
- Name
- Description
CSS class applied to the element, or a function that returns a class based on the component’s state.
- Type
styleReact.CSSProperties | function—
- Name
- Description
Style applied to the element, or a function that returns a style object based on the component’s state.
- Type
renderReactElement | function—
- Name
- Description
Allows you to replace the component’s HTML element with a different tag, or compose it with another component.
Accepts a
ReactElementor a function that returns the element to render.- Type
data-disabled
Present when the checkbox group is disabled.
| Attribute | Description | |
|---|---|---|
data-disabled | Present when the checkbox group is disabled. | |
CheckboxGroup.PropsHide
Re-Export of CheckboxGroup props as CheckboxGroupProps