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