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