iconGrabbable.tsx 585 B

1234567891011121314151617181920
  1. import * as React from 'react';
  2. import SvgIcon, {SVGIconProps} from './svgIcon';
  3. const IconGrabbable = React.forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  4. return (
  5. <SvgIcon {...props} ref={ref}>
  6. <circle cx="4.73" cy="8" r="1.31" />
  7. <circle cx="4.73" cy="1.31" r="1.31" />
  8. <circle cx="11.27" cy="8" r="1.31" />
  9. <circle cx="11.27" cy="1.31" r="1.31" />
  10. <circle cx="4.73" cy="14.69" r="1.31" />
  11. <circle cx="11.27" cy="14.69" r="1.31" />
  12. </SvgIcon>
  13. );
  14. });
  15. IconGrabbable.displayName = 'IconGrabbable';
  16. export {IconGrabbable};