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