disabled
Description
defines whether a button is disabledType
boolean
Default
false
Example
<Button disabled={true}>Click Me</Button>
Details
To disable a button, you can also use the property without a value:
<Button disabled>Click Me</Button>
Related article: Setting the disabled state
Related sample: Button