aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js
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/icons-js
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/icons-js')
-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
22 files changed, 264 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