Fix IconButton prop type (#9489)

* Fix IconButton prop type
feature/default_network_editable
Erik Marks 4 years ago committed by GitHub
parent 39d5bb73a7
commit 46bcba2d63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ui/app/components/ui/icon-button/icon-button.js

@ -28,7 +28,7 @@ export default function IconButton ({ onClick, Icon, disabled, label, tooltipRen
IconButton.propTypes = {
onClick: PropTypes.func.isRequired,
Icon: PropTypes.element.isRequired,
Icon: PropTypes.func.isRequired,
disabled: PropTypes.bool,
label: PropTypes.string.isRequired,
tooltipRender: PropTypes.func,

Loading…
Cancel
Save