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