import React from 'react'; import PropTypes from 'prop-types'; const NumberIcon = props => ( 123 ); NumberIcon.defaultProps = { fill: '#fff', }; NumberIcon.propTypes = { fill: PropTypes.string, }; export default NumberIcon;