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