disabled
Description
defines whether a radio button is disabledType
boolean
Default value
false
Example
<RadioButton label="Disabled radio button" disabled={true}/>
Details
It is also possible to set a radio button to the disabled state by declaring the property with no value:
<RadioButton disabled /> <!-- equals to "disabled={true}" -->
Related article: Setting the disabled state
Related sample: Radio Button