1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- const SVGIcons = {
- "keche_plane": {
- draw: function(ctx){
- ctx.save();
- ctx.miterLimit=4;
- ctx.save();
- ctx.beginPath();
- ctx.moveTo(6.5,23.5);
- ctx.bezierCurveTo(6.5,21.2909,8.29086,19.5,10.5,19.5);
- ctx.lineTo(58.5,19.5);
- ctx.bezierCurveTo(60.7091,19.5,62.5,21.2909,62.5,23.5);
- ctx.lineTo(62.5,40.5);
- ctx.bezierCurveTo(62.5,42.7091,60.7091,44.5,58.5,44.5);
- ctx.lineTo(10.5,44.5);
- ctx.bezierCurveTo(8.29086,44.5,6.5,42.7091,6.5,40.5);
- ctx.lineTo(6.5,23.5);
- ctx.closePath();
- ctx.fill();
- ctx.stroke();
- ctx.restore();
- ctx.save();
- ctx.beginPath();
- ctx.moveTo(1.5,23.5);
- ctx.bezierCurveTo(1.5,21.2909,3.29086,19.5,5.5,19.5);
- ctx.lineTo(58.5007,19.5);
- ctx.bezierCurveTo(60.7099,19.5,62.5007,21.2909,62.5007,23.5);
- ctx.lineTo(62.5007,40.5);
- ctx.bezierCurveTo(62.5007,42.7091,60.7099,44.5,58.5007,44.5);
- ctx.lineTo(5.5,44.5);
- ctx.bezierCurveTo(3.29086,44.5,1.5,42.7091,1.5,40.5);
- ctx.lineTo(1.5,23.5);
- ctx.closePath();
- ctx.fill();
- ctx.stroke();
- ctx.restore();
- ctx.save();
- ctx.beginPath();
- ctx.moveTo(1.5,32.5);
- ctx.lineTo(6.5,32.5);
- ctx.fill();
- ctx.stroke();
- ctx.restore();
- ctx.save();
- ctx.lineCap="round";
- ctx.beginPath();
- ctx.moveTo(12.5,22.5);
- ctx.lineTo(20.5,22.5);
- ctx.fill();
- ctx.stroke();
- ctx.restore();
- ctx.save();
- ctx.lineCap="round";
- ctx.beginPath();
- ctx.moveTo(12.5,41.5);
- ctx.lineTo(20.5,41.5);
- ctx.fill();
- ctx.stroke();
- ctx.restore();
- ctx.save();
- ctx.lineCap="round";
- ctx.beginPath();
- ctx.moveTo(49.5,22.5);
- ctx.lineTo(55.5,22.5);
- ctx.fill();
- ctx.stroke();
- ctx.restore();
- ctx.save();
- ctx.lineCap="round";
- ctx.beginPath();
- ctx.moveTo(49.5,41.5);
- ctx.lineTo(55.5,41.5);
- ctx.fill();
- ctx.stroke();
- ctx.restore();
- ctx.restore();
- }
- }
- }
- export default SVGIcons
|