aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2022-08-19 10:56:42 +0200
committercodecalm <codecalm@gmail.com>2022-08-19 10:56:42 +0200
commit012db1dd5d5cec42277473abab270fa6703acb45 (patch)
tree0c4eabf5ac751c4fa165bb63c5eef0900e4de1a4 /icons-react/icons-js
parentbuild fix (diff)
downloadtabler-icons-012db1dd5d5cec42277473abab270fa6703acb45.tar.xz
Release 1.84.0v1.84.0
Diffstat (limited to 'icons-react/icons-js')
-rw-r--r--icons-react/icons-js/bleach-chlorine.js12
-rw-r--r--icons-react/icons-js/bleach-no-chlorine.js12
-rw-r--r--icons-react/icons-js/bleach-off.js12
-rw-r--r--icons-react/icons-js/bleach.js12
-rw-r--r--icons-react/icons-js/ironing-1.js12
-rw-r--r--icons-react/icons-js/ironing-2.js12
-rw-r--r--icons-react/icons-js/ironing-3.js12
-rw-r--r--icons-react/icons-js/ironing-off.js12
-rw-r--r--icons-react/icons-js/ironing-steam-off.js12
-rw-r--r--icons-react/icons-js/ironing-steam.js12
-rw-r--r--icons-react/icons-js/wash-dry-1.js12
-rw-r--r--icons-react/icons-js/wash-dry-2.js12
-rw-r--r--icons-react/icons-js/wash-dry-3.js12
-rw-r--r--icons-react/icons-js/wash-dry-a.js12
-rw-r--r--icons-react/icons-js/wash-dry-dip.js12
-rw-r--r--icons-react/icons-js/wash-dry-f.js12
-rw-r--r--icons-react/icons-js/wash-dry-hang.js12
-rw-r--r--icons-react/icons-js/wash-dry-off.js12
-rw-r--r--icons-react/icons-js/wash-dry-p.js12
-rw-r--r--icons-react/icons-js/wash-dry-shade.js12
-rw-r--r--icons-react/icons-js/wash-dry.js12
-rw-r--r--icons-react/icons-js/wash-dryclean.js12
-rw-r--r--icons-react/icons-js/wash-gentle.js12
-rw-r--r--icons-react/icons-js/wash-off.js12
-rw-r--r--icons-react/icons-js/wash-press.js12
-rw-r--r--icons-react/icons-js/wash-temperature-1.js12
-rw-r--r--icons-react/icons-js/wash-temperature-2.js12
-rw-r--r--icons-react/icons-js/wash-temperature-3.js12
-rw-r--r--icons-react/icons-js/wash-temperature-4.js12
-rw-r--r--icons-react/icons-js/wash-temperature-5.js12
-rw-r--r--icons-react/icons-js/wash-temperature-6.js12
-rw-r--r--icons-react/icons-js/wash-tumble-dry.js12
-rw-r--r--icons-react/icons-js/wash-tumble-off.js12
-rw-r--r--icons-react/icons-js/wash.js12
34 files changed, 408 insertions, 0 deletions
diff --git a/icons-react/icons-js/bleach-chlorine.js b/icons-react/icons-js/bleach-chlorine.js
new file mode 100644
index 00000000..655c9803
--- /dev/null
+++ b/icons-react/icons-js/bleach-chlorine.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBleachChlorine({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-bleach-chlorine" 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 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75" /><path d="M11 12h-1a2 2 0 1 0 0 4h1" /><path d="M14 12v4h2" /></svg>;
+}
+
+export default IconBleachChlorine; \ No newline at end of file
diff --git a/icons-react/icons-js/bleach-no-chlorine.js b/icons-react/icons-js/bleach-no-chlorine.js
new file mode 100644
index 00000000..03790402
--- /dev/null
+++ b/icons-react/icons-js/bleach-no-chlorine.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBleachNoChlorine({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-bleach-no-chlorine" 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 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75" /><path d="M6.576 18.999l7.907 -13.733" /><path d="M11.719 19.014l5.346 -9.284" /></svg>;
+}
+
+export default IconBleachNoChlorine; \ No newline at end of file
diff --git a/icons-react/icons-js/bleach-off.js b/icons-react/icons-js/bleach-off.js
new file mode 100644
index 00000000..58355243
--- /dev/null
+++ b/icons-react/icons-js/bleach-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBleachOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-bleach-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="M5 19h14m1.986 -1.977a2.001 2.001 0 0 0 -.146 -.773l-7.1 -12.25a2 2 0 0 0 -3.5 0l-.815 1.405m-1.488 2.568l-4.797 8.277a2 2 0 0 0 1.75 2.75" /><path d="M3 3l18 18" /></svg>;
+}
+
+export default IconBleachOff; \ No newline at end of file
diff --git a/icons-react/icons-js/bleach.js b/icons-react/icons-js/bleach.js
new file mode 100644
index 00000000..0d934bc9
--- /dev/null
+++ b/icons-react/icons-js/bleach.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBleach({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-bleach" 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 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75" /></svg>;
+}
+
+export default IconBleach; \ No newline at end of file
diff --git a/icons-react/icons-js/ironing-1.js b/icons-react/icons-js/ironing-1.js
new file mode 100644
index 00000000..419535dd
--- /dev/null
+++ b/icons-react/icons-js/ironing-1.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconIroning1({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ironing-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" /><path d="M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8" /><path d="M12 15h.01" /></svg>;
+}
+
+export default IconIroning1; \ No newline at end of file
diff --git a/icons-react/icons-js/ironing-2.js b/icons-react/icons-js/ironing-2.js
new file mode 100644
index 00000000..b05bf2ef
--- /dev/null
+++ b/icons-react/icons-js/ironing-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconIroning2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ironing-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="M10 15h.01" /><path d="M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8" /><path d="M14 15h.01" /></svg>;
+}
+
+export default IconIroning2; \ No newline at end of file
diff --git a/icons-react/icons-js/ironing-3.js b/icons-react/icons-js/ironing-3.js
new file mode 100644
index 00000000..454396b6
--- /dev/null
+++ b/icons-react/icons-js/ironing-3.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconIroning3({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ironing-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="M12 15h.01" /><path d="M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8" /><path d="M9 15h.01" /><path d="M15 15h.01" /></svg>;
+}
+
+export default IconIroning3; \ No newline at end of file
diff --git a/icons-react/icons-js/ironing-off.js b/icons-react/icons-js/ironing-off.js
new file mode 100644
index 00000000..16dcbc4d
--- /dev/null
+++ b/icons-react/icons-js/ironing-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconIroningOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ironing-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="M10 6h6.459a3 3 0 0 1 2.959 2.507l.577 3.464l.804 4.821l.007 .044m-2.806 1.164h-15a7 7 0 0 1 7 -7h1m4 0h4.8" /><path d="M3 3l18 18" /></svg>;
+}
+
+export default IconIroningOff; \ No newline at end of file
diff --git a/icons-react/icons-js/ironing-steam-off.js b/icons-react/icons-js/ironing-steam-off.js
new file mode 100644
index 00000000..f511313f
--- /dev/null
+++ b/icons-react/icons-js/ironing-steam-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconIroningSteamOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ironing-steam-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="M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.821 1.15" /><path d="M16 16h-13a7.001 7.001 0 0 1 6.056 -6.937" /><path d="M13 9h6.8" /><path d="M12 19v2" /><path d="M8 19l-1 2" /><path d="M16 19l1 2" /><path d="M3 3l18 18" /></svg>;
+}
+
+export default IconIroningSteamOff; \ No newline at end of file
diff --git a/icons-react/icons-js/ironing-steam.js b/icons-react/icons-js/ironing-steam.js
new file mode 100644
index 00000000..6ea3a856
--- /dev/null
+++ b/icons-react/icons-js/ironing-steam.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconIroningSteam({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ironing-steam" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12 19v2" /><path d="M9 4h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8" /><path d="M8 19l-1 2" /><path d="M16 19l1 2" /></svg>;
+}
+
+export default IconIroningSteam; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-dry-1.js b/icons-react/icons-js/wash-dry-1.js
new file mode 100644
index 00000000..2194f736
--- /dev/null
+++ b/icons-react/icons-js/wash-dry-1.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashDry1({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-dry-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" /><rect x={3} y={3} width={18} height={18} rx={3} /><circle cx={12} cy={12} r={6} /><path d="M12 12h.01" /></svg>;
+}
+
+export default IconWashDry1; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-dry-2.js b/icons-react/icons-js/wash-dry-2.js
new file mode 100644
index 00000000..005d2914
--- /dev/null
+++ b/icons-react/icons-js/wash-dry-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashDry2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-dry-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={3} y={3} width={18} height={18} rx={3} /><circle cx={12} cy={12} r={6} /><path d="M10 12h.01" /><path d="M14 12h.01" /></svg>;
+}
+
+export default IconWashDry2; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-dry-3.js b/icons-react/icons-js/wash-dry-3.js
new file mode 100644
index 00000000..d9c2f3bc
--- /dev/null
+++ b/icons-react/icons-js/wash-dry-3.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashDry3({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-dry-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" /><rect x={3} y={3} width={18} height={18} rx={3} /><circle cx={12} cy={12} r={6} /><path d="M12 12h.01" /><path d="M9 12h.01" /><path d="M15 12h.01" /></svg>;
+}
+
+export default IconWashDry3; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-dry-a.js b/icons-react/icons-js/wash-dry-a.js
new file mode 100644
index 00000000..f783a4b3
--- /dev/null
+++ b/icons-react/icons-js/wash-dry-a.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashDryA({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-dry-a" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={9} /><path d="M9 16v-4.8c0 -1.657 1.343 -3.2 3 -3.2s3 1.543 3 3.2v4.8" /><path d="M15 13h-6" /></svg>;
+}
+
+export default IconWashDryA; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-dry-dip.js b/icons-react/icons-js/wash-dry-dip.js
new file mode 100644
index 00000000..445fbe0f
--- /dev/null
+++ b/icons-react/icons-js/wash-dry-dip.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashDryDip({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-dry-dip" 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={18} height={18} rx={3} /><path d="M12 7v10" /><path d="M16 7v10" /><path d="M8 7v10" /></svg>;
+}
+
+export default IconWashDryDip; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-dry-f.js b/icons-react/icons-js/wash-dry-f.js
new file mode 100644
index 00000000..33ec6b21
--- /dev/null
+++ b/icons-react/icons-js/wash-dry-f.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashDryF({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-dry-f" 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="M10 16v-8h4" /><path d="M13 12h-3" /></svg>;
+}
+
+export default IconWashDryF; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-dry-hang.js b/icons-react/icons-js/wash-dry-hang.js
new file mode 100644
index 00000000..830b1fab
--- /dev/null
+++ b/icons-react/icons-js/wash-dry-hang.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashDryHang({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-dry-hang" 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={18} height={18} rx={3} /><path d="M4 4.01c5.333 5.323 10.667 5.32 16 -.01" /></svg>;
+}
+
+export default IconWashDryHang; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-dry-off.js b/icons-react/icons-js/wash-dry-off.js
new file mode 100644
index 00000000..5e8d6243
--- /dev/null
+++ b/icons-react/icons-js/wash-dry-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashDryOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-dry-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.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11" /><path d="M3 3l18 18" /></svg>;
+}
+
+export default IconWashDryOff; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-dry-p.js b/icons-react/icons-js/wash-dry-p.js
new file mode 100644
index 00000000..60ce1c88
--- /dev/null
+++ b/icons-react/icons-js/wash-dry-p.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashDryP({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-dry-p" 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="M10 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5" /></svg>;
+}
+
+export default IconWashDryP; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-dry-shade.js b/icons-react/icons-js/wash-dry-shade.js
new file mode 100644
index 00000000..376037c1
--- /dev/null
+++ b/icons-react/icons-js/wash-dry-shade.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashDryShade({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-dry-shade" 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={18} height={18} rx={3} /><path d="M3 11l8 -8" /><path d="M3 17l14 -14" /></svg>;
+}
+
+export default IconWashDryShade; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-dry.js b/icons-react/icons-js/wash-dry.js
new file mode 100644
index 00000000..662445e1
--- /dev/null
+++ b/icons-react/icons-js/wash-dry.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashDry({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-dry" 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={18} height={18} rx={3} /></svg>;
+}
+
+export default IconWashDry; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-dryclean.js b/icons-react/icons-js/wash-dryclean.js
new file mode 100644
index 00000000..95b2ee23
--- /dev/null
+++ b/icons-react/icons-js/wash-dryclean.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashDryclean({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-dryclean" 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} /></svg>;
+}
+
+export default IconWashDryclean; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-gentle.js b/icons-react/icons-js/wash-gentle.js
new file mode 100644
index 00000000..873a3f71
--- /dev/null
+++ b/icons-react/icons-js/wash-gentle.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashGentle({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-gentle" 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.486 5.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 -.002 .339 -.014 .503 -.034" /><path d="M3 3l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329" /><path d="M5 18h14" /><path d="M5 21h14" /></svg>;
+}
+
+export default IconWashGentle; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-off.js b/icons-react/icons-js/wash-off.js
new file mode 100644
index 00000000..1c808847
--- /dev/null
+++ b/icons-react/icons-js/wash-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-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="M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612c.208 0 .41 -.032 .6 -.092m1.521 -2.472l1.573 -9.436" /><path d="M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5m4.92 .919c.428 -.083 .805 -.227 1.08 -.418c.461 -.322 1.21 -.508 2 -.5c.79 -.008 1.539 .178 2 .5c.461 .32 1.21 .508 2 .5c.17 -.003 .339 -.015 .503 -.035" /><path d="M3 3l18 18" /></svg>;
+}
+
+export default IconWashOff; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-press.js b/icons-react/icons-js/wash-press.js
new file mode 100644
index 00000000..1b6e61d3
--- /dev/null
+++ b/icons-react/icons-js/wash-press.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashPress({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-press" 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.486 7.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 -.002 .339 -.014 .503 -.034" /><path d="M3 5l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329" /><path d="M5 20h14" /></svg>;
+}
+
+export default IconWashPress; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-temperature-1.js b/icons-react/icons-js/wash-temperature-1.js
new file mode 100644
index 00000000..bd49dffa
--- /dev/null
+++ b/icons-react/icons-js/wash-temperature-1.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashTemperature1({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-temperature-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" /><path d="M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329" /><path d="M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 -.002 .339 -.014 .503 -.034" /><path d="M12 13h.01" /></svg>;
+}
+
+export default IconWashTemperature1; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-temperature-2.js b/icons-react/icons-js/wash-temperature-2.js
new file mode 100644
index 00000000..268c94dd
--- /dev/null
+++ b/icons-react/icons-js/wash-temperature-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashTemperature2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-temperature-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.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 -.002 .339 -.014 .503 -.034" /><path d="M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329" /><path d="M14 13h.01" /><path d="M10 13h.01" /></svg>;
+}
+
+export default IconWashTemperature2; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-temperature-3.js b/icons-react/icons-js/wash-temperature-3.js
new file mode 100644
index 00000000..2952eac2
--- /dev/null
+++ b/icons-react/icons-js/wash-temperature-3.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashTemperature3({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-temperature-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="M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 -.002 .339 -.014 .503 -.034" /><path d="M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329" /><path d="M12 13h.01" /><path d="M15 13h.01" /><path d="M9 13h.01" /></svg>;
+}
+
+export default IconWashTemperature3; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-temperature-4.js b/icons-react/icons-js/wash-temperature-4.js
new file mode 100644
index 00000000..ceba0c89
--- /dev/null
+++ b/icons-react/icons-js/wash-temperature-4.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashTemperature4({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-temperature-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" /><path d="M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 -.002 .339 -.014 .503 -.034" /><path d="M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329" /><path d="M10 15h.01" /><path d="M14 15h.01" /><path d="M14 12h.01" /><path d="M10 12h.01" /></svg>;
+}
+
+export default IconWashTemperature4; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-temperature-5.js b/icons-react/icons-js/wash-temperature-5.js
new file mode 100644
index 00000000..25167687
--- /dev/null
+++ b/icons-react/icons-js/wash-temperature-5.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashTemperature5({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-temperature-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" /><path d="M10 15h.01" /><path d="M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329" /><path d="M14 15h.01" /><path d="M15 12h.01" /><path d="M12 12h.01" /><path d="M9 12h.01" /><path d="M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 -.002 .339 -.014 .503 -.034" /></svg>;
+}
+
+export default IconWashTemperature5; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-temperature-6.js b/icons-react/icons-js/wash-temperature-6.js
new file mode 100644
index 00000000..2cab522f
--- /dev/null
+++ b/icons-react/icons-js/wash-temperature-6.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashTemperature6({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-temperature-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" /><path d="M9 15h.01" /><path d="M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329" /><path d="M12 15h.01" /><path d="M15 15h.01" /><path d="M15 12h.01" /><path d="M12 12h.01" /><path d="M9 12h.01" /><path d="M3.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 -.002 .339 -.014 .503 -.034" /></svg>;
+}
+
+export default IconWashTemperature6; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-tumble-dry.js b/icons-react/icons-js/wash-tumble-dry.js
new file mode 100644
index 00000000..755e60e4
--- /dev/null
+++ b/icons-react/icons-js/wash-tumble-dry.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashTumbleDry({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-tumble-dry" 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={18} height={18} rx={3} /><circle cx={12} cy={12} r={6} /></svg>;
+}
+
+export default IconWashTumbleDry; \ No newline at end of file
diff --git a/icons-react/icons-js/wash-tumble-off.js b/icons-react/icons-js/wash-tumble-off.js
new file mode 100644
index 00000000..a0566c08
--- /dev/null
+++ b/icons-react/icons-js/wash-tumble-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWashTumbleOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash-tumble-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.116 20.127a2.99 2.99 0 0 1 -2.116 .873h-12a3 3 0 0 1 -3 -3v-12c0 -.827 .335 -1.576 .877 -2.12m3.123 -.88h11a3 3 0 0 1 3 3v11" /><path d="M17.744 13.74a6 6 0 0 0 -7.486 -7.482m-2.499 1.497a6 6 0 1 0 8.48 8.49" /><path d="M3 3l18 18" /></svg>;
+}
+
+export default IconWashTumbleOff; \ No newline at end of file
diff --git a/icons-react/icons-js/wash.js b/icons-react/icons-js/wash.js
new file mode 100644
index 00000000..5b486289
--- /dev/null
+++ b/icons-react/icons-js/wash.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWash({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wash" 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.486 8.965c.168 .02 .34 .033 .514 .035c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.79 .009 1.539 -.178 2 -.5c.461 -.32 1.21 -.507 2 -.5c.79 -.007 1.539 .18 2 .5c.461 .322 1.21 .509 2 .5c.17 -.002 .339 -.014 .503 -.034" /><path d="M3 6l1.721 10.329a2 2 0 0 0 1.973 1.671h10.612a2 2 0 0 0 1.973 -1.671l1.721 -10.329" /></svg>;
+}
+
+export default IconWash; \ No newline at end of file