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