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