CheckboxGroup

A checkbox group allows users to select one or more items from a list of choices.

Example

Favourite marsupials

Patterns

CheckboxGroup accepts multiple Checkbox elements as children. Each Checkbox represents an option that can be selected, labeled by its children.

Note: A Checkbox cannot be used outside of a CheckboxGroup.

Label

Each CheckboxGroup should be labelled using the label prop. If a visible label isn’t appropriate, use the aria-label prop to identify the control for accessibility.

Custom labels should be wrapped with the Text component.

Value

CheckboxGroup only allows single selection. An initial, uncontrolled value can be provided to the CheckboxGroup using the defaultValue prop. Alternatively, a controlled value can be provided using the value and onChange props.

Favourite marsupials
Favourite marsupials

Props

Orientation

Checkbox groups are vertically oriented by default. The orientation prop can be used to change the orientation to “horizontal”.

Favourite marsupials

Disabled

A radio group that isDisabled shows that a field exists, but is not currently available.

Favourite marsupials

You can also provide the isDisabled prop to individual radio buttons.

Favourite marsupials

Required

A CheckboxGroup can be marked as required by setting the isRequired prop.

Favourite marsupials

Description

The description communicates a hint or helpful information, such as specific requirements for what to choose.

Favourite marsupialsEven though this is an extremely limited selection, please choose your favourites.

Error message

The errorMessage communicates an error when the selection requirements aren’t met, prompting the user to adjust what they had originally selected.

Favourite marsupials
Please choose your favourites.
© 2025 @jossmac