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