aboutsummaryrefslogtreecommitdiff
path: root/icons-react
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2022-01-16 22:08:51 +0100
committercodecalm <codecalm@gmail.com>2022-01-16 22:08:51 +0100
commitad702b5366828b549cb422d31a431f06bbd1b09d (patch)
tree67093c11e6dab990e74c0e6bc21d50c633f0990d /icons-react
parent22 new icons: `app-window`, `armchair-2`, `arrow-big-down-line`, `arrow-big-d... (diff)
downloadtabler-icons-ad702b5366828b549cb422d31a431f06bbd1b09d.tar.xz
Release 1.52.0v1.52.0
Diffstat (limited to 'icons-react')
-rw-r--r--icons-react/icons-js/app-window.js12
-rw-r--r--icons-react/icons-js/armchair-2.js12
-rw-r--r--icons-react/icons-js/arrow-big-down-line.js12
-rw-r--r--icons-react/icons-js/arrow-big-down-lines.js12
-rw-r--r--icons-react/icons-js/arrow-big-left-line.js12
-rw-r--r--icons-react/icons-js/arrow-big-left-lines.js12
-rw-r--r--icons-react/icons-js/arrow-big-right-line.js12
-rw-r--r--icons-react/icons-js/arrow-big-right-lines.js12
-rw-r--r--icons-react/icons-js/arrow-big-up-line.js12
-rw-r--r--icons-react/icons-js/arrow-big-up-lines.js12
-rw-r--r--icons-react/icons-js/barbell.js12
-rw-r--r--icons-react/icons-js/bell-z.js12
-rw-r--r--icons-react/icons-js/books.js12
-rw-r--r--icons-react/icons-js/circle-half-2.js12
-rw-r--r--icons-react/icons-js/clubs.js12
-rw-r--r--icons-react/icons-js/diamonds.js12
-rw-r--r--icons-react/icons-js/flower.js12
-rw-r--r--icons-react/icons-js/id-badge.js12
-rw-r--r--icons-react/icons-js/layers-intersect-2.js12
-rw-r--r--icons-react/icons-js/paw.js12
-rw-r--r--icons-react/icons-js/spade.js12
-rw-r--r--icons-react/icons-js/square-half.js12
-rw-r--r--icons-react/index.d.ts22
-rw-r--r--icons-react/index.js22
24 files changed, 308 insertions, 0 deletions
diff --git a/icons-react/icons-js/app-window.js b/icons-react/icons-js/app-window.js
new file mode 100644
index 00000000..15cc6abb
--- /dev/null
+++ b/icons-react/icons-js/app-window.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconAppWindow({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-app-window" 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={5} width={18} height={14} rx={2} /><path d="M6 8h.01" /><path d="M9 8h.01" /></svg>;
+}
+
+export default IconAppWindow; \ No newline at end of file
diff --git a/icons-react/icons-js/armchair-2.js b/icons-react/icons-js/armchair-2.js
new file mode 100644
index 00000000..d1a42bc5
--- /dev/null
+++ b/icons-react/icons-js/armchair-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArmchair2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-armchair-2" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M5 10v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4" /><path d="M16 15v-2a3 3 0 1 1 3 3v3h-14v-3a3 3 0 1 1 3 -3v2" /><path d="M8 12h8" /><path d="M7 19v2" /><path d="M17 19v2" /></svg>;
+}
+
+export default IconArmchair2; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-big-down-line.js b/icons-react/icons-js/arrow-big-down-line.js
new file mode 100644
index 00000000..a8c95a0f
--- /dev/null
+++ b/icons-react/icons-js/arrow-big-down-line.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowBigDownLine({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-big-down-line" 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 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-6h6v6z" /><path d="M15 3h-6" /></svg>;
+}
+
+export default IconArrowBigDownLine; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-big-down-lines.js b/icons-react/icons-js/arrow-big-down-lines.js
new file mode 100644
index 00000000..5c629fb0
--- /dev/null
+++ b/icons-react/icons-js/arrow-big-down-lines.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowBigDownLines({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-big-down-lines" 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 12h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-3h6v3z" /><path d="M15 3h-6" /><path d="M15 6h-6" /></svg>;
+}
+
+export default IconArrowBigDownLines; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-big-left-line.js b/icons-react/icons-js/arrow-big-left-line.js
new file mode 100644
index 00000000..fc760706
--- /dev/null
+++ b/icons-react/icons-js/arrow-big-left-line.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowBigLeftLine({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-big-left-line" 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 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h6v6h-6z" /><path d="M21 15v-6" /></svg>;
+}
+
+export default IconArrowBigLeftLine; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-big-left-lines.js b/icons-react/icons-js/arrow-big-left-lines.js
new file mode 100644
index 00000000..5149467c
--- /dev/null
+++ b/icons-react/icons-js/arrow-big-left-lines.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowBigLeftLines({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-big-left-lines" 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 15v3.586a1 1 0 0 1 -1.707 .707l-6.586 -6.586a1 1 0 0 1 0 -1.414l6.586 -6.586a1 1 0 0 1 1.707 .707v3.586h3v6h-3z" /><path d="M21 15v-6" /><path d="M18 15v-6" /></svg>;
+}
+
+export default IconArrowBigLeftLines; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-big-right-line.js b/icons-react/icons-js/arrow-big-right-line.js
new file mode 100644
index 00000000..fc9b3b7b
--- /dev/null
+++ b/icons-react/icons-js/arrow-big-right-line.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowBigRightLine({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-big-right-line" 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 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-6v-6h6z" /><path d="M3 9v6" /></svg>;
+}
+
+export default IconArrowBigRightLine; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-big-right-lines.js b/icons-react/icons-js/arrow-big-right-lines.js
new file mode 100644
index 00000000..b2587f53
--- /dev/null
+++ b/icons-react/icons-js/arrow-big-right-lines.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowBigRightLines({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-big-right-lines" 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 9v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-3v-6h3z" /><path d="M3 9v6" /><path d="M6 9v6" /></svg>;
+}
+
+export default IconArrowBigRightLines; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-big-up-line.js b/icons-react/icons-js/arrow-big-up-line.js
new file mode 100644
index 00000000..9c4d681f
--- /dev/null
+++ b/icons-react/icons-js/arrow-big-up-line.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowBigUpLine({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-big-up-line" 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 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v6h-6v-6z" /><path d="M9 21h6" /></svg>;
+}
+
+export default IconArrowBigUpLine; \ No newline at end of file
diff --git a/icons-react/icons-js/arrow-big-up-lines.js b/icons-react/icons-js/arrow-big-up-lines.js
new file mode 100644
index 00000000..16b1d273
--- /dev/null
+++ b/icons-react/icons-js/arrow-big-up-lines.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowBigUpLines({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-big-up-lines" 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 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3z" /><path d="M9 21h6" /><path d="M9 18h6" /></svg>;
+}
+
+export default IconArrowBigUpLines; \ No newline at end of file
diff --git a/icons-react/icons-js/barbell.js b/icons-react/icons-js/barbell.js
new file mode 100644
index 00000000..53ae0a46
--- /dev/null
+++ b/icons-react/icons-js/barbell.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBarbell({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-barbell" 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="M2 12h1" /><path d="M6 8h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2" /><path d="M6 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z" /><path d="M9 12h6" /><path d="M15 7v10a1 1 0 0 0 1 1h1a1 1 0 0 0 1 -1v-10a1 1 0 0 0 -1 -1h-1a1 1 0 0 0 -1 1z" /><path d="M18 8h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2" /><path d="M22 12h-1" /></svg>;
+}
+
+export default IconBarbell; \ No newline at end of file
diff --git a/icons-react/icons-js/bell-z.js b/icons-react/icons-js/bell-z.js
new file mode 100644
index 00000000..8f3f5594
--- /dev/null
+++ b/icons-react/icons-js/bell-z.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBellZ({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-bell-z" 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 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6" /><path d="M9 17v1a3 3 0 0 0 6 0v-1" /><path d="M10 9h4l-4 4h4" /></svg>;
+}
+
+export default IconBellZ; \ No newline at end of file
diff --git a/icons-react/icons-js/books.js b/icons-react/icons-js/books.js
new file mode 100644
index 00000000..9a8a64ef
--- /dev/null
+++ b/icons-react/icons-js/books.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBooks({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-books" 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={5} y={4} width={4} height={16} rx={1} /><rect x={9} y={4} width={4} height={16} rx={1} /><path d="M5 8h4" /><path d="M9 16h4" /><g transform="rotate(-13 27.054 -55.827)"><rect width={4} height={16} rx={1} /><path d="M0 4h4" /><path d="M0 12h4" /></g></svg>;
+}
+
+export default IconBooks; \ No newline at end of file
diff --git a/icons-react/icons-js/circle-half-2.js b/icons-react/icons-js/circle-half-2.js
new file mode 100644
index 00000000..dbe2ccfc
--- /dev/null
+++ b/icons-react/icons-js/circle-half-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircleHalf2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circle-half-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 3v18" /><path d="M12 14l7 -7" /><path d="M12 19l8.5 -8.5" /><path d="M12 9l4.5 -4.5" /></svg>;
+}
+
+export default IconCircleHalf2; \ No newline at end of file
diff --git a/icons-react/icons-js/clubs.js b/icons-react/icons-js/clubs.js
new file mode 100644
index 00000000..8647b64f
--- /dev/null
+++ b/icons-react/icons-js/clubs.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconClubs({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clubs" 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 3a4 4 0 0 1 3.164 6.447a4 4 0 1 1 -1.164 6.198v1.355l1 4h-6l1 -4l.001 -1.355a4 4 0 1 1 -1.164 -6.199a4 4 0 0 1 3.163 -6.446z" /></svg>;
+}
+
+export default IconClubs; \ No newline at end of file
diff --git a/icons-react/icons-js/diamonds.js b/icons-react/icons-js/diamonds.js
new file mode 100644
index 00000000..524f4003
--- /dev/null
+++ b/icons-react/icons-js/diamonds.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconDiamonds({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-diamonds" 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.831 20.413l-5.375 -6.91c-.608 -.783 -.608 -2.223 0 -3.005l5.375 -6.911a1.457 1.457 0 0 1 2.338 0l5.375 6.91c.608 .783 .608 2.223 0 3.005l-5.375 6.911a1.457 1.457 0 0 1 -2.338 0z" /></svg>;
+}
+
+export default IconDiamonds; \ No newline at end of file
diff --git a/icons-react/icons-js/flower.js b/icons-react/icons-js/flower.js
new file mode 100644
index 00000000..398abdc2
--- /dev/null
+++ b/icons-react/icons-js/flower.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFlower({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-flower" 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={3} /><path d="M12 2a3 3 0 0 1 3 3c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1.002 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-2.664 .366l2.4 .326c.995 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.09 4.098a2.968 2.968 0 0 1 -4.07 1.098c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1.003 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-.995 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 4.07 -1.099c.348 .203 .771 .604 1.27 1.205l1.76 1.894c-1 -2.292 -1.5 -3.625 -1.5 -4a3 3 0 0 1 3 -3z" /></svg>;
+}
+
+export default IconFlower; \ No newline at end of file
diff --git a/icons-react/icons-js/id-badge.js b/icons-react/icons-js/id-badge.js
new file mode 100644
index 00000000..16f88888
--- /dev/null
+++ b/icons-react/icons-js/id-badge.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconIdBadge({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-id-badge" 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={5} y={3} width={14} height={18} rx={3} /><circle cx={12} cy={13} r={2} /><path d="M10 6h4" /><path d="M9 18h6" /></svg>;
+}
+
+export default IconIdBadge; \ No newline at end of file
diff --git a/icons-react/icons-js/layers-intersect-2.js b/icons-react/icons-js/layers-intersect-2.js
new file mode 100644
index 00000000..f36e47ee
--- /dev/null
+++ b/icons-react/icons-js/layers-intersect-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconLayersIntersect2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-layers-intersect-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={8} y={4} width={12} height={12} rx={2} /><rect x={4} y={8} width={12} height={12} rx={2} /><path d="M9 15l6 -6" /></svg>;
+}
+
+export default IconLayersIntersect2; \ No newline at end of file
diff --git a/icons-react/icons-js/paw.js b/icons-react/icons-js/paw.js
new file mode 100644
index 00000000..16d08ae4
--- /dev/null
+++ b/icons-react/icons-js/paw.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconPaw({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-paw" 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.7 13.5c-1.1 -1.996 -1.441 -2.5 -2.7 -2.5c-1.259 0 -1.736 .755 -2.836 2.747c-.942 1.703 -2.846 1.845 -3.321 3.291c-.097 .265 -.145 .677 -.143 .962c0 1.176 .787 2 1.8 2c1.259 0 3.004 -1 4.5 -1s3.241 1 4.5 1c1.013 0 1.8 -.823 1.8 -2c0 -.285 -.049 -.697 -.146 -.962c-.475 -1.451 -2.512 -1.835 -3.454 -3.538z" /><path d="M20.188 8.082a1.039 1.039 0 0 0 -.406 -.082h-.015c-.735 .012 -1.56 .75 -1.993 1.866c-.519 1.335 -.28 2.7 .538 3.052c.129 .055 .267 .082 .406 .082c.739 0 1.575 -.742 2.011 -1.866c.516 -1.335 .273 -2.7 -.54 -3.052z" /><path d="M9.474 9c.055 0 .109 -.004 .163 -.011c.944 -.128 1.533 -1.346 1.32 -2.722c-.203 -1.297 -1.047 -2.267 -1.932 -2.267c-.055 0 -.109 .004 -.163 .011c-.944 .128 -1.533 1.346 -1.32 2.722c.204 1.293 1.048 2.267 1.933 2.267z" /><path d="M16.456 6.733c.214 -1.376 -.375 -2.594 -1.32 -2.722a1.164 1.164 0 0 0 -.162 -.011c-.885 0 -1.728 .97 -1.93 2.267c-.214 1.376 .375 2.594 1.32 2.722c.054 .007 .108 .011 .162 .011c.885 0 1.73 -.974 1.93 -2.267z" /><path d="M5.69 12.918c.816 -.352 1.054 -1.719 .536 -3.052c-.436 -1.124 -1.271 -1.866 -2.009 -1.866c-.14 0 -.277 .027 -.407 .082c-.816 .352 -1.054 1.719 -.536 3.052c.436 1.124 1.271 1.866 2.009 1.866c.14 0 .277 -.027 .407 -.082z" /></svg>;
+}
+
+export default IconPaw; \ No newline at end of file
diff --git a/icons-react/icons-js/spade.js b/icons-react/icons-js/spade.js
new file mode 100644
index 00000000..e37d31fd
--- /dev/null
+++ b/icons-react/icons-js/spade.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSpade({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-spade" 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 3l4.919 4.5c.61 .587 1.177 1.177 1.703 1.771a5.527 5.527 0 0 1 .264 6.979c-1.18 1.56 -3.338 1.92 -4.886 .75v1l1 3h-6l1 -3v-1c-1.54 1.07 -3.735 .772 -4.886 -.75a5.527 5.527 0 0 1 .264 -6.979a30.883 30.883 0 0 1 1.703 -1.771a1541.72 1541.72 0 0 1 4.919 -4.5z" /></svg>;
+}
+
+export default IconSpade; \ No newline at end of file
diff --git a/icons-react/icons-js/square-half.js b/icons-react/icons-js/square-half.js
new file mode 100644
index 00000000..66c0e575
--- /dev/null
+++ b/icons-react/icons-js/square-half.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSquareHalf({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-square-half" 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 4v16" /><rect x={4} y={4} width={16} height={16} rx={2} /><path d="M12 13l7.5 -7.5" /><path d="M12 18l8 -8" /><path d="M15 20l5 -5" /><path d="M12 8l4 -4" /></svg>;
+}
+
+export default IconSquareHalf; \ No newline at end of file
diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts
index 71403f76..db0b1aef 100644
--- a/icons-react/index.d.ts
+++ b/icons-react/index.d.ts
@@ -36,9 +36,11 @@ export const IconAntennaBars3: TablerIcon;
export const IconAntennaBars4: TablerIcon;
export const IconAntennaBars5: TablerIcon;
export const IconAperture: TablerIcon;
+export const IconAppWindow: TablerIcon;
export const IconApple: TablerIcon;
export const IconApps: TablerIcon;
export const IconArchive: TablerIcon;
+export const IconArmchair2: TablerIcon;
export const IconArmchair: TablerIcon;
export const IconArrowAutofitContent: TablerIcon;
export const IconArrowAutofitDown: TablerIcon;
@@ -57,10 +59,18 @@ export const IconArrowBarToLeft: TablerIcon;
export const IconArrowBarToRight: TablerIcon;
export const IconArrowBarToUp: TablerIcon;
export const IconArrowBarUp: TablerIcon;
+export const IconArrowBigDownLine: TablerIcon;
+export const IconArrowBigDownLines: TablerIcon;
export const IconArrowBigDown: TablerIcon;
+export const IconArrowBigLeftLine: TablerIcon;
+export const IconArrowBigLeftLines: TablerIcon;
export const IconArrowBigLeft: TablerIcon;
+export const IconArrowBigRightLine: TablerIcon;
+export const IconArrowBigRightLines: TablerIcon;
export const IconArrowBigRight: TablerIcon;
export const IconArrowBigTop: TablerIcon;
+export const IconArrowBigUpLine: TablerIcon;
+export const IconArrowBigUpLines: TablerIcon;
export const IconArrowBottomBar: TablerIcon;
export const IconArrowBottomCircle: TablerIcon;
export const IconArrowBottomSquare: TablerIcon;
@@ -161,6 +171,7 @@ export const IconBallVolleyball: TablerIcon;
export const IconBallon: TablerIcon;
export const IconBan: TablerIcon;
export const IconBandage: TablerIcon;
+export const IconBarbell: TablerIcon;
export const IconBarcode: TablerIcon;
export const IconBasket: TablerIcon;
export const IconBath: TablerIcon;
@@ -183,6 +194,7 @@ export const IconBellPlus: TablerIcon;
export const IconBellRinging2: TablerIcon;
export const IconBellRinging: TablerIcon;
export const IconBellX: TablerIcon;
+export const IconBellZ: TablerIcon;
export const IconBell: TablerIcon;
export const IconBible: TablerIcon;
export const IconBike: TablerIcon;
@@ -202,6 +214,7 @@ export const IconBook: TablerIcon;
export const IconBookmarkOff: TablerIcon;
export const IconBookmark: TablerIcon;
export const IconBookmarks: TablerIcon;
+export const IconBooks: TablerIcon;
export const IconBorderAll: TablerIcon;
export const IconBorderBottom: TablerIcon;
export const IconBorderHorizontal: TablerIcon;
@@ -469,6 +482,7 @@ export const IconCircleCheck: TablerIcon;
export const IconCircleDashed: TablerIcon;
export const IconCircleDot: TablerIcon;
export const IconCircleDotted: TablerIcon;
+export const IconCircleHalf2: TablerIcon;
export const IconCircleHalfVertical: TablerIcon;
export const IconCircleHalf: TablerIcon;
export const IconCircleMinus: TablerIcon;
@@ -497,6 +511,7 @@ export const IconCloudSnow: TablerIcon;
export const IconCloudStorm: TablerIcon;
export const IconCloudUpload: TablerIcon;
export const IconCloud: TablerIcon;
+export const IconClubs: TablerIcon;
export const IconCodeMinus: TablerIcon;
export const IconCodePlus: TablerIcon;
export const IconCode: TablerIcon;
@@ -621,6 +636,7 @@ export const IconDevices2: TablerIcon;
export const IconDevicesPc: TablerIcon;
export const IconDevices: TablerIcon;
export const IconDiamond: TablerIcon;
+export const IconDiamonds: TablerIcon;
export const IconDice: TablerIcon;
export const IconDimensions: TablerIcon;
export const IconDirectionHorizontal: TablerIcon;
@@ -736,6 +752,7 @@ export const IconFloatCenter: TablerIcon;
export const IconFloatLeft: TablerIcon;
export const IconFloatNone: TablerIcon;
export const IconFloatRight: TablerIcon;
+export const IconFlower: TablerIcon;
export const IconFocus2: TablerIcon;
export const IconFocus: TablerIcon;
export const IconFoldDown: TablerIcon;
@@ -827,6 +844,7 @@ export const IconHourglass: TablerIcon;
export const IconIceCream2: TablerIcon;
export const IconIceCream: TablerIcon;
export const IconIceSkating: TablerIcon;
+export const IconIdBadge: TablerIcon;
export const IconId: TablerIcon;
export const IconInbox: TablerIcon;
export const IconIndentDecrease: TablerIcon;
@@ -850,6 +868,7 @@ export const IconLanguageKatakana: TablerIcon;
export const IconLanguage: TablerIcon;
export const IconLasso: TablerIcon;
export const IconLayersDifference: TablerIcon;
+export const IconLayersIntersect2: TablerIcon;
export const IconLayersIntersect: TablerIcon;
export const IconLayersLinked: TablerIcon;
export const IconLayersSubtract: TablerIcon;
@@ -1062,6 +1081,7 @@ export const IconPaperclip: TablerIcon;
export const IconParachute: TablerIcon;
export const IconParentheses: TablerIcon;
export const IconParking: TablerIcon;
+export const IconPaw: TablerIcon;
export const IconPeace: TablerIcon;
export const IconPencil: TablerIcon;
export const IconPennant: TablerIcon;
@@ -1261,6 +1281,7 @@ export const IconSoup: TablerIcon;
export const IconSpace: TablerIcon;
export const IconSpacingHorizontal: TablerIcon;
export const IconSpacingVertical: TablerIcon;
+export const IconSpade: TablerIcon;
export const IconSpeakerphone: TablerIcon;
export const IconSpeedboat: TablerIcon;
export const IconSportBillard: TablerIcon;
@@ -1278,6 +1299,7 @@ export const IconSquareCheck: TablerIcon;
export const IconSquareDot: TablerIcon;
export const IconSquareForbid2: TablerIcon;
export const IconSquareForbid: TablerIcon;
+export const IconSquareHalf: TablerIcon;
export const IconSquareMinus: TablerIcon;
export const IconSquareOff: TablerIcon;
export const IconSquarePlus: TablerIcon;
diff --git a/icons-react/index.js b/icons-react/index.js
index 2dda6bbc..0ad7ef41 100644
--- a/icons-react/index.js
+++ b/icons-react/index.js
@@ -30,9 +30,11 @@ export { default as IconAntennaBars3 } from './icons-js/antenna-bars-3.js';
export { default as IconAntennaBars4 } from './icons-js/antenna-bars-4.js';
export { default as IconAntennaBars5 } from './icons-js/antenna-bars-5.js';
export { default as IconAperture } from './icons-js/aperture.js';
+export { default as IconAppWindow } from './icons-js/app-window.js';
export { default as IconApple } from './icons-js/apple.js';
export { default as IconApps } from './icons-js/apps.js';
export { default as IconArchive } from './icons-js/archive.js';
+export { default as IconArmchair2 } from './icons-js/armchair-2.js';
export { default as IconArmchair } from './icons-js/armchair.js';
export { default as IconArrowAutofitContent } from './icons-js/arrow-autofit-content.js';
export { default as IconArrowAutofitDown } from './icons-js/arrow-autofit-down.js';
@@ -51,10 +53,18 @@ export { default as IconArrowBarToLeft } from './icons-js/arrow-bar-to-left.js';
export { default as IconArrowBarToRight } from './icons-js/arrow-bar-to-right.js';
export { default as IconArrowBarToUp } from './icons-js/arrow-bar-to-up.js';
export { default as IconArrowBarUp } from './icons-js/arrow-bar-up.js';
+export { default as IconArrowBigDownLine } from './icons-js/arrow-big-down-line.js';
+export { default as IconArrowBigDownLines } from './icons-js/arrow-big-down-lines.js';
export { default as IconArrowBigDown } from './icons-js/arrow-big-down.js';
+export { default as IconArrowBigLeftLine } from './icons-js/arrow-big-left-line.js';
+export { default as IconArrowBigLeftLines } from './icons-js/arrow-big-left-lines.js';
export { default as IconArrowBigLeft } from './icons-js/arrow-big-left.js';
+export { default as IconArrowBigRightLine } from './icons-js/arrow-big-right-line.js';
+export { default as IconArrowBigRightLines } from './icons-js/arrow-big-right-lines.js';
export { default as IconArrowBigRight } from './icons-js/arrow-big-right.js';
export { default as IconArrowBigTop } from './icons-js/arrow-big-top.js';
+export { default as IconArrowBigUpLine } from './icons-js/arrow-big-up-line.js';
+export { default as IconArrowBigUpLines } from './icons-js/arrow-big-up-lines.js';
export { default as IconArrowBottomBar } from './icons-js/arrow-bottom-bar.js';
export { default as IconArrowBottomCircle } from './icons-js/arrow-bottom-circle.js';
export { default as IconArrowBottomSquare } from './icons-js/arrow-bottom-square.js';
@@ -155,6 +165,7 @@ export { default as IconBallVolleyball } from './icons-js/ball-volleyball.js';
export { default as IconBallon } from './icons-js/ballon.js';
export { default as IconBan } from './icons-js/ban.js';
export { default as IconBandage } from './icons-js/bandage.js';
+export { default as IconBarbell } from './icons-js/barbell.js';
export { default as IconBarcode } from './icons-js/barcode.js';
export { default as IconBasket } from './icons-js/basket.js';
export { default as IconBath } from './icons-js/bath.js';
@@ -177,6 +188,7 @@ export { default as IconBellPlus } from './icons-js/bell-plus.js';
export { default as IconBellRinging2 } from './icons-js/bell-ringing-2.js';
export { default as IconBellRinging } from './icons-js/bell-ringing.js';
export { default as IconBellX } from './icons-js/bell-x.js';
+export { default as IconBellZ } from './icons-js/bell-z.js';
export { default as IconBell } from './icons-js/bell.js';
export { default as IconBible } from './icons-js/bible.js';
export { default as IconBike } from './icons-js/bike.js';
@@ -196,6 +208,7 @@ export { default as IconBook } from './icons-js/book.js';
export { default as IconBookmarkOff } from './icons-js/bookmark-off.js';
export { default as IconBookmark } from './icons-js/bookmark.js';
export { default as IconBookmarks } from './icons-js/bookmarks.js';
+export { default as IconBooks } from './icons-js/books.js';
export { default as IconBorderAll } from './icons-js/border-all.js';
export { default as IconBorderBottom } from './icons-js/border-bottom.js';
export { default as IconBorderHorizontal } from './icons-js/border-horizontal.js';
@@ -463,6 +476,7 @@ export { default as IconCircleCheck } from './icons-js/circle-check.js';
export { default as IconCircleDashed } from './icons-js/circle-dashed.js';
export { default as IconCircleDot } from './icons-js/circle-dot.js';
export { default as IconCircleDotted } from './icons-js/circle-dotted.js';
+export { default as IconCircleHalf2 } from './icons-js/circle-half-2.js';
export { default as IconCircleHalfVertical } from './icons-js/circle-half-vertical.js';
export { default as IconCircleHalf } from './icons-js/circle-half.js';
export { default as IconCircleMinus } from './icons-js/circle-minus.js';
@@ -491,6 +505,7 @@ export { default as IconCloudSnow } from './icons-js/cloud-snow.js';
export { default as IconCloudStorm } from './icons-js/cloud-storm.js';
export { default as IconCloudUpload } from './icons-js/cloud-upload.js';
export { default as IconCloud } from './icons-js/cloud.js';
+export { default as IconClubs } from './icons-js/clubs.js';
export { default as IconCodeMinus } from './icons-js/code-minus.js';
export { default as IconCodePlus } from './icons-js/code-plus.js';
export { default as IconCode } from './icons-js/code.js';
@@ -615,6 +630,7 @@ export { default as IconDevices2 } from './icons-js/devices-2.js';
export { default as IconDevicesPc } from './icons-js/devices-pc.js';
export { default as IconDevices } from './icons-js/devices.js';
export { default as IconDiamond } from './icons-js/diamond.js';
+export { default as IconDiamonds } from './icons-js/diamonds.js';
export { default as IconDice } from './icons-js/dice.js';
export { default as IconDimensions } from './icons-js/dimensions.js';
export { default as IconDirectionHorizontal } from './icons-js/direction-horizontal.js';
@@ -730,6 +746,7 @@ export { default as IconFloatCenter } from './icons-js/float-center.js';
export { default as IconFloatLeft } from './icons-js/float-left.js';
export { default as IconFloatNone } from './icons-js/float-none.js';
export { default as IconFloatRight } from './icons-js/float-right.js';
+export { default as IconFlower } from './icons-js/flower.js';
export { default as IconFocus2 } from './icons-js/focus-2.js';
export { default as IconFocus } from './icons-js/focus.js';
export { default as IconFoldDown } from './icons-js/fold-down.js';
@@ -821,6 +838,7 @@ export { default as IconHourglass } from './icons-js/hourglass.js';
export { default as IconIceCream2 } from './icons-js/ice-cream-2.js';
export { default as IconIceCream } from './icons-js/ice-cream.js';
export { default as IconIceSkating } from './icons-js/ice-skating.js';
+export { default as IconIdBadge } from './icons-js/id-badge.js';
export { default as IconId } from './icons-js/id.js';
export { default as IconInbox } from './icons-js/inbox.js';
export { default as IconIndentDecrease } from './icons-js/indent-decrease.js';
@@ -844,6 +862,7 @@ export { default as IconLanguageKatakana } from './icons-js/language-katakana.js
export { default as IconLanguage } from './icons-js/language.js';
export { default as IconLasso } from './icons-js/lasso.js';
export { default as IconLayersDifference } from './icons-js/layers-difference.js';
+export { default as IconLayersIntersect2 } from './icons-js/layers-intersect-2.js';
export { default as IconLayersIntersect } from './icons-js/layers-intersect.js';
export { default as IconLayersLinked } from './icons-js/layers-linked.js';
export { default as IconLayersSubtract } from './icons-js/layers-subtract.js';
@@ -1056,6 +1075,7 @@ export { default as IconPaperclip } from './icons-js/paperclip.js';
export { default as IconParachute } from './icons-js/parachute.js';
export { default as IconParentheses } from './icons-js/parentheses.js';
export { default as IconParking } from './icons-js/parking.js';
+export { default as IconPaw } from './icons-js/paw.js';
export { default as IconPeace } from './icons-js/peace.js';
export { default as IconPencil } from './icons-js/pencil.js';
export { default as IconPennant } from './icons-js/pennant.js';
@@ -1255,6 +1275,7 @@ export { default as IconSoup } from './icons-js/soup.js';
export { default as IconSpace } from './icons-js/space.js';
export { default as IconSpacingHorizontal } from './icons-js/spacing-horizontal.js';
export { default as IconSpacingVertical } from './icons-js/spacing-vertical.js';
+export { default as IconSpade } from './icons-js/spade.js';
export { default as IconSpeakerphone } from './icons-js/speakerphone.js';
export { default as IconSpeedboat } from './icons-js/speedboat.js';
export { default as IconSportBillard } from './icons-js/sport-billard.js';
@@ -1272,6 +1293,7 @@ export { default as IconSquareCheck } from './icons-js/square-check.js';
export { default as IconSquareDot } from './icons-js/square-dot.js';
export { default as IconSquareForbid2 } from './icons-js/square-forbid-2.js';
export { default as IconSquareForbid } from './icons-js/square-forbid.js';
+export { default as IconSquareHalf } from './icons-js/square-half.js';
export { default as IconSquareMinus } from './icons-js/square-minus.js';
export { default as IconSquareOff } from './icons-js/square-off.js';
export { default as IconSquarePlus } from './icons-js/square-plus.js';