import React from 'react' type LinkProps = { Icon: React.ComponentType<{ className?: string }> text: string href: string ref?: React.RefObject } const Link = ({ Icon, text, href, ref, }: LinkProps) => { return ( {text} ) } export default React.memo(Link)