import React from 'react'; import SvgIcon from './svgIcon'; type Props = React.ComponentProps; const IconLink = React.forwardRef(function IconLink( props: Props, ref: React.Ref ) { return ( ); }); IconLink.displayName = 'IconLink'; export {IconLink};