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