diff options
Diffstat (limited to 'icons-react')
23 files changed, 255 insertions, 3 deletions
diff --git a/icons-react/icons-js/antenna.js b/icons-react/icons-js/antenna.js new file mode 100644 index 00000000..81a8e4a4 --- /dev/null +++ b/icons-react/icons-js/antenna.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconAntenna({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-antenna" 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="M20 4v8" /><path d="M16 4.5v7" /><path d="M12 5v16" /><path d="M8 5.5v5" /><path d="M4 6v4" /><path d="M20 8h-16" /></svg>; +} + +export default IconAntenna;
\ No newline at end of file diff --git a/icons-react/icons-js/arrows-random.js b/icons-react/icons-js/arrows-random.js new file mode 100644 index 00000000..05207146 --- /dev/null +++ b/icons-react/icons-js/arrows-random.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowsRandom({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrows-random" 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="M20 21.004h-4v-4" /><path d="M16 21.004l5 -5" /><path d="M6.5 9.504l-3.5 -2l2 -3.504" /><path d="M3 7.504l6.83 -1.87" /><path d="M4 16.004l4 -1l1 4" /><path d="M8 15.004l-3.5 6" /><path d="M21 5.004l-.5 4l-4 -.5" /><path d="M20.5 9.004l-4.5 -5.5" /></svg>; +} + +export default IconArrowsRandom;
\ No newline at end of file diff --git a/icons-react/icons-js/bow.js b/icons-react/icons-js/bow.js new file mode 100644 index 00000000..04134613 --- /dev/null +++ b/icons-react/icons-js/bow.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBow({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-bow" 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="M17 3h4v4" /><path d="M21 3l-15 15" /><path d="M3 18h3v3" /><path d="M16.5 20c1.576 -1.576 2.5 -4.095 2.5 -6.5c0 -4.81 -3.69 -8.5 -8.5 -8.5c-2.415 0 -4.922 .913 -6.5 2.5l12.5 12.5z" /></svg>; +} + +export default IconBow;
\ No newline at end of file diff --git a/icons-react/icons-js/cardboards.js b/icons-react/icons-js/cardboards.js index afa17de4..e11d45b7 100644 --- a/icons-react/icons-js/cardboards.js +++ b/icons-react/icons-js/cardboards.js @@ -6,7 +6,7 @@ function IconCardboards({ stroke = 2, ...props }) { - return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cardboards" 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="M3 7v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06a2.5 2.5 0 0 0 2.5 -2.5v-8.5a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2z" /><circle cx={8} cy={11} r={1} /><circle cx={16} cy={11} r={1} /></svg>; + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cardboards" 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="M3 8v8.5a2.5 2.5 0 0 0 2.5 2.5h1.06a3 3 0 0 0 2.34 -1.13l1.54 -1.92a2 2 0 0 1 3.12 0l1.54 1.92a3 3 0 0 0 2.34 1.13h1.06a2.5 2.5 0 0 0 2.5 -2.5v-8.5a2 2 0 0 0 -2 -2h-14a2 2 0 0 0 -2 2z" /><circle cx={8} cy={12} r={1} /><circle cx={16} cy={12} r={1} /></svg>; } export default IconCardboards;
\ No newline at end of file diff --git a/icons-react/icons-js/chart-dots-2.js b/icons-react/icons-js/chart-dots-2.js new file mode 100644 index 00000000..ae3c8fe0 --- /dev/null +++ b/icons-react/icons-js/chart-dots-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconChartDots2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-chart-dots-2" 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="M3 3v18h18" /><circle cx={9} cy={15} r={2} /><circle cx={13} cy={5} r={2} /><circle cx={18} cy={12} r={2} /><path d="M21 3l-6 1.5" /><path d="M14.113 6.65l2.771 3.695" /><path d="M16 12.5l-5 2" /></svg>; +} + +export default IconChartDots2;
\ No newline at end of file diff --git a/icons-react/icons-js/chart-dots-3.js b/icons-react/icons-js/chart-dots-3.js new file mode 100644 index 00000000..e2fbb41f --- /dev/null +++ b/icons-react/icons-js/chart-dots-3.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconChartDots3({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-chart-dots-3" 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={5} cy={7} r={2} /><circle cx={16} cy={15} r={2} /><circle cx={18} cy={6} r={3} /><circle cx={6} cy={18} r={3} /><path d="M9 17l5 -1.5" /><path d="M6.5 8.5l7.81 5.37" /><path d="M7 7l8 -1" /></svg>; +} + +export default IconChartDots3;
\ No newline at end of file diff --git a/icons-react/icons-js/clock-2.js b/icons-react/icons-js/clock-2.js new file mode 100644 index 00000000..97dd5f1b --- /dev/null +++ b/icons-react/icons-js/clock-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconClock2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clock-2" 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={4} y={4} width={16} height={16} rx={1} /><path d="M12 7v5l3 3" /><path d="M4 12h1" /><path d="M19 12h1" /><path d="M12 19v1" /></svg>; +} + +export default IconClock2;
\ No newline at end of file diff --git a/icons-react/icons-js/cricket.js b/icons-react/icons-js/cricket.js new file mode 100644 index 00000000..e018d9ca --- /dev/null +++ b/icons-react/icons-js/cricket.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCricket({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cricket" 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="M11.105 18.79l-1.006 .992a4.159 4.159 0 0 1 -6.038 -5.715l.157 -.166l8.282 -8.401l1.5 1.5l3.45 -3.391a2.08 2.08 0 0 1 3.057 2.815l-.116 .126l-3.391 3.45l1.5 1.5l-3.668 3.617" /><path d="M10.5 7.5l6 6" /><circle cx={14} cy={18} r={3} /></svg>; +} + +export default IconCricket;
\ No newline at end of file diff --git a/icons-react/icons-js/fountain.js b/icons-react/icons-js/fountain.js new file mode 100644 index 00000000..da23ef4b --- /dev/null +++ b/icons-react/icons-js/fountain.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFountain({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-fountain" 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="M9 16v-5a2 2 0 1 0 -4 0" /><path d="M15 16v-5a2 2 0 1 1 4 0" /><path d="M12 16v-10a3 3 0 0 1 6 0" /><path d="M6 6a3 3 0 0 1 6 0" /><path d="M3 16h18v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-2z" /></svg>; +} + +export default IconFountain;
\ No newline at end of file diff --git a/icons-react/icons-js/hanger-2.js b/icons-react/icons-js/hanger-2.js new file mode 100644 index 00000000..77a49f48 --- /dev/null +++ b/icons-react/icons-js/hanger-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconHanger2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-hanger-2" 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 9l-7.971 4.428a2 2 0 0 0 -1.029 1.749v.823a2 2 0 0 0 2 2h1" /><path d="M18 18h1a2 2 0 0 0 2 -2v-.823a2 2 0 0 0 -1.029 -1.749l-7.971 -4.428c-1.457 -.81 -1.993 -2.333 -1.996 -4a2 2 0 1 1 4 0" /><rect x={6} y={16} width={12} height={5} rx={2} /></svg>; +} + +export default IconHanger2;
\ No newline at end of file diff --git a/icons-react/icons-js/hanger.js b/icons-react/icons-js/hanger.js index fe8f4ecb..046a8dbd 100644 --- a/icons-react/icons-js/hanger.js +++ b/icons-react/icons-js/hanger.js @@ -6,7 +6,7 @@ function IconHanger({ stroke = 2, ...props }) { - return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-hanger" 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="M15 7a3 3 0 1 0 -3 3v2m0 0l-8.624 5.488a0.82 .82 0 0 0 .44 1.512h16.368a0.82 .82 0 0 0 .44 -1.512l-8.624 -5.488z" /></svg>; + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-hanger" 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="M14.004 6a2 2 0 1 0 -4 0c.003 1.667 .67 3 2.004 4h-.008l7.971 4.428a2 2 0 0 1 1.029 1.749v.823a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-.823a2 2 0 0 1 1.029 -1.749l7.971 -4.428" /></svg>; } export default IconHanger;
\ No newline at end of file diff --git a/icons-react/icons-js/hexagons.js b/icons-react/icons-js/hexagons.js new file mode 100644 index 00000000..e48789a0 --- /dev/null +++ b/icons-react/icons-js/hexagons.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconHexagons({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-hexagons" 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="M4 18v-5l4 -2l4 2v5l-4 2z" /><path d="M8 11v-5l4 -2l4 2v5" /><path d="M12 13l4 -2l4 2v5l-4 2l-4 -2" /></svg>; +} + +export default IconHexagons;
\ No newline at end of file diff --git a/icons-react/icons-js/lamp-2.js b/icons-react/icons-js/lamp-2.js new file mode 100644 index 00000000..ca3c352a --- /dev/null +++ b/icons-react/icons-js/lamp-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLamp2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-lamp-2" 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="M5 21h9" /><path d="M10 21l-7 -8l8.5 -5.5" /><path d="M13 14c-2.148 -2.148 -2.148 -5.852 0 -8c2.088 -2.088 5.842 -1.972 8 0l-8 8z" /><path d="M11.742 7.574l-1.156 -1.156a2 2 0 0 1 2.828 -2.829l1.144 1.144" /><path d="M15.5 11.995l.208 .274a2.527 2.527 0 0 0 3.556 0c.939 -.933 .98 -2.42 .122 -3.4l-.366 -.369" /></svg>; +} + +export default IconLamp2;
\ No newline at end of file diff --git a/icons-react/icons-js/network.js b/icons-react/icons-js/network.js new file mode 100644 index 00000000..a15e975f --- /dev/null +++ b/icons-react/icons-js/network.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNetwork({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-network" 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={9} r={6} /><path d="M12 3c1.333 .333 2 2.333 2 6s-.667 5.667 -2 6" /><path d="M12 3c-1.333 .333 -2 2.333 -2 6s.667 5.667 2 6" /><path d="M6 9h12" /><path d="M3 19h7" /><path d="M14 19h7" /><circle cx={12} cy={19} r={2} /><path d="M12 15v2" /></svg>; +} + +export default IconNetwork;
\ No newline at end of file diff --git a/icons-react/icons-js/plug-connected-x.js b/icons-react/icons-js/plug-connected-x.js new file mode 100644 index 00000000..c9844155 --- /dev/null +++ b/icons-react/icons-js/plug-connected-x.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPlugConnectedX({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-plug-connected-x" 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="M20 16l-4 4" /><path d="M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z" /><path d="M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z" /><path d="M3 21l2.5 -2.5" /><path d="M18.5 5.5l2.5 -2.5" /><path d="M10 11l-2 2" /><path d="M13 14l-2 2" /><path d="M16 16l4 4" /></svg>; +} + +export default IconPlugConnectedX;
\ No newline at end of file diff --git a/icons-react/icons-js/plug-x.js b/icons-react/icons-js/plug-x.js new file mode 100644 index 00000000..e49d2352 --- /dev/null +++ b/icons-react/icons-js/plug-x.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPlugX({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-plug-x" 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="M13.55 17.733a5.806 5.806 0 0 1 -7.356 -4.052a5.81 5.81 0 0 1 1.537 -5.627l2.054 -2.054l7.165 7.165" /><path d="M4 20l3.5 -3.5" /><path d="M15 4l-3.5 3.5" /><path d="M20 9l-3.5 3.5" /><path d="M16 16l4 4" /><path d="M20 16l-4 4" /></svg>; +} + +export default IconPlugX;
\ No newline at end of file diff --git a/icons-react/icons-js/plug.js b/icons-react/icons-js/plug.js index 8f1d9547..d0b8913d 100644 --- a/icons-react/icons-js/plug.js +++ b/icons-react/icons-js/plug.js @@ -6,7 +6,7 @@ function IconPlug({ stroke = 2, ...props }) { - return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-plug" 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="M10 6l8 8l-2 2a5.657 5.657 0 1 1 -8 -8l2 -2z" /><path d="M4 20l4 -4" /><path d="M15 4l-3.5 3.5" /><path d="M20 9l-3.5 3.5" /></svg>; + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-plug" 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="M9.785 6l8.215 8.215l-2.054 2.054a5.81 5.81 0 1 1 -8.215 -8.215l2.054 -2.054z" /><path d="M4 20l3.5 -3.5" /><path d="M15 4l-3.5 3.5" /><path d="M20 9l-3.5 3.5" /></svg>; } export default IconPlug;
\ No newline at end of file diff --git a/icons-react/icons-js/rollercoaster.js b/icons-react/icons-js/rollercoaster.js new file mode 100644 index 00000000..dcd9e4a9 --- /dev/null +++ b/icons-react/icons-js/rollercoaster.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRollercoaster({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-rollercoaster" 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="M3 21a5.55 5.55 0 0 0 5.265 -3.795l.735 -2.205a8.775 8.775 0 0 1 8.325 -6h3.675" /><path d="M20 9v12" /><path d="M8 21v-3" /><path d="M12 21v-10" /><path d="M16 9.5v11.5" /><path d="M15 3h5v3h-5z" /><path d="M6 8l4 -3l2 2.5l-4 3l-1.8 -.5z" /></svg>; +} + +export default IconRollercoaster;
\ No newline at end of file diff --git a/icons-react/icons-js/scribble.js b/icons-react/icons-js/scribble.js new file mode 100644 index 00000000..120394f6 --- /dev/null +++ b/icons-react/icons-js/scribble.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconScribble({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-scribble" 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="M3 15c2 3 4 4 7 4s7 -3 7 -7s-3 -7 -6 -7s-5 1.5 -5 4s2 5 6 5s8.408 -2.453 10 -5" /></svg>; +} + +export default IconScribble;
\ No newline at end of file diff --git a/icons-react/icons-js/test-pipe-2.js b/icons-react/icons-js/test-pipe-2.js new file mode 100644 index 00000000..1b249198 --- /dev/null +++ b/icons-react/icons-js/test-pipe-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTestPipe2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-test-pipe-2" 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="M15 3v15a3 3 0 0 1 -6 0v-15" /><path d="M9 12h6" /><path d="M8 3h8" /></svg>; +} + +export default IconTestPipe2;
\ No newline at end of file diff --git a/icons-react/icons-js/triangles.js b/icons-react/icons-js/triangles.js new file mode 100644 index 00000000..8d3618b2 --- /dev/null +++ b/icons-react/icons-js/triangles.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTriangles({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-triangles" 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="M9.974 21h8.052a0.975 .975 0 0 0 .81 -1.517l-4.025 -6.048a0.973 .973 0 0 0 -1.622 0l-4.025 6.048a0.977 .977 0 0 0 .81 1.517z" /><path d="M4.98 16h14.04c.542 0 .98 -.443 .98 -.989a0.995 .995 0 0 0 -.156 -.534l-7.02 -11.023a0.974 .974 0 0 0 -1.648 0l-7.02 11.023a0.994 .994 0 0 0 .294 1.366a0.973 .973 0 0 0 .53 .157z" /></svg>; +} + +export default IconTriangles;
\ No newline at end of file diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts index c0726d8a..f59d77d5 100644 --- a/icons-react/index.d.ts +++ b/icons-react/index.d.ts @@ -39,6 +39,7 @@ export const IconAntennaBars2: TablerIcon; export const IconAntennaBars3: TablerIcon; export const IconAntennaBars4: TablerIcon; export const IconAntennaBars5: TablerIcon; +export const IconAntenna: TablerIcon; export const IconAperture: TablerIcon; export const IconApiApp: TablerIcon; export const IconApi: TablerIcon; @@ -164,6 +165,7 @@ export const IconArrowsLeftRight: TablerIcon; export const IconArrowsLeft: TablerIcon; export const IconArrowsMaximize: TablerIcon; export const IconArrowsMinimize: TablerIcon; +export const IconArrowsRandom: TablerIcon; export const IconArrowsRightDown: TablerIcon; export const IconArrowsRightLeft: TablerIcon; export const IconArrowsRight: TablerIcon; @@ -272,6 +274,7 @@ export const IconBorderStyle: TablerIcon; export const IconBorderTop: TablerIcon; export const IconBorderVertical: TablerIcon; export const IconBottle: TablerIcon; +export const IconBow: TablerIcon; export const IconBoxMargin: TablerIcon; export const IconBoxModel2: TablerIcon; export const IconBoxModel: TablerIcon; @@ -495,6 +498,8 @@ export const IconChartDonut2: TablerIcon; export const IconChartDonut3: TablerIcon; export const IconChartDonut4: TablerIcon; export const IconChartDonut: TablerIcon; +export const IconChartDots2: TablerIcon; +export const IconChartDots3: TablerIcon; export const IconChartDots: TablerIcon; export const IconChartInfographic: TablerIcon; export const IconChartLine: TablerIcon; @@ -561,6 +566,7 @@ export const IconClipboardPlus: TablerIcon; export const IconClipboardText: TablerIcon; export const IconClipboardX: TablerIcon; export const IconClipboard: TablerIcon; +export const IconClock2: TablerIcon; export const IconClock: TablerIcon; export const IconCloudDownload: TablerIcon; export const IconCloudFog: TablerIcon; @@ -619,6 +625,7 @@ export const IconCrane: TablerIcon; export const IconCreativeCommons: TablerIcon; export const IconCreditCardOff: TablerIcon; export const IconCreditCard: TablerIcon; +export const IconCricket: TablerIcon; export const IconCrop: TablerIcon; export const IconCross: TablerIcon; export const IconCrosshair: TablerIcon; @@ -869,6 +876,7 @@ export const IconForbid2: TablerIcon; export const IconForbid: TablerIcon; export const IconForklift: TablerIcon; export const IconForms: TablerIcon; +export const IconFountain: TablerIcon; export const IconFrame: TablerIcon; export const IconFreeRights: TablerIcon; export const IconFriends: TablerIcon; @@ -919,6 +927,7 @@ export const IconHandRock: TablerIcon; export const IconHandStop: TablerIcon; export const IconHandThreeFingers: TablerIcon; export const IconHandTwoFingers: TablerIcon; +export const IconHanger2: TablerIcon; export const IconHanger: TablerIcon; export const IconHash: TablerIcon; export const IconHaze: TablerIcon; @@ -936,6 +945,7 @@ export const IconHelmet: TablerIcon; export const IconHelp: TablerIcon; export const IconHexagonOff: TablerIcon; export const IconHexagon: TablerIcon; +export const IconHexagons: TablerIcon; export const IconHierarchy2: TablerIcon; export const IconHierarchy: TablerIcon; export const IconHighlight: TablerIcon; @@ -968,6 +978,7 @@ export const IconKeyboardOff: TablerIcon; export const IconKeyboardShow: TablerIcon; export const IconKeyboard: TablerIcon; export const IconLadder: TablerIcon; +export const IconLamp2: TablerIcon; export const IconLamp: TablerIcon; export const IconLanguageHiragana: TablerIcon; export const IconLanguageKatakana: TablerIcon; @@ -1157,6 +1168,7 @@ export const IconMultiplier1x: TablerIcon; export const IconMultiplier2x: TablerIcon; export const IconMushroom: TablerIcon; export const IconMusic: TablerIcon; +export const IconNetwork: TablerIcon; export const IconNewSection: TablerIcon; export const IconNews: TablerIcon; export const IconNfc: TablerIcon; @@ -1256,7 +1268,9 @@ export const IconPlayerTrackPrev: TablerIcon; export const IconPlaylistAdd: TablerIcon; export const IconPlaylistX: TablerIcon; export const IconPlaylist: TablerIcon; +export const IconPlugConnectedX: TablerIcon; export const IconPlugConnected: TablerIcon; +export const IconPlugX: TablerIcon; export const IconPlug: TablerIcon; export const IconPlus: TablerIcon; export const IconPoint: TablerIcon; @@ -1321,6 +1335,7 @@ export const IconRoad: TablerIcon; export const IconRobot: TablerIcon; export const IconRocket: TablerIcon; export const IconRollerSkating: TablerIcon; +export const IconRollercoaster: TablerIcon; export const IconRotate2: TablerIcon; export const IconRotate360: TablerIcon; export const IconRotateClockwise2: TablerIcon; @@ -1349,6 +1364,7 @@ export const IconScooterElectric: TablerIcon; export const IconScooter: TablerIcon; export const IconScreenShareOff: TablerIcon; export const IconScreenShare: TablerIcon; +export const IconScribble: TablerIcon; export const IconScubaMask: TablerIcon; export const IconSearch: TablerIcon; export const IconSectionSign: TablerIcon; @@ -1507,6 +1523,7 @@ export const IconTemplate: TablerIcon; export const IconTent: TablerIcon; export const IconTerminal2: TablerIcon; export const IconTerminal: TablerIcon; +export const IconTestPipe2: TablerIcon; export const IconTestPipe: TablerIcon; export const IconTextDirectionLtr: TablerIcon; export const IconTextDirectionRtl: TablerIcon; @@ -1553,6 +1570,7 @@ export const IconTriangleInverted: TablerIcon; export const IconTriangleOff: TablerIcon; export const IconTriangleSquareCircle: TablerIcon; export const IconTriangle: TablerIcon; +export const IconTriangles: TablerIcon; export const IconTrident: TablerIcon; export const IconTrophy: TablerIcon; export const IconTruckDelivery: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js index fe157eb0..1666d86f 100644 --- a/icons-react/index.js +++ b/icons-react/index.js @@ -33,6 +33,7 @@ export { default as IconAntennaBars2 } from './icons-js/antenna-bars-2.js'; export { default as IconAntennaBars3 } from './icons-js/antenna-bars-3.js'; export { default as IconAntennaBars4 } from './icons-js/antenna-bars-4.js'; export { default as IconAntennaBars5 } from './icons-js/antenna-bars-5.js'; +export { default as IconAntenna } from './icons-js/antenna.js'; export { default as IconAperture } from './icons-js/aperture.js'; export { default as IconApiApp } from './icons-js/api-app.js'; export { default as IconApi } from './icons-js/api.js'; @@ -158,6 +159,7 @@ export { default as IconArrowsLeftRight } from './icons-js/arrows-left-right.js' export { default as IconArrowsLeft } from './icons-js/arrows-left.js'; export { default as IconArrowsMaximize } from './icons-js/arrows-maximize.js'; export { default as IconArrowsMinimize } from './icons-js/arrows-minimize.js'; +export { default as IconArrowsRandom } from './icons-js/arrows-random.js'; export { default as IconArrowsRightDown } from './icons-js/arrows-right-down.js'; export { default as IconArrowsRightLeft } from './icons-js/arrows-right-left.js'; export { default as IconArrowsRight } from './icons-js/arrows-right.js'; @@ -266,6 +268,7 @@ export { default as IconBorderStyle } from './icons-js/border-style.js'; export { default as IconBorderTop } from './icons-js/border-top.js'; export { default as IconBorderVertical } from './icons-js/border-vertical.js'; export { default as IconBottle } from './icons-js/bottle.js'; +export { default as IconBow } from './icons-js/bow.js'; export { default as IconBoxMargin } from './icons-js/box-margin.js'; export { default as IconBoxModel2 } from './icons-js/box-model-2.js'; export { default as IconBoxModel } from './icons-js/box-model.js'; @@ -489,6 +492,8 @@ export { default as IconChartDonut2 } from './icons-js/chart-donut-2.js'; export { default as IconChartDonut3 } from './icons-js/chart-donut-3.js'; export { default as IconChartDonut4 } from './icons-js/chart-donut-4.js'; export { default as IconChartDonut } from './icons-js/chart-donut.js'; +export { default as IconChartDots2 } from './icons-js/chart-dots-2.js'; +export { default as IconChartDots3 } from './icons-js/chart-dots-3.js'; export { default as IconChartDots } from './icons-js/chart-dots.js'; export { default as IconChartInfographic } from './icons-js/chart-infographic.js'; export { default as IconChartLine } from './icons-js/chart-line.js'; @@ -555,6 +560,7 @@ export { default as IconClipboardPlus } from './icons-js/clipboard-plus.js'; export { default as IconClipboardText } from './icons-js/clipboard-text.js'; export { default as IconClipboardX } from './icons-js/clipboard-x.js'; export { default as IconClipboard } from './icons-js/clipboard.js'; +export { default as IconClock2 } from './icons-js/clock-2.js'; export { default as IconClock } from './icons-js/clock.js'; export { default as IconCloudDownload } from './icons-js/cloud-download.js'; export { default as IconCloudFog } from './icons-js/cloud-fog.js'; @@ -613,6 +619,7 @@ export { default as IconCrane } from './icons-js/crane.js'; export { default as IconCreativeCommons } from './icons-js/creative-commons.js'; export { default as IconCreditCardOff } from './icons-js/credit-card-off.js'; export { default as IconCreditCard } from './icons-js/credit-card.js'; +export { default as IconCricket } from './icons-js/cricket.js'; export { default as IconCrop } from './icons-js/crop.js'; export { default as IconCross } from './icons-js/cross.js'; export { default as IconCrosshair } from './icons-js/crosshair.js'; @@ -863,6 +870,7 @@ export { default as IconForbid2 } from './icons-js/forbid-2.js'; export { default as IconForbid } from './icons-js/forbid.js'; export { default as IconForklift } from './icons-js/forklift.js'; export { default as IconForms } from './icons-js/forms.js'; +export { default as IconFountain } from './icons-js/fountain.js'; export { default as IconFrame } from './icons-js/frame.js'; export { default as IconFreeRights } from './icons-js/free-rights.js'; export { default as IconFriends } from './icons-js/friends.js'; @@ -913,6 +921,7 @@ export { default as IconHandRock } from './icons-js/hand-rock.js'; export { default as IconHandStop } from './icons-js/hand-stop.js'; export { default as IconHandThreeFingers } from './icons-js/hand-three-fingers.js'; export { default as IconHandTwoFingers } from './icons-js/hand-two-fingers.js'; +export { default as IconHanger2 } from './icons-js/hanger-2.js'; export { default as IconHanger } from './icons-js/hanger.js'; export { default as IconHash } from './icons-js/hash.js'; export { default as IconHaze } from './icons-js/haze.js'; @@ -930,6 +939,7 @@ export { default as IconHelmet } from './icons-js/helmet.js'; export { default as IconHelp } from './icons-js/help.js'; export { default as IconHexagonOff } from './icons-js/hexagon-off.js'; export { default as IconHexagon } from './icons-js/hexagon.js'; +export { default as IconHexagons } from './icons-js/hexagons.js'; export { default as IconHierarchy2 } from './icons-js/hierarchy-2.js'; export { default as IconHierarchy } from './icons-js/hierarchy.js'; export { default as IconHighlight } from './icons-js/highlight.js'; @@ -962,6 +972,7 @@ export { default as IconKeyboardOff } from './icons-js/keyboard-off.js'; export { default as IconKeyboardShow } from './icons-js/keyboard-show.js'; export { default as IconKeyboard } from './icons-js/keyboard.js'; export { default as IconLadder } from './icons-js/ladder.js'; +export { default as IconLamp2 } from './icons-js/lamp-2.js'; export { default as IconLamp } from './icons-js/lamp.js'; export { default as IconLanguageHiragana } from './icons-js/language-hiragana.js'; export { default as IconLanguageKatakana } from './icons-js/language-katakana.js'; @@ -1151,6 +1162,7 @@ export { default as IconMultiplier1x } from './icons-js/multiplier-1x.js'; export { default as IconMultiplier2x } from './icons-js/multiplier-2x.js'; export { default as IconMushroom } from './icons-js/mushroom.js'; export { default as IconMusic } from './icons-js/music.js'; +export { default as IconNetwork } from './icons-js/network.js'; export { default as IconNewSection } from './icons-js/new-section.js'; export { default as IconNews } from './icons-js/news.js'; export { default as IconNfc } from './icons-js/nfc.js'; @@ -1250,7 +1262,9 @@ export { default as IconPlayerTrackPrev } from './icons-js/player-track-prev.js' export { default as IconPlaylistAdd } from './icons-js/playlist-add.js'; export { default as IconPlaylistX } from './icons-js/playlist-x.js'; export { default as IconPlaylist } from './icons-js/playlist.js'; +export { default as IconPlugConnectedX } from './icons-js/plug-connected-x.js'; export { default as IconPlugConnected } from './icons-js/plug-connected.js'; +export { default as IconPlugX } from './icons-js/plug-x.js'; export { default as IconPlug } from './icons-js/plug.js'; export { default as IconPlus } from './icons-js/plus.js'; export { default as IconPoint } from './icons-js/point.js'; @@ -1315,6 +1329,7 @@ export { default as IconRoad } from './icons-js/road.js'; export { default as IconRobot } from './icons-js/robot.js'; export { default as IconRocket } from './icons-js/rocket.js'; export { default as IconRollerSkating } from './icons-js/roller-skating.js'; +export { default as IconRollercoaster } from './icons-js/rollercoaster.js'; export { default as IconRotate2 } from './icons-js/rotate-2.js'; export { default as IconRotate360 } from './icons-js/rotate-360.js'; export { default as IconRotateClockwise2 } from './icons-js/rotate-clockwise-2.js'; @@ -1343,6 +1358,7 @@ export { default as IconScooterElectric } from './icons-js/scooter-electric.js'; export { default as IconScooter } from './icons-js/scooter.js'; export { default as IconScreenShareOff } from './icons-js/screen-share-off.js'; export { default as IconScreenShare } from './icons-js/screen-share.js'; +export { default as IconScribble } from './icons-js/scribble.js'; export { default as IconScubaMask } from './icons-js/scuba-mask.js'; export { default as IconSearch } from './icons-js/search.js'; export { default as IconSectionSign } from './icons-js/section-sign.js'; @@ -1501,6 +1517,7 @@ export { default as IconTemplate } from './icons-js/template.js'; export { default as IconTent } from './icons-js/tent.js'; export { default as IconTerminal2 } from './icons-js/terminal-2.js'; export { default as IconTerminal } from './icons-js/terminal.js'; +export { default as IconTestPipe2 } from './icons-js/test-pipe-2.js'; export { default as IconTestPipe } from './icons-js/test-pipe.js'; export { default as IconTextDirectionLtr } from './icons-js/text-direction-ltr.js'; export { default as IconTextDirectionRtl } from './icons-js/text-direction-rtl.js'; @@ -1547,6 +1564,7 @@ export { default as IconTriangleInverted } from './icons-js/triangle-inverted.js export { default as IconTriangleOff } from './icons-js/triangle-off.js'; export { default as IconTriangleSquareCircle } from './icons-js/triangle-square-circle.js'; export { default as IconTriangle } from './icons-js/triangle.js'; +export { default as IconTriangles } from './icons-js/triangles.js'; export { default as IconTrident } from './icons-js/trident.js'; export { default as IconTrophy } from './icons-js/trophy.js'; export { default as IconTruckDelivery } from './icons-js/truck-delivery.js'; |