Getting started
Foundation
Typography
Navigation
Feedback
Forms
Radio group displays a set of options and allows user to select only one.
RadioGroup automatically positions radios horizontally, if there are no more than 3 radios and none of them have descriptions.
| Name | Default | Description |
|---|---|---|
isDisabled | false | booleanDetermines if all radios are disabled. |
children | — | ReactNodeRadio inputs. |
orientation | "horizontal" | "horizontal" | "vertical"Orientation. |
value | — | string | undefinedSelected radio value. |
onChange | — | (value: string) => voidCallback for when user selects a different radio option. |
| Name | Default | Description |
|---|---|---|
isDisabled | — | booleanDetermines if radio is disabled. |
label | — | stringLabel to show near the radio. |
badge | — | ReactNodeBadge to display near the label. |
description | — | ReactNodeDescription to show below the label. |
value | — | stringRadio value. |