diff options
Diffstat (limited to 'icons-react/icons-js')
-rw-r--r-- | icons-react/icons-js/arrow-merge-both.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/arrow-merge-left.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/arrow-merge-right.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/garden-cart.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/ground.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/logic-and.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/logic-buffer.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/logic-nand.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/logic-nor.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/logic-not.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/logic-or.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/logic-xnor.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/logic-xor.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/microwave.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/outbound.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/sos.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/steam.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/storm.js | 12 |
18 files changed, 216 insertions, 0 deletions
diff --git a/icons-react/icons-js/arrow-merge-both.js b/icons-react/icons-js/arrow-merge-both.js new file mode 100644 index 00000000..c6a4dd25 --- /dev/null +++ b/icons-react/icons-js/arrow-merge-both.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowMergeBoth({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-merge-both" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M16 8l-4 -4l-4 4" /><path d="M12 20v-16" /><path d="M18 18c-4 -1.333 -6 -4.667 -6 -10" /><path d="M6 18c4 -1.333 6 -4.667 6 -10" /></svg>; +} + +export default IconArrowMergeBoth;
\ No newline at end of file diff --git a/icons-react/icons-js/arrow-merge-left.js b/icons-react/icons-js/arrow-merge-left.js new file mode 100644 index 00000000..08bf9514 --- /dev/null +++ b/icons-react/icons-js/arrow-merge-left.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowMergeLeft({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-merge-left" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M8 8l4 -4l4 4" /><path d="M12 20v-16" /><path d="M6 18c4 -1.333 6 -4.667 6 -10" /></svg>; +} + +export default IconArrowMergeLeft;
\ No newline at end of file diff --git a/icons-react/icons-js/arrow-merge-right.js b/icons-react/icons-js/arrow-merge-right.js new file mode 100644 index 00000000..d8e23bf1 --- /dev/null +++ b/icons-react/icons-js/arrow-merge-right.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowMergeRight({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-merge-right" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M16 8l-4 -4l-4 4" /><path d="M12 20v-16" /><path d="M18 18c-4 -1.333 -6 -4.667 -6 -10" /></svg>; +} + +export default IconArrowMergeRight;
\ No newline at end of file diff --git a/icons-react/icons-js/garden-cart.js b/icons-react/icons-js/garden-cart.js new file mode 100644 index 00000000..3a76c486 --- /dev/null +++ b/icons-react/icons-js/garden-cart.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGardenCart({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-garden-cart" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={17.5} cy={17.5} r={2.5} /><path d="M6 8v11a1 1 0 0 0 1.806 .591l3.694 -5.091v.055" /><path d="M6 8h15l-3.5 7l-7.1 -.747a4 4 0 0 1 -3.296 -2.493l-2.853 -7.13a1 1 0 0 0 -.928 -.63h-1.323" /></svg>; +} + +export default IconGardenCart;
\ No newline at end of file diff --git a/icons-react/icons-js/ground.js b/icons-react/icons-js/ground.js new file mode 100644 index 00000000..65fbe1fc --- /dev/null +++ b/icons-react/icons-js/ground.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGround({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ground" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12 13v-8" /><path d="M4 13h16" /><path d="M7 16h10" /><path d="M10 19h4" /></svg>; +} + +export default IconGround;
\ No newline at end of file diff --git a/icons-react/icons-js/logic-and.js b/icons-react/icons-js/logic-and.js new file mode 100644 index 00000000..43b62296 --- /dev/null +++ b/icons-react/icons-js/logic-and.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLogicAnd({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-logic-and" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M22 12h-5" /><path d="M2 9h5" /><path d="M2 15h5" /><path d="M9 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z" /></svg>; +} + +export default IconLogicAnd;
\ No newline at end of file diff --git a/icons-react/icons-js/logic-buffer.js b/icons-react/icons-js/logic-buffer.js new file mode 100644 index 00000000..a9e41bef --- /dev/null +++ b/icons-react/icons-js/logic-buffer.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLogicBuffer({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-logic-buffer" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M22 12h-5" /><path d="M2 9h5" /><path d="M2 15h5" /><path d="M7 5l10 7l-10 7z" /></svg>; +} + +export default IconLogicBuffer;
\ No newline at end of file diff --git a/icons-react/icons-js/logic-nand.js b/icons-react/icons-js/logic-nand.js new file mode 100644 index 00000000..ec2a0948 --- /dev/null +++ b/icons-react/icons-js/logic-nand.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLogicNand({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-logic-nand" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M22 12h-3" /><path d="M2 9h3" /><path d="M2 15h3" /><path d="M7 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z" /><circle cx={17} cy={12} r={2} /></svg>; +} + +export default IconLogicNand;
\ No newline at end of file diff --git a/icons-react/icons-js/logic-nor.js b/icons-react/icons-js/logic-nor.js new file mode 100644 index 00000000..cd7749c5 --- /dev/null +++ b/icons-react/icons-js/logic-nor.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLogicNor({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-logic-nor" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M22 12h-4" /><path d="M2 9h5" /><path d="M2 15h5" /><path d="M6 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z" /><circle cx={16} cy={12} r={2} /></svg>; +} + +export default IconLogicNor;
\ No newline at end of file diff --git a/icons-react/icons-js/logic-not.js b/icons-react/icons-js/logic-not.js new file mode 100644 index 00000000..632de58c --- /dev/null +++ b/icons-react/icons-js/logic-not.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLogicNot({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-logic-not" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M22 12h-3" /><path d="M2 9h3" /><path d="M2 15h3" /><path d="M5 5l10 7l-10 7z" /><circle cx={17} cy={12} r={2} /></svg>; +} + +export default IconLogicNot;
\ No newline at end of file diff --git a/icons-react/icons-js/logic-or.js b/icons-react/icons-js/logic-or.js new file mode 100644 index 00000000..01d95bb2 --- /dev/null +++ b/icons-react/icons-js/logic-or.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLogicOr({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-logic-or" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M22 12h-6" /><path d="M2 9h7" /><path d="M2 15h7" /><path d="M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z" /></svg>; +} + +export default IconLogicOr;
\ No newline at end of file diff --git a/icons-react/icons-js/logic-xnor.js b/icons-react/icons-js/logic-xnor.js new file mode 100644 index 00000000..d13a71b8 --- /dev/null +++ b/icons-react/icons-js/logic-xnor.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLogicXnor({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-logic-xnor" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M22 12h-2" /><path d="M2 9h4" /><path d="M2 15h4" /><path d="M5 19c1.778 -4.667 1.778 -9.333 0 -14" /><path d="M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z" /><circle cx={18} cy={12} r={2} /></svg>; +} + +export default IconLogicXnor;
\ No newline at end of file diff --git a/icons-react/icons-js/logic-xor.js b/icons-react/icons-js/logic-xor.js new file mode 100644 index 00000000..2c894317 --- /dev/null +++ b/icons-react/icons-js/logic-xor.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLogicXor({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-logic-xor" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M22 12h-4" /><path d="M2 9h6" /><path d="M2 15h6" /><path d="M7 19c1.778 -4.667 1.778 -9.333 0 -14" /><path d="M10 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z" /></svg>; +} + +export default IconLogicXor;
\ No newline at end of file diff --git a/icons-react/icons-js/microwave.js b/icons-react/icons-js/microwave.js new file mode 100644 index 00000000..a595f14b --- /dev/null +++ b/icons-react/icons-js/microwave.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMicrowave({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-microwave" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><rect x={3} y={6} width={18} height={12} rx={1} /><path d="M15 6v12" /><path d="M18 12h.01" /><path d="M18 15h.01" /><path d="M18 9h.01" /><path d="M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0" /><path d="M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0" /></svg>; +} + +export default IconMicrowave;
\ No newline at end of file diff --git a/icons-react/icons-js/outbound.js b/icons-react/icons-js/outbound.js new file mode 100644 index 00000000..380ae9ce --- /dev/null +++ b/icons-react/icons-js/outbound.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconOutbound({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-outbound" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={9} /><path d="M9 15l6 -6" /><path d="M11 9h4v4" /></svg>; +} + +export default IconOutbound;
\ No newline at end of file diff --git a/icons-react/icons-js/sos.js b/icons-react/icons-js/sos.js new file mode 100644 index 00000000..728ccf0b --- /dev/null +++ b/icons-react/icons-js/sos.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSos({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-sos" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3" /><path d="M10 8h4v8h-4z" /><path d="M17 16h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h3" /></svg>; +} + +export default IconSos;
\ No newline at end of file diff --git a/icons-react/icons-js/steam.js b/icons-react/icons-js/steam.js new file mode 100644 index 00000000..57e8658e --- /dev/null +++ b/icons-react/icons-js/steam.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSteam({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-steam" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={4} r={1} /><circle cx={4} cy={12} r={1} /><circle cx={20} cy={12} r={1} /><circle cx={12} cy={20} r={1} /><path d="M5.5 5.5l3 3" /><path d="M15.5 15.5l3 3" /><path d="M18.5 5.5l-3 3" /><path d="M8.5 15.5l-3 3" /></svg>; +} + +export default IconSteam;
\ No newline at end of file diff --git a/icons-react/icons-js/storm.js b/icons-react/icons-js/storm.js new file mode 100644 index 00000000..244bc6c9 --- /dev/null +++ b/icons-react/icons-js/storm.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconStorm({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-storm" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={3} /><circle cx={12} cy={12} r={7} /><path d="M5.369 14.236c-1.839 -3.929 -1.561 -7.616 -.704 -11.236" /><path d="M18.63 9.76c1.837 3.928 1.561 7.615 .703 11.236" /></svg>; +} + +export default IconStorm;
\ No newline at end of file |