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