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