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