remove unused proptype definition

This commit is contained in:
Rodrigo Antinarelli 2020-03-02 16:03:18 -03:00 committed by James A. Petts
parent 014f2d3513
commit da4ebddc65

View File

@ -81,7 +81,6 @@ const IconButton = ({
disabled = defaults.disabled,
type = defaults.type,
fullWidth = defaults.fullWidth,
className,
...rest
}) => {
@ -126,8 +125,6 @@ IconButton.propTypes = {
fullWidth: PropTypes.bool,
disabled: PropTypes.bool,
type: PropTypes.string,
startIcon: PropTypes.node,
endIcon: PropTypes.node,
className: PropTypes.node,
};