import {forwardRef} from 'react'; import type {SVGIconProps} from './svgIcon'; import {SvgIcon} from './svgIcon'; const IconGraphLine = forwardRef((props, ref) => { return ( ); }); IconGraphLine.displayName = 'IconGraphLine'; export {IconGraphLine};