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