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