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