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/braces-asterix.js12
-rw-r--r--icons-react/icons-js/clock-hour-1.js12
-rw-r--r--icons-react/icons-js/clock-hour-10.js12
-rw-r--r--icons-react/icons-js/clock-hour-11.js12
-rw-r--r--icons-react/icons-js/clock-hour-12.js12
-rw-r--r--icons-react/icons-js/clock-hour-2.js12
-rw-r--r--icons-react/icons-js/clock-hour-3.js12
-rw-r--r--icons-react/icons-js/clock-hour-4.js12
-rw-r--r--icons-react/icons-js/clock-hour-5.js12
-rw-r--r--icons-react/icons-js/clock-hour-6.js12
-rw-r--r--icons-react/icons-js/clock-hour-7.js12
-rw-r--r--icons-react/icons-js/clock-hour-8.js12
-rw-r--r--icons-react/icons-js/clock-hour-9.js12
-rw-r--r--icons-react/icons-js/regex.js12
-rw-r--r--icons-react/icons-js/server-bolt.js12
-rw-r--r--icons-react/icons-js/server-cog.js12
-rw-r--r--icons-react/icons-js/wash-dry-w.js12
-rw-r--r--icons-react/icons-js/wash-dryclean-off.js12
18 files changed, 216 insertions, 0 deletions
diff --git a/icons-react/icons-js/braces-asterix.js b/icons-react/icons-js/braces-asterix.js
new file mode 100644
index 00000000..b4100ea6
--- /dev/null
+++ b/icons-react/icons-js/braces-asterix.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBracesAsterix({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-braces-asterix" 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 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2" /><path d="M12 11.875l3 -1.687" /><path d="M12 11.875v3.375" /><path d="M12 11.875l-3 -1.687" /><path d="M12 11.875l3 1.688" /><path d="M12 8.5v3.375" /><path d="M12 11.875l-3 1.688" /><path d="M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2" /></svg>;
+}
+
+export default IconBracesAsterix; \ No newline at end of file
diff --git a/icons-react/icons-js/clock-hour-1.js b/icons-react/icons-js/clock-hour-1.js
new file mode 100644
index 00000000..feb57f22
--- /dev/null
+++ b/icons-react/icons-js/clock-hour-1.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconClockHour1({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clock-hour-1" 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="M12 7v5" /><path d="M12 12l2 -3" /></svg>;
+}
+
+export default IconClockHour1; \ No newline at end of file
diff --git a/icons-react/icons-js/clock-hour-10.js b/icons-react/icons-js/clock-hour-10.js
new file mode 100644
index 00000000..2d0fdca3
--- /dev/null
+++ b/icons-react/icons-js/clock-hour-10.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconClockHour10({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clock-hour-10" 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="M12 12l-3 -2" /><path d="M12 7v5" /></svg>;
+}
+
+export default IconClockHour10; \ No newline at end of file
diff --git a/icons-react/icons-js/clock-hour-11.js b/icons-react/icons-js/clock-hour-11.js
new file mode 100644
index 00000000..5cc1e090
--- /dev/null
+++ b/icons-react/icons-js/clock-hour-11.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconClockHour11({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clock-hour-11" 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="M12 12l-2 -3" /><path d="M12 7v5" /></svg>;
+}
+
+export default IconClockHour11; \ No newline at end of file
diff --git a/icons-react/icons-js/clock-hour-12.js b/icons-react/icons-js/clock-hour-12.js
new file mode 100644
index 00000000..47d6fa6f
--- /dev/null
+++ b/icons-react/icons-js/clock-hour-12.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconClockHour12({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clock-hour-12" 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="M12 7v5" /></svg>;
+}
+
+export default IconClockHour12; \ No newline at end of file
diff --git a/icons-react/icons-js/clock-hour-2.js b/icons-react/icons-js/clock-hour-2.js
new file mode 100644
index 00000000..9591f187
--- /dev/null
+++ b/icons-react/icons-js/clock-hour-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconClockHour2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clock-hour-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" /><circle cx={12} cy={12} r={9} /><path d="M12 12l3 -2" /><path d="M12 7v5" /></svg>;
+}
+
+export default IconClockHour2; \ No newline at end of file
diff --git a/icons-react/icons-js/clock-hour-3.js b/icons-react/icons-js/clock-hour-3.js
new file mode 100644
index 00000000..717fbb80
--- /dev/null
+++ b/icons-react/icons-js/clock-hour-3.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconClockHour3({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clock-hour-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={12} cy={12} r={9} /><path d="M12 12h3.5" /><path d="M12 7v5" /></svg>;
+}
+
+export default IconClockHour3; \ No newline at end of file
diff --git a/icons-react/icons-js/clock-hour-4.js b/icons-react/icons-js/clock-hour-4.js
new file mode 100644
index 00000000..a50d7a3d
--- /dev/null
+++ b/icons-react/icons-js/clock-hour-4.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconClockHour4({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clock-hour-4" 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="M12 12l3 2" /><path d="M12 7v5" /></svg>;
+}
+
+export default IconClockHour4; \ No newline at end of file
diff --git a/icons-react/icons-js/clock-hour-5.js b/icons-react/icons-js/clock-hour-5.js
new file mode 100644
index 00000000..75077f86
--- /dev/null
+++ b/icons-react/icons-js/clock-hour-5.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconClockHour5({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clock-hour-5" 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="M12 12l2 3" /><path d="M12 7v5" /></svg>;
+}
+
+export default IconClockHour5; \ No newline at end of file
diff --git a/icons-react/icons-js/clock-hour-6.js b/icons-react/icons-js/clock-hour-6.js
new file mode 100644
index 00000000..537260e5
--- /dev/null
+++ b/icons-react/icons-js/clock-hour-6.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconClockHour6({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clock-hour-6" 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="M12 12v3.5" /><path d="M12 7v5" /></svg>;
+}
+
+export default IconClockHour6; \ No newline at end of file
diff --git a/icons-react/icons-js/clock-hour-7.js b/icons-react/icons-js/clock-hour-7.js
new file mode 100644
index 00000000..8a34d5b4
--- /dev/null
+++ b/icons-react/icons-js/clock-hour-7.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconClockHour7({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clock-hour-7" 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="M12 12l-2 3" /><path d="M12 7v5" /></svg>;
+}
+
+export default IconClockHour7; \ No newline at end of file
diff --git a/icons-react/icons-js/clock-hour-8.js b/icons-react/icons-js/clock-hour-8.js
new file mode 100644
index 00000000..08760fc2
--- /dev/null
+++ b/icons-react/icons-js/clock-hour-8.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconClockHour8({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clock-hour-8" 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="M12 12l-3 2" /><path d="M12 7v5" /></svg>;
+}
+
+export default IconClockHour8; \ No newline at end of file
diff --git a/icons-react/icons-js/clock-hour-9.js b/icons-react/icons-js/clock-hour-9.js
new file mode 100644
index 00000000..03aa15d6
--- /dev/null
+++ b/icons-react/icons-js/clock-hour-9.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconClockHour9({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clock-hour-9" 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="M12 12h-3.5" /><path d="M12 7v5" /></svg>;
+}
+
+export default IconClockHour9; \ No newline at end of file
diff --git a/icons-react/icons-js/regex.js b/icons-react/icons-js/regex.js
new file mode 100644
index 00000000..4dbed3a3
--- /dev/null
+++ b/icons-react/icons-js/regex.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconRegex({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-regex" 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.5 15a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0 -5z" /><path d="M17 7.875l3 -1.687" /><path d="M17 7.875v3.375" /><path d="M17 7.875l-3 -1.687" /><path d="M17 7.875l3 1.688" /><path d="M17 4.5v3.375" /><path d="M17 7.875l-3 1.688" /></svg>;
+}
+
+export default IconRegex; \ No newline at end of file
diff --git a/icons-react/icons-js/server-bolt.js b/icons-react/icons-js/server-bolt.js
new file mode 100644
index 00000000..25ab5a88
--- /dev/null
+++ b/icons-react/icons-js/server-bolt.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconServerBolt({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-server-bolt" 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={4} width={18} height={8} rx={3} /><path d="M15 20h-9a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h12" /><path d="M7 8v.01" /><path d="M7 16v.01" /><path d="M20 15l-2 3h3l-2 3" /></svg>;
+}
+
+export default IconServerBolt; \ No newline at end of file
diff --git a/icons-react/icons-js/server-cog.js b/icons-react/icons-js/server-cog.js
new file mode 100644
index 00000000..6d601e5b
--- /dev/null
+++ b/icons-react/icons-js/server-cog.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconServerCog({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-server-cog" 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={4} width={18} height={8} rx={3} /><path d="M12 20h-6a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3h10.5" /><circle cx={18.001} cy={18} r={2} /><path d="M18.001 14.5v1.5" /><path d="M18.001 20v1.5" /><path d="M21.032 16.25l-1.299 .75" /><path d="M16.27 19l-1.3 .75" /><path d="M14.97 16.25l1.3 .75" /><path d="M19.733 19l1.3 .75" /><path d="M7 8v.01" /><path d="M7 16v.01" /></svg>;
+}
+
+export default IconServerCog; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-dry-w.js b/icons-react/icons-js/wash-dry-w.js
new file mode 100644
index 00000000..d4c1cdb4
--- /dev/null
+++ b/icons-react/icons-js/wash-dry-w.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashDryW({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-dry-w" 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="M8 8l1.5 8h1l1.5 -6l1.5 6h1l1.5 -8" /></svg>;
+}
+
+export default IconWashDryW; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-dryclean-off.js b/icons-react/icons-js/wash-dryclean-off.js
new file mode 100644
index 00000000..026f4f93
--- /dev/null
+++ b/icons-react/icons-js/wash-dryclean-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashDrycleanOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-dryclean-off" 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.048 16.033a9 9 0 0 0 -12.094 -12.075m-2.321 1.682a9 9 0 0 0 12.733 12.723" /><path d="M3 3l18 18" /></svg>;
+}
+
+export default IconWashDrycleanOff; \ No newline at end of file