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