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