import PropTypes from 'prop-types'; const ArrowRightIcon = ({ width = 50, height = 24, color = '#007AFF', ...props }) => ( ); export default ArrowRightIcon; ArrowRightIcon.propTypes = { width: PropTypes.string, height: PropTypes.string, color: PropTypes.string };