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