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