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