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