disabled
Description
Optional. Defines whether a color select is disabledUsage
disabled?: boolean;
Parameters
true
- color select is disabledfalse
- (default) color select is enabled
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 />
Related article: Setting the disabled state
Related sample: ColorSelect