<RadioGroupname="gender"options={[{ label: "Male", value: "male" },{ label: "Female", value: "female" },{ label: "Other", value: "other" }]}/>


Property Name | Type | Description | Default value |
name ★ | string | Form Field Name | - |
options | RadioOption[] | Option List | - |
defaultValue | string | Default Value | - |
direction | "row" | "col" | Layout Orientation | "col" |
onChangeAction | ActionConfig | Action triggered on value change | - |
disabled | boolean | whether to disable the entire group | false |
ariaLabel | string | accessibility tag | - |
required | boolean | Required | false |
theme | "brand" | "primary" | Topic styles | "brand" |
Property Name | Type | Description | Default value |
label ★ | string | Option display text | - |
value ★ | string | Option value | - |
disabled | boolean | Disable this option or not | false |
Feedback