aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2022-03-23 19:21:14 +0100
committercodecalm <codecalm@gmail.com>2022-03-23 19:21:14 +0100
commite73228c7f9356a9b8783f0b883c5a1c0c316adbc (patch)
treed7b21d1caf0b2de998fa97ef01683364a0128ded /icons-react/icons-js
parentbuild fixes (diff)
downloadtabler-icons-e73228c7f9356a9b8783f0b883c5a1c0c316adbc.tar.xz
Release 1.58.0v1.58.0
Diffstat (limited to 'icons-react/icons-js')
-rw-r--r--icons-react/icons-js/abacus.js12
-rw-r--r--icons-react/icons-js/baby-carriage.js12
-rw-r--r--icons-react/icons-js/bell-school.js12
-rw-r--r--icons-react/icons-js/cell.js12
-rw-r--r--icons-react/icons-js/device-heart-monitor.js12
-rw-r--r--icons-react/icons-js/device-laptop-off.js12
-rw-r--r--icons-react/icons-js/device-mobile-off.js12
-rw-r--r--icons-react/icons-js/device-tablet-off.js12
-rw-r--r--icons-react/icons-js/device-tv-off.js12
-rw-r--r--icons-react/icons-js/device-watch-off.js12
-rw-r--r--icons-react/icons-js/devices-off.js12
-rw-r--r--icons-react/icons-js/dialpad.js12
-rw-r--r--icons-react/icons-js/directions.js2
-rw-r--r--icons-react/icons-js/fidget-spinner.js12
-rw-r--r--icons-react/icons-js/mail-fast.js12
-rw-r--r--icons-react/icons-js/pennant-2.js12
-rw-r--r--icons-react/icons-js/sign-left.js12
-rw-r--r--icons-react/icons-js/sign-right.js12
-rw-r--r--icons-react/icons-js/windsock.js12
19 files changed, 217 insertions, 1 deletions
diff --git a/icons-react/icons-js/abacus.js b/icons-react/icons-js/abacus.js
new file mode 100644
index 00000000..38fc6735
--- /dev/null
+++ b/icons-react/icons-js/abacus.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconAbacus({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-abacus" 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 3v18" /><path d="M19 21v-18" /><path d="M5 7h14" /><path d="M5 15h14" /><path d="M8 13v4" /><path d="M11 13v4" /><path d="M16 13v4" /><path d="M14 5v4" /><path d="M11 5v4" /><path d="M8 5v4" /><path d="M3 21h18" /></svg>;
+}
+
+export default IconAbacus; \ No newline at end of file
diff --git a/icons-react/icons-js/baby-carriage.js b/icons-react/icons-js/baby-carriage.js
new file mode 100644
index 00000000..7fb61700
--- /dev/null
+++ b/icons-react/icons-js/baby-carriage.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBabyCarriage({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-baby-carriage" 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={19} r={2} /><circle cx={18} cy={19} r={2} /><path d="M2 5h2.5l1.632 4.897a6 6 0 0 0 5.693 4.103h2.675a5.5 5.5 0 0 0 0 -11h-.5v6" /><path d="M6 9h14" /><path d="M9 17l1 -3" /><path d="M16 14l1 3" /></svg>;
+}
+
+export default IconBabyCarriage; \ No newline at end of file
diff --git a/icons-react/icons-js/bell-school.js b/icons-react/icons-js/bell-school.js
new file mode 100644
index 00000000..0a53c393
--- /dev/null
+++ b/icons-react/icons-js/bell-school.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBellSchool({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-bell-school" 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={10} cy={10} r={6} /><path d="M13.5 15h.5a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-1a2 2 0 0 1 2 -2h.5" /><path d="M16 17a5.698 5.698 0 0 0 4.467 -7.932l-.467 -1.068" /><path d="M10 10v.01" /><circle cx={20} cy={8} r={1} /></svg>;
+}
+
+export default IconBellSchool; \ No newline at end of file
diff --git a/icons-react/icons-js/cell.js b/icons-react/icons-js/cell.js
new file mode 100644
index 00000000..cc020d5a
--- /dev/null
+++ b/icons-react/icons-js/cell.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCell({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cell" 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 4l-4 2v5l4 2l4 -2v-5z" /><path d="M12 11l4 2l4 -2v-5l-4 -2l-4 2" /><path d="M8 13v5l4 2l4 -2v-5" /></svg>;
+}
+
+export default IconCell; \ No newline at end of file
diff --git a/icons-react/icons-js/device-heart-monitor.js b/icons-react/icons-js/device-heart-monitor.js
new file mode 100644
index 00000000..1932a366
--- /dev/null
+++ b/icons-react/icons-js/device-heart-monitor.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconDeviceHeartMonitor({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-device-heart-monitor" 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={2} /><path d="M4 9h6l1 -2l2 4l1 -2h6" /><path d="M4 14h16" /><path d="M14 17v.01" /><path d="M17 17v.01" /></svg>;
+}
+
+export default IconDeviceHeartMonitor; \ No newline at end of file
diff --git a/icons-react/icons-js/device-laptop-off.js b/icons-react/icons-js/device-laptop-off.js
new file mode 100644
index 00000000..1781df4c
--- /dev/null
+++ b/icons-react/icons-js/device-laptop-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconDeviceLaptopOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-device-laptop-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 19h16" /><path d="M10 6h8a1 1 0 0 1 1 1v8m-3 1h-10a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1" /><path d="M3 3l18 18" /></svg>;
+}
+
+export default IconDeviceLaptopOff; \ No newline at end of file
diff --git a/icons-react/icons-js/device-mobile-off.js b/icons-react/icons-js/device-mobile-off.js
new file mode 100644
index 00000000..191ac02b
--- /dev/null
+++ b/icons-react/icons-js/device-mobile-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconDeviceMobileOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-device-mobile-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="M7.174 3.178c.252 -.114 .531 -.178 .826 -.178h8a2 2 0 0 1 2 2v9m0 4v1a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-13" /><path d="M11 4h2" /><path d="M12 17v.01" /><path d="M3 3l18 18" /></svg>;
+}
+
+export default IconDeviceMobileOff; \ No newline at end of file
diff --git a/icons-react/icons-js/device-tablet-off.js b/icons-react/icons-js/device-tablet-off.js
new file mode 100644
index 00000000..02e6dfe1
--- /dev/null
+++ b/icons-react/icons-js/device-tablet-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconDeviceTabletOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-device-tablet-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="M7 3h11a1 1 0 0 1 1 1v11m0 4v1a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-15" /><circle cx={12} cy={17} r={1} /><path d="M3 3l18 18" /></svg>;
+}
+
+export default IconDeviceTabletOff; \ No newline at end of file
diff --git a/icons-react/icons-js/device-tv-off.js b/icons-react/icons-js/device-tv-off.js
new file mode 100644
index 00000000..59cb0468
--- /dev/null
+++ b/icons-react/icons-js/device-tv-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconDeviceTvOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-device-tv-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="M11 7h8a2 2 0 0 1 2 2v8m-1.178 2.824c-.25 .113 -.529 .176 -.822 .176h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2h2" /><path d="M16 3l-4 4l-4 -4" /><path d="M3 3l18 18" /></svg>;
+}
+
+export default IconDeviceTvOff; \ No newline at end of file
diff --git a/icons-react/icons-js/device-watch-off.js b/icons-react/icons-js/device-watch-off.js
new file mode 100644
index 00000000..5604f5df
--- /dev/null
+++ b/icons-react/icons-js/device-watch-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconDeviceWatchOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-device-watch-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 6h5a3 3 0 0 1 3 3v5m-.882 3.125a2.99 2.99 0 0 1 -2.118 .875h-6a3 3 0 0 1 -3 -3v-6c0 -.828 .336 -1.578 .878 -2.121" /><path d="M9 18v3h6v-3" /><path d="M9 5v-2h6v3" /><path d="M3 3l18 18" /></svg>;
+}
+
+export default IconDeviceWatchOff; \ No newline at end of file
diff --git a/icons-react/icons-js/devices-off.js b/icons-react/icons-js/devices-off.js
new file mode 100644
index 00000000..dec4e94e
--- /dev/null
+++ b/icons-react/icons-js/devices-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconDevicesOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-devices-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="M13 9a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v8m-1 3h-6a1 1 0 0 1 -1 -1v-6" /><path d="M18 8v-3a1 1 0 0 0 -1 -1h-9m-4 0a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h9" /><path d="M16 9h2" /><path d="M3 3l18 18" /></svg>;
+}
+
+export default IconDevicesOff; \ No newline at end of file
diff --git a/icons-react/icons-js/dialpad.js b/icons-react/icons-js/dialpad.js
new file mode 100644
index 00000000..41868167
--- /dev/null
+++ b/icons-react/icons-js/dialpad.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconDialpad({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-dialpad" 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 3h4v4h-4z" /><path d="M17 3h4v4h-4z" /><path d="M10 3h4v4h-4z" /><path d="M3 10h4v4h-4z" /><path d="M17 10h4v4h-4z" /><path d="M10 10h4v4h-4z" /><path d="M10 17h4v4h-4z" /></svg>;
+}
+
+export default IconDialpad; \ No newline at end of file
diff --git a/icons-react/icons-js/directions.js b/icons-react/icons-js/directions.js
index 10480d05..31ff16d7 100644
--- a/icons-react/icons-js/directions.js
+++ b/icons-react/icons-js/directions.js
@@ -6,7 +6,7 @@ function IconDirections({
stroke = 2,
...props
}) {
- return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-directions" 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 5h10l2 2l-2 2h-10a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1" /><path d="M13 13h-7l-2 2l2 2h7a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1" /><line x1={12} y1={22} x2={12} y2={17} /><line x1={12} y1={13} x2={12} y2={9} /><line x1={12} y1={5} x2={12} y2={3} /></svg>;
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-directions" 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-4" /><path d="M12 13v-4" /><path d="M12 5v-2" /><path d="M10 21h4" /><path d="M8 5v4h11l2 -2l-2 -2z" /><path d="M14 13v4h-8l-2 -2l2 -2z" /></svg>;
}
export default IconDirections; \ No newline at end of file
diff --git a/icons-react/icons-js/fidget-spinner.js b/icons-react/icons-js/fidget-spinner.js
new file mode 100644
index 00000000..5db2040c
--- /dev/null
+++ b/icons-react/icons-js/fidget-spinner.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFidgetSpinner({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-fidget-spinner" 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 17a3 3 0 1 1 -1.543 -2.623l2.087 -3.754a3 3 0 0 1 1.456 -5.623a3 3 0 0 1 1.457 5.623l2.087 3.754a3 3 0 1 1 -1.538 2.8l-.006 -.177h-4z" /><path d="M17 17v.01" /><path d="M7 17v.01" /><path d="M12 8v.01" /></svg>;
+}
+
+export default IconFidgetSpinner; \ No newline at end of file
diff --git a/icons-react/icons-js/mail-fast.js b/icons-react/icons-js/mail-fast.js
new file mode 100644
index 00000000..055d2d27
--- /dev/null
+++ b/icons-react/icons-js/mail-fast.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconMailFast({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mail-fast" 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 7h3" /><path d="M3 11h2" /><path d="M9.02 8.801l-.6 6a2 2 0 0 0 1.99 2.199h7.98a2 2 0 0 0 1.99 -1.801l.6 -6a2 2 0 0 0 -1.99 -2.199h-7.98a2 2 0 0 0 -1.99 1.801z" /><path d="M9.8 7.5l2.982 3.28a3 3 0 0 0 4.238 .202l3.28 -2.982" /></svg>;
+}
+
+export default IconMailFast; \ No newline at end of file
diff --git a/icons-react/icons-js/pennant-2.js b/icons-react/icons-js/pennant-2.js
new file mode 100644
index 00000000..686cc634
--- /dev/null
+++ b/icons-react/icons-js/pennant-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconPennant2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-pennant-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="M16 21h-4" /><path d="M14 21v-18" /><path d="M14 4l-9 4l9 4" /></svg>;
+}
+
+export default IconPennant2; \ No newline at end of file
diff --git a/icons-react/icons-js/sign-left.js b/icons-react/icons-js/sign-left.js
new file mode 100644
index 00000000..94793161
--- /dev/null
+++ b/icons-react/icons-js/sign-left.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSignLeft({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-sign-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="M16 21h-4" /><path d="M14 21v-10" /><path d="M14 6v-3" /><path d="M18 6h-10l-2 2.5l2 2.5h10z" /></svg>;
+}
+
+export default IconSignLeft; \ No newline at end of file
diff --git a/icons-react/icons-js/sign-right.js b/icons-react/icons-js/sign-right.js
new file mode 100644
index 00000000..d389abe9
--- /dev/null
+++ b/icons-react/icons-js/sign-right.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSignRight({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-sign-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="M8 21h4" /><path d="M10 21v-10" /><path d="M10 6v-3" /><path d="M6 6h10l2 2.5l-2 2.5h-10z" /></svg>;
+}
+
+export default IconSignRight; \ No newline at end of file
diff --git a/icons-react/icons-js/windsock.js b/icons-react/icons-js/windsock.js
new file mode 100644
index 00000000..f2b4d9d9
--- /dev/null
+++ b/icons-react/icons-js/windsock.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconWindsock({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-windsock" 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 3v18" /><path d="M6 11l12 -1v-4l-12 -1" /><path d="M10 5.5v5" /><path d="M14 6v4" /><path d="M4 21h4" /></svg>;
+}
+
+export default IconWindsock; \ No newline at end of file