disabled
Description
Optional. Defines whether a counter is disabledUsage
disabled?: boolean;
Parameters
- true - a counter is disabled
- false - (default) a counter is enabled
Example
<Counter disabled={true} />
Details
It is also possible to set a counter to the disabled state by declaring the property with no value:
<Counter disabled />
Related article: Setting the disabled state
Related sample: Counter