CheckboxGroup

CheckboxGroup renders a set of Checkboxes.

Page navigation navigation

React
readyNot reviewed for a11y
Rails
readyNot reviewed for a11y

React examples

Default

Choices

With a caption

ChoicesCaption about the choices

With a validation message

See the form pattern documentation for more information on form validation patterns.

ChoicesSomething went wrong
Something went wrong

More code examples

See the CheckboxGroup Storybook stories

Selection required

Choices
*

Props

CheckboxGroup

NameDefaultDescription
aria-labelledby
string

Used when associating the input group with a label other than CheckboxGroup.Label

children Required
CheckboxGroup.Label | CheckboxGroup.Caption | CheckboxGroup.Validation | FormControl
disabled
false
boolean

Whether the input group allows user input

id
a generated string
string
The unique identifier for this input group. Used to associate the label, validation text, and caption text.
You may want a custom ID to make it easier to select elements in integration tests.
onChange
(selected: string[], e?: ChangeEvent<HTMLInputElement>) => void

An onChange handler that gets called when the selection changes

required
false
boolean

If true, the user must make a selection before the owning form can be submitted

sx
SystemStyleObject

CheckboxGroup.Label

NameDefaultDescription
visuallyHidden
false
boolean

If true, the fieldset legend will be visually hidden

sx
SystemStyleObject

CheckboxGroup.Caption

NameDefaultDescription
children
React.ReactNode

The caption content

sx
SystemStyleObject

CheckboxGroup.Validation

NameDefaultDescription
children
React.ReactNode

The validation message

variant Required
'error' | 'success'

Changes the visual style to match the validation status

sx
SystemStyleObject