aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2022-04-04 12:57:32 +0200
committercodecalm <codecalm@gmail.com>2022-04-04 12:57:32 +0200
commitcc389cd7d784a59bbcfb60f5f7341b06fd63a558 (patch)
tree759060649e12fb1d52b08be39c44ff945ad52ca4 /icons-react/icons-js
parentupdate icons categories (diff)
downloadtabler-icons-cc389cd7d784a59bbcfb60f5f7341b06fd63a558.tar.xz
Release 1.61.0v1.61.0
Diffstat (limited to 'icons-react/icons-js')
-rw-r--r--icons-react/icons-js/antenna.js12
-rw-r--r--icons-react/icons-js/arrows-random.js12
-rw-r--r--icons-react/icons-js/bow.js12
-rw-r--r--icons-react/icons-js/cardboards.js2
-rw-r--r--icons-react/icons-js/chart-dots-2.js12
-rw-r--r--icons-react/icons-js/chart-dots-3.js12
-rw-r--r--icons-react/icons-js/clock-2.js12
-rw-r--r--icons-react/icons-js/cricket.js12
-rw-r--r--icons-react/icons-js/fountain.js12
-rw-r--r--icons-react/icons-js/hanger-2.js12
-rw-r--r--icons-react/icons-js/hanger.js2
-rw-r--r--icons-react/icons-js/hexagons.js12
-rw-r--r--icons-react/icons-js/lamp-2.js12
-rw-r--r--icons-react/icons-js/network.js12
-rw-r--r--icons-react/icons-js/plug-connected-x.js12
-rw-r--r--icons-react/icons-js/plug-x.js12
-rw-r--r--icons-react/icons-js/plug.js2
-rw-r--r--icons-react/icons-js/rollercoaster.js12
-rw-r--r--icons-react/icons-js/scribble.js12
-rw-r--r--icons-react/icons-js/test-pipe-2.js12
-rw-r--r--icons-react/icons-js/triangles.js12
21 files changed, 219 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