RadioGroup

Radio buttons allow users to select a single option from a list of mutually exclusive options.

Example

Favourite marsupial

Patterns

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

Note: A Radio cannot be used outside of a RadioGroup.

Label

Each RadioGroup 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

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

Favourite marsupial
Favourite marsupial

Props

Orientation

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

Favourite marsupial

Disabled

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

Favourite marsupial

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

Favourite marsupial

Required

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

Favourite marsupial

Description

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

Favourite marsupialEven though this is an extremely limited selection, please choose your favourite.

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 marsupial
Please choose your favourite.
© 2025 @jossmac