SVGIcons.js 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. const SVGIcons = {
  2. "keche_plane": {
  3. draw: function(ctx){
  4. ctx.save();
  5. ctx.miterLimit=4;
  6. ctx.save();
  7. ctx.beginPath();
  8. ctx.moveTo(6.5,23.5);
  9. ctx.bezierCurveTo(6.5,21.2909,8.29086,19.5,10.5,19.5);
  10. ctx.lineTo(58.5,19.5);
  11. ctx.bezierCurveTo(60.7091,19.5,62.5,21.2909,62.5,23.5);
  12. ctx.lineTo(62.5,40.5);
  13. ctx.bezierCurveTo(62.5,42.7091,60.7091,44.5,58.5,44.5);
  14. ctx.lineTo(10.5,44.5);
  15. ctx.bezierCurveTo(8.29086,44.5,6.5,42.7091,6.5,40.5);
  16. ctx.lineTo(6.5,23.5);
  17. ctx.closePath();
  18. ctx.fill();
  19. ctx.stroke();
  20. ctx.restore();
  21. ctx.save();
  22. ctx.beginPath();
  23. ctx.moveTo(1.5,23.5);
  24. ctx.bezierCurveTo(1.5,21.2909,3.29086,19.5,5.5,19.5);
  25. ctx.lineTo(58.5007,19.5);
  26. ctx.bezierCurveTo(60.7099,19.5,62.5007,21.2909,62.5007,23.5);
  27. ctx.lineTo(62.5007,40.5);
  28. ctx.bezierCurveTo(62.5007,42.7091,60.7099,44.5,58.5007,44.5);
  29. ctx.lineTo(5.5,44.5);
  30. ctx.bezierCurveTo(3.29086,44.5,1.5,42.7091,1.5,40.5);
  31. ctx.lineTo(1.5,23.5);
  32. ctx.closePath();
  33. ctx.fill();
  34. ctx.stroke();
  35. ctx.restore();
  36. ctx.save();
  37. ctx.beginPath();
  38. ctx.moveTo(1.5,32.5);
  39. ctx.lineTo(6.5,32.5);
  40. ctx.fill();
  41. ctx.stroke();
  42. ctx.restore();
  43. ctx.save();
  44. ctx.lineCap="round";
  45. ctx.beginPath();
  46. ctx.moveTo(12.5,22.5);
  47. ctx.lineTo(20.5,22.5);
  48. ctx.fill();
  49. ctx.stroke();
  50. ctx.restore();
  51. ctx.save();
  52. ctx.lineCap="round";
  53. ctx.beginPath();
  54. ctx.moveTo(12.5,41.5);
  55. ctx.lineTo(20.5,41.5);
  56. ctx.fill();
  57. ctx.stroke();
  58. ctx.restore();
  59. ctx.save();
  60. ctx.lineCap="round";
  61. ctx.beginPath();
  62. ctx.moveTo(49.5,22.5);
  63. ctx.lineTo(55.5,22.5);
  64. ctx.fill();
  65. ctx.stroke();
  66. ctx.restore();
  67. ctx.save();
  68. ctx.lineCap="round";
  69. ctx.beginPath();
  70. ctx.moveTo(49.5,41.5);
  71. ctx.lineTo(55.5,41.5);
  72. ctx.fill();
  73. ctx.stroke();
  74. ctx.restore();
  75. ctx.restore();
  76. }
  77. }
  78. }
  79. export default SVGIcons