import React, { forwardRef } from 'react'; import PropTypes from 'prop-types'; const ArrowUpLeft = forwardRef(({ color = 'currentColor', size = "1em", ...rest }, ref) => { return ( ); }); ArrowUpLeft.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ArrowUpLeft.displayName = 'ArrowUpLeft'; export default ArrowUpLeft;