iconRobot.tsx 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. import {forwardRef} from 'react';
  2. import type {SVGIconProps} from './svgIcon';
  3. import {SvgIcon} from './svgIcon';
  4. const IconRobot = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  5. return (
  6. <SvgIcon {...props} ref={ref}>
  7. <path
  8. d="M8 5.09091V2.18182H5.09091"
  9. stroke="currentColor"
  10. fill="none"
  11. strokeWidth="1.45455"
  12. strokeLinecap="round"
  13. strokeLinejoin="round"
  14. />
  15. <path
  16. d="M12.3636 5.09091H3.63636C2.83304 5.09091 2.18182 5.74213 2.18182 6.54545V12.3636C2.18182 13.167 2.83304 13.8182 3.63636 13.8182H12.3636C13.167 13.8182 13.8182 13.167 13.8182 12.3636V6.54545C13.8182 5.74213 13.167 5.09091 12.3636 5.09091Z"
  17. stroke="currentColor"
  18. strokeWidth="1.45455"
  19. fill="none"
  20. strokeLinecap="round"
  21. strokeLinejoin="round"
  22. />
  23. <path
  24. d="M0.727273 9.45455H2.18182"
  25. stroke="currentColor"
  26. strokeWidth="1.45455"
  27. strokeLinecap="round"
  28. strokeLinejoin="round"
  29. />
  30. <path
  31. d="M13.8182 9.45455H15.2727"
  32. stroke="currentColor"
  33. strokeWidth="1.45455"
  34. strokeLinecap="round"
  35. strokeLinejoin="round"
  36. />
  37. <path
  38. d="M10.1818 8.72727V10.1818"
  39. stroke="currentColor"
  40. strokeWidth="1.45455"
  41. strokeLinecap="round"
  42. strokeLinejoin="round"
  43. />
  44. <path
  45. d="M5.81818 8.72727V10.1818"
  46. stroke="currentColor"
  47. strokeWidth="1.45455"
  48. strokeLinecap="round"
  49. strokeLinejoin="round"
  50. />
  51. </SvgIcon>
  52. );
  53. });
  54. IconRobot.displayName = 'IconRobot';
  55. export {IconRobot};