aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js')
-rw-r--r--icons-react/icons-js/arrow-bear-left-2.js12
-rw-r--r--icons-react/icons-js/arrow-bear-left.js12
-rw-r--r--icons-react/icons-js/arrow-bear-right-2.js12
-rw-r--r--icons-react/icons-js/arrow-bear-right.js12
-rw-r--r--icons-react/icons-js/arrow-curve-left.js12
-rw-r--r--icons-react/icons-js/arrow-curve-right.js12
-rw-r--r--icons-react/icons-js/arrow-fork.js12
-rw-r--r--icons-react/icons-js/arrow-left-right.js12
-rw-r--r--icons-react/icons-js/arrow-loop-left-2.js12
-rw-r--r--icons-react/icons-js/arrow-loop-left.js2
-rw-r--r--icons-react/icons-js/arrow-loop-right-2.js12
-rw-r--r--icons-react/icons-js/arrow-loop-right.js2
-rw-r--r--icons-react/icons-js/arrow-merge.js12
-rw-r--r--icons-react/icons-js/arrow-ramp-left-2.js12
-rw-r--r--icons-react/icons-js/arrow-ramp-left-3.js12
-rw-r--r--icons-react/icons-js/arrow-ramp-right-2.js12
-rw-r--r--icons-react/icons-js/arrow-ramp-right-3.js12
-rw-r--r--icons-react/icons-js/arrow-rotary-first-left.js12
-rw-r--r--icons-react/icons-js/arrow-rotary-first-right.js12
-rw-r--r--icons-react/icons-js/arrow-rotary-last-left.js12
-rw-r--r--icons-react/icons-js/arrow-rotary-last-right.js12
-rw-r--r--icons-react/icons-js/arrow-rotary-left.js12
-rw-r--r--icons-react/icons-js/arrow-rotary-right.js12
-rw-r--r--icons-react/icons-js/arrow-rotary-straight.js12
-rw-r--r--icons-react/icons-js/arrow-sharp-turn-left.js12
-rw-r--r--icons-react/icons-js/arrow-sharp-turn-right.js12
-rw-r--r--icons-react/icons-js/device-mobile-rotated.js2
-rw-r--r--icons-react/icons-js/device-mobile-vibration.js2
-rw-r--r--icons-react/icons-js/device-mobile.js2
29 files changed, 293 insertions, 5 deletions
diff --git a/icons-react/icons-js/arrow-bear-left-2.js b/icons-react/icons-js/arrow-bear-left-2.js
new file mode 100644
index 00000000..4fedc098
--- /dev/null
+++ b/icons-react/icons-js/arrow-bear-left-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowBearLeft2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-bear-left-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="M9 3h-5v5" /><path d="M4 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93" /><path d="M20 5l-4.5 4.5" /></svg>;
+}
+
+export default IconArrowBearLeft2; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-bear-left.js b/icons-react/icons-js/arrow-bear-left.js
new file mode 100644
index 00000000..acd1e44a
--- /dev/null
+++ b/icons-react/icons-js/arrow-bear-left.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowBearLeft({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-bear-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="M13 3h-5v5" /><path d="M8 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93" /></svg>;
+}
+
+export default IconArrowBearLeft; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-bear-right-2.js b/icons-react/icons-js/arrow-bear-right-2.js
new file mode 100644
index 00000000..6d83f69e
--- /dev/null
+++ b/icons-react/icons-js/arrow-bear-right-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowBearRight2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-bear-right-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 3h5v5" /><path d="M20 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93" /><path d="M4 5l4.5 4.5" /></svg>;
+}
+
+export default IconArrowBearRight2; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-bear-right.js b/icons-react/icons-js/arrow-bear-right.js
new file mode 100644
index 00000000..ca234783
--- /dev/null
+++ b/icons-react/icons-js/arrow-bear-right.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowBearRight({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-bear-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="M12 3h5v5" /><path d="M17 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93" /></svg>;
+}
+
+export default IconArrowBearRight; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-curve-left.js b/icons-react/icons-js/arrow-curve-left.js
new file mode 100644
index 00000000..090e9491
--- /dev/null
+++ b/icons-react/icons-js/arrow-curve-left.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowCurveLeft({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-curve-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="M14 7l-4 -4l-4 4" /><path d="M10 3v4.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v2.394" /></svg>;
+}
+
+export default IconArrowCurveLeft; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-curve-right.js b/icons-react/icons-js/arrow-curve-right.js
new file mode 100644
index 00000000..0d44b131
--- /dev/null
+++ b/icons-react/icons-js/arrow-curve-right.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowCurveRight({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-curve-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="M10 7l4 -4l4 4" /><path d="M14 3v4.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v2.394" /></svg>;
+}
+
+export default IconArrowCurveRight; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-fork.js b/icons-react/icons-js/arrow-fork.js
new file mode 100644
index 00000000..e5bed7f2
--- /dev/null
+++ b/icons-react/icons-js/arrow-fork.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowFork({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-fork" 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 3h5v5" /><path d="M8 3h-5v5" /><path d="M21 3l-7.536 7.536a5 5 0 0 0 -1.464 3.534v6.93" /><path d="M3 3l7.536 7.536a5 5 0 0 1 1.464 3.534v.93" /></svg>;
+}
+
+export default IconArrowFork; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-left-right.js b/icons-react/icons-js/arrow-left-right.js
new file mode 100644
index 00000000..9f5917c7
--- /dev/null
+++ b/icons-react/icons-js/arrow-left-right.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowLeftRight({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-left-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="M17 13l4 -4l-4 -4" /><path d="M7 13l-4 -4l4 -4" /><path d="M12 14a5 5 0 0 1 5 -5h4" /><path d="M12 19v-5a5 5 0 0 0 -5 -5h-4" /></svg>;
+}
+
+export default IconArrowLeftRight; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-loop-left-2.js b/icons-react/icons-js/arrow-loop-left-2.js
new file mode 100644
index 00000000..d1350548
--- /dev/null
+++ b/icons-react/icons-js/arrow-loop-left-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowLoopLeft2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-loop-left-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="M13 21v-6m0 -6v-1a4 4 0 1 1 4 4h-13" /><path d="M8 16l-4 -4l4 -4" /></svg>;
+}
+
+export default IconArrowLoopLeft2; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-loop-left.js b/icons-react/icons-js/arrow-loop-left.js
index bc8070a9..8b885fb8 100644
--- a/icons-react/icons-js/arrow-loop-left.js
+++ b/icons-react/icons-js/arrow-loop-left.js
@@ -6,7 +6,7 @@ function IconArrowLoopLeft({
stroke = 2,
...props
}) {
- return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-loop-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="M13 21v-13a4 4 0 1 1 4 4h-13" /><path d="M7 15l-3 -3l3 -3" /></svg>;
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-loop-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="M13 21v-13a4 4 0 1 1 4 4h-13" /><path d="M8 16l-4 -4l4 -4" /></svg>;
}
export default IconArrowLoopLeft; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-loop-right-2.js b/icons-react/icons-js/arrow-loop-right-2.js
new file mode 100644
index 00000000..ed3fa24e
--- /dev/null
+++ b/icons-react/icons-js/arrow-loop-right-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowLoopRight2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-loop-right-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 21v-6m0 -6v-1a4 4 0 1 0 -4 4h13" /><path d="M17 16l4 -4l-4 -4" /></svg>;
+}
+
+export default IconArrowLoopRight2; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-loop-right.js b/icons-react/icons-js/arrow-loop-right.js
index 2cc9cb3f..62e7a8ac 100644
--- a/icons-react/icons-js/arrow-loop-right.js
+++ b/icons-react/icons-js/arrow-loop-right.js
@@ -6,7 +6,7 @@ function IconArrowLoopRight({
stroke = 2,
...props
}) {
- return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-loop-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="M12 21v-13a4 4 0 1 0 -4 4h13" /><path d="M18 15l3 -3l-3 -3" /></svg>;
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-loop-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="M12 21v-13a4 4 0 1 0 -4 4h13" /><path d="M17 16l4 -4l-4 -4" /></svg>;
}
export default IconArrowLoopRight; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-merge.js b/icons-react/icons-js/arrow-merge.js
new file mode 100644
index 00000000..765db9e3
--- /dev/null
+++ b/icons-react/icons-js/arrow-merge.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowMerge({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-merge" 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 7l4 -4l4 4" /><path d="M12 3v5.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v1.394" /><path d="M12 3v5.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v1.394" /></svg>;
+}
+
+export default IconArrowMerge; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-ramp-left-2.js b/icons-react/icons-js/arrow-ramp-left-2.js
new file mode 100644
index 00000000..1319e7b2
--- /dev/null
+++ b/icons-react/icons-js/arrow-ramp-left-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowRampLeft2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-ramp-left-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="M18 3v8.707" /><path d="M8 14l-4 -4l4 -4" /><path d="M18 21c0 -6.075 -4.925 -11 -11 -11h-3" /></svg>;
+}
+
+export default IconArrowRampLeft2; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-ramp-left-3.js b/icons-react/icons-js/arrow-ramp-left-3.js
new file mode 100644
index 00000000..5fee4be6
--- /dev/null
+++ b/icons-react/icons-js/arrow-ramp-left-3.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowRampLeft3({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-ramp-left-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" /><path d="M18 3v6" /><path d="M8 16l-4 -4l4 -4" /><path d="M18 21v-6a3 3 0 0 0 -3 -3h-11" /></svg>;
+}
+
+export default IconArrowRampLeft3; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-ramp-right-2.js b/icons-react/icons-js/arrow-ramp-right-2.js
new file mode 100644
index 00000000..e6bb4b2b
--- /dev/null
+++ b/icons-react/icons-js/arrow-ramp-right-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowRampRight2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-ramp-right-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="M6 3v8.707" /><path d="M16 14l4 -4l-4 -4" /><path d="M6 21c0 -6.075 4.925 -11 11 -11h3" /></svg>;
+}
+
+export default IconArrowRampRight2; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-ramp-right-3.js b/icons-react/icons-js/arrow-ramp-right-3.js
new file mode 100644
index 00000000..20d6a9a3
--- /dev/null
+++ b/icons-react/icons-js/arrow-ramp-right-3.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowRampRight3({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-ramp-right-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" /><path d="M6 3v6" /><path d="M16 16l4 -4l-4 -4" /><path d="M6 21v-6a3 3 0 0 1 3 -3h11" /></svg>;
+}
+
+export default IconArrowRampRight3; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-rotary-first-left.js b/icons-react/icons-js/arrow-rotary-first-left.js
new file mode 100644
index 00000000..daa4533b
--- /dev/null
+++ b/icons-react/icons-js/arrow-rotary-first-left.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowRotaryFirstLeft({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-rotary-first-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" /><circle transform="matrix(-1 0 0 1 32 0)" cx={16} cy={7} r={3} /><path d="M16 10v10" /><path d="M13.5 9.5l-8.5 8.5" /><path d="M10 18h-5v-5" /></svg>;
+}
+
+export default IconArrowRotaryFirstLeft; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-rotary-first-right.js b/icons-react/icons-js/arrow-rotary-first-right.js
new file mode 100644
index 00000000..8220b958
--- /dev/null
+++ b/icons-react/icons-js/arrow-rotary-first-right.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowRotaryFirstRight({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-rotary-first-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" /><circle cx={8} cy={7} r={3} /><path d="M8 10v10" /><path d="M10.5 9.5l8.5 8.5" /><path d="M14 18h5v-5" /></svg>;
+}
+
+export default IconArrowRotaryFirstRight; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-rotary-last-left.js b/icons-react/icons-js/arrow-rotary-last-left.js
new file mode 100644
index 00000000..56656cb1
--- /dev/null
+++ b/icons-react/icons-js/arrow-rotary-last-left.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowRotaryLastLeft({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-rotary-last-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" /><circle transform="matrix(-1 0 0 1 30 0)" cx={15} cy={12} r={3} /><path d="M15 15v6" /><path d="M12.5 9.5l-6.5 -6.5" /><path d="M11 3h-5v5" /></svg>;
+}
+
+export default IconArrowRotaryLastLeft; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-rotary-last-right.js b/icons-react/icons-js/arrow-rotary-last-right.js
new file mode 100644
index 00000000..9472f24b
--- /dev/null
+++ b/icons-react/icons-js/arrow-rotary-last-right.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowRotaryLastRight({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-rotary-last-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" /><circle cx={9} cy={12} r={3} /><path d="M9 15v6" /><path d="M11.5 9.5l6.5 -6.5" /><path d="M13 3h5v5" /></svg>;
+}
+
+export default IconArrowRotaryLastRight; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-rotary-left.js b/icons-react/icons-js/arrow-rotary-left.js
new file mode 100644
index 00000000..06769f74
--- /dev/null
+++ b/icons-react/icons-js/arrow-rotary-left.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowRotaryLeft({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-rotary-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" /><circle transform="matrix(-1 0 0 1 32 0)" cx={16} cy={7} r={3} /><path d="M16 10v10" /><path d="M13 7h-10" /><path d="M7 11l-4 -4l4 -4" /></svg>;
+}
+
+export default IconArrowRotaryLeft; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-rotary-right.js b/icons-react/icons-js/arrow-rotary-right.js
new file mode 100644
index 00000000..30f7a73b
--- /dev/null
+++ b/icons-react/icons-js/arrow-rotary-right.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowRotaryRight({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-rotary-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" /><circle cx={8} cy={7} r={3} /><path d="M8 10v10" /><path d="M17 11l4 -4l-4 -4" /><path d="M11 7h10" /></svg>;
+}
+
+export default IconArrowRotaryRight; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-rotary-straight.js b/icons-react/icons-js/arrow-rotary-straight.js
new file mode 100644
index 00000000..d3ded655
--- /dev/null
+++ b/icons-react/icons-js/arrow-rotary-straight.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowRotaryStraight({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-rotary-straight" 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={13} cy={13} r={3} /><path d="M13 16v5" /><path d="M13 3v7" /><path d="M9 7l4 -4l4 4" /></svg>;
+}
+
+export default IconArrowRotaryStraight; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-sharp-turn-left.js b/icons-react/icons-js/arrow-sharp-turn-left.js
new file mode 100644
index 00000000..ac2d8095
--- /dev/null
+++ b/icons-react/icons-js/arrow-sharp-turn-left.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowSharpTurnLeft({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-sharp-turn-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="M17 18v-11.31a0.7 .7 0 0 0 -1.195 -.495l-9.805 9.805" /><path d="M11 16h-5v-5" /></svg>;
+}
+
+export default IconArrowSharpTurnLeft; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-sharp-turn-right.js b/icons-react/icons-js/arrow-sharp-turn-right.js
new file mode 100644
index 00000000..3989f9e3
--- /dev/null
+++ b/icons-react/icons-js/arrow-sharp-turn-right.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowSharpTurnRight({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-sharp-turn-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="M7 18v-11.31a0.7 .7 0 0 1 1.195 -.495l9.805 9.805" /><path d="M13 16h5v-5" /></svg>;
+}
+
+export default IconArrowSharpTurnRight; \ No newline at end of file
diff --git a/icons-react/icons-js/device-mobile-rotated.js b/icons-react/icons-js/device-mobile-rotated.js
index 111bc45e..257e0181 100644
--- a/icons-react/icons-js/device-mobile-rotated.js
+++ b/icons-react/icons-js/device-mobile-rotated.js
@@ -6,7 +6,7 @@ function IconDeviceMobileRotated({
stroke = 2,
...props
}) {
- return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-device-mobile-rotated" 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" /><g transform="rotate(90 12 12)"><rect x={7} y={4} width={10} height={16} rx={1} /><line x1={11} y1={5} x2={13} y2={5} /><line x1={12} y1={17} x2={12} y2={17.01} /></g></svg>;
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-device-mobile-rotated" 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={2} /><path d="M20 11v2" /><path d="M7 12h-.01" /></svg>;
}
export default IconDeviceMobileRotated; \ No newline at end of file
diff --git a/icons-react/icons-js/device-mobile-vibration.js b/icons-react/icons-js/device-mobile-vibration.js
index a322c14b..3bb94d22 100644
--- a/icons-react/icons-js/device-mobile-vibration.js
+++ b/icons-react/icons-js/device-mobile-vibration.js
@@ -6,7 +6,7 @@ function IconDeviceMobileVibration({
stroke = 2,
...props
}) {
- return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-device-mobile-vibration" 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={10} height={16} rx={1} /><line x1={8} y1={5} x2={10} y2={5} /><line x1={9} y1={17} x2={9} y2={17.01} /><path d="M20 6l-2 3l2 3l-2 3l2 3" /></svg>;
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-device-mobile-vibration" 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={3} width={12} height={18} rx={2} /><line x1={8} y1={4} x2={10} y2={4} /><line x1={9} y1={17} x2={9} y2={17.01} /><path d="M21 6l-2 3l2 3l-2 3l2 3" /></svg>;
}
export default IconDeviceMobileVibration; \ No newline at end of file
diff --git a/icons-react/icons-js/device-mobile.js b/icons-react/icons-js/device-mobile.js
index e29c5e64..c0653515 100644
--- a/icons-react/icons-js/device-mobile.js
+++ b/icons-react/icons-js/device-mobile.js
@@ -6,7 +6,7 @@ function IconDeviceMobile({
stroke = 2,
...props
}) {
- return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-device-mobile" 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={7} y={4} width={10} height={16} rx={1} /><line x1={11} y1={5} x2={13} y2={5} /><line x1={12} y1={17} x2={12} y2={17.01} /></svg>;
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-device-mobile" 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={6} y={3} width={12} height={18} rx={2} /><line x1={11} y1={4} x2={13} y2={4} /><line x1={12} y1={17} x2={12} y2={17.01} /></svg>;
}
export default IconDeviceMobile; \ No newline at end of file