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