import React from 'react'; import SvgIcon from './svgIcon'; type Props = React.ComponentProps; const IconGrabbable = React.forwardRef(function IconGrabbable( props: Props, ref: React.Ref ) { return ( ); }); IconGrabbable.displayName = 'IconGrabbable'; export {IconGrabbable};