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