fix undefined className

This commit is contained in:
Ian J. Miller 2017-11-16 14:36:59 -06:00
parent 27ce538498
commit b61fa5e1f2

View File

@ -1548,12 +1548,14 @@ class FeatherIcon extends Component {
FeatherIcon.propTypes = {
icon: PropTypes.string.isRequired,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
className: PropTypes.string
}
FeatherIcon.defaultProps = {
color: 'currentColor',
size: 24
size: 24,
className: ''
}
export default FeatherIcon;