disabled
Description
defines whether a color select is disabledType
boolean
Default value
false
Example
<ColorSelect colors={['#65D3B3', '#FFC975', '#58C3FE']} disabled={true}/>
Details
It is also possible to set a color select to the disabled state by declaring the property with no value:
<ColorSelect disabled /> <!-- equals to "disabled={true}" -->
Related article: Setting the disabled state
Related sample: ColorSelect