Disable the underlying button element when an ItemButton is disabled (#10194)
Fixes #10191lolsob-rspec
parent
0b7c53937f
commit
365f875f57
|
@ -86,6 +86,7 @@ export default class IconButton extends React.PureComponent {
|
|||
onClick={this.handleClick}
|
||||
style={style}
|
||||
tabIndex={tabIndex}
|
||||
disabled={disabled}
|
||||
>
|
||||
<Icon id={icon} fixedWidth aria-hidden='true' />
|
||||
</button>
|
||||
|
@ -104,6 +105,7 @@ export default class IconButton extends React.PureComponent {
|
|||
onClick={this.handleClick}
|
||||
style={style}
|
||||
tabIndex={tabIndex}
|
||||
disabled={disabled}
|
||||
>
|
||||
<Icon id={icon} style={{ transform: `rotate(${rotate}deg)` }} fixedWidth aria-hidden='true' />
|
||||
</button>
|
||||
|
|
Loading…
Reference in New Issue