Checkbox Group
A high-quality, unstyled React checkbox group component that provides a shared state for a series of checkboxes.
Provides shared state to a series of checkboxes.
Usage 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:
import { Checkbox } from '@base-ui/react/checkbox';
import { CheckboxGroup } from '@base-ui/react/checkbox-group';
<CheckboxGroup>
<Checkbox.Root />
</CheckboxGroup>;Examples
Labeling a checkbox group
Label the group with aria-labelledby and a sibling label element:
<div id="protocols-label">Allowed network protocols</div>
<CheckboxGroup aria-labelledby="protocols-label">{/* ... */}</CheckboxGroup>An enclosing <label> is the simplest labeling pattern for each checkbox:
<label>
<Checkbox.Root value="http" />
HTTP
</label>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).
<div id="protocols-label">Allowed network protocols</div>
<CheckboxGroup aria-labelledby="protocols-label">
<div>
<label htmlFor="protocol-http">HTTP</label>
<Checkbox.Root id="protocol-http" value="http" nativeButton render={<button />}>
<Checkbox.Indicator />
</Checkbox.Root>
</div>
</CheckboxGroup>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:
<div id="protocols-label">Allowed network protocols</div>
<CheckboxGroup aria-labelledby="protocols-label">
<Checkbox.Root
value="http"
nativeButton
render={(buttonProps) => (
<label>
<button {...buttonProps} />
HTTP
</label>
)}
/>
</CheckboxGroup>Form integration
Use Field and Fieldset for group labeling and form integration:
<Form>
<Field.Root name="allowedNetworkProtocols">
<Fieldset.Root render={<CheckboxGroup />}>
<Fieldset.Legend>Allowed network protocols</Fieldset.Legend>
<Field.Item>
<Field.Label>
<Checkbox.Root value="http" />
HTTP
</Field.Label>
</Field.Item>
<Field.Item>
<Field.Label>
<Checkbox.Root value="https" />
HTTPS
</Field.Label>
</Field.Item>
<Field.Item>
<Field.Label>
<Checkbox.Root value="ssh" />
SSH
</Field.Label>
</Field.Item>
</Fieldset.Root>
</Field.Root>
</Form>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>
Nested parent checkbox
API reference
Root
| Name | Type | Default | Description |
|---|---|---|---|
valueOptional | string[] | undefined | — | Names of the checkboxes in the group that should be ticked. To render an uncontrolled checkbox group, use the `defaultValue` prop instead. |
defaultValueOptional | string[] | undefined | — | Names of the checkboxes in the group that should be initially ticked. To render a controlled checkbox group, use the `value` prop instead. |
allValuesOptional | string[] | undefined | — | Names of all checkboxes in the group. Use this when creating a parent checkbox. |
disabledOptional | boolean | undefined | false | Whether the component should ignore user interaction. |