aboutsummaryrefslogtreecommitdiff
path: root/icons-react
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2022-08-12 15:01:12 +0200
committercodecalm <codecalm@gmail.com>2022-08-12 15:01:12 +0200
commitfbbc22312bd135f2b23375d9745ee75761756cf7 (patch)
treeed3b31f7e5e7396cb3ceca464d2a24764e60b3b0 /icons-react
parent18 new icons: `arrows-transfer-down`, `arrows-transfer-up`, `box-align-bottom... (diff)
downloadtabler-icons-fbbc22312bd135f2b23375d9745ee75761756cf7.tar.xz
Release 1.82.0v1.82.0
Diffstat (limited to 'icons-react')
-rw-r--r--icons-react/icons-js/arrows-transfer-down.js12
-rw-r--r--icons-react/icons-js/arrows-transfer-up.js12
-rw-r--r--icons-react/icons-js/box-align-bottom-left.js12
-rw-r--r--icons-react/icons-js/box-align-bottom-right.js12
-rw-r--r--icons-react/icons-js/box-align-top-left.js12
-rw-r--r--icons-react/icons-js/box-align-top-right.js12
-rw-r--r--icons-react/icons-js/brand-webflow.js12
-rw-r--r--icons-react/icons-js/brand-wordpress.js12
-rw-r--r--icons-react/icons-js/bus-stop.js12
-rw-r--r--icons-react/icons-js/chair-director.js12
-rw-r--r--icons-react/icons-js/egg-cracked.js12
-rw-r--r--icons-react/icons-js/script-minus.js12
-rw-r--r--icons-react/icons-js/script-plus.js12
-rw-r--r--icons-react/icons-js/script-x.js12
-rw-r--r--icons-react/icons-js/script.js12
-rw-r--r--icons-react/icons-js/stretching.js12
-rw-r--r--icons-react/icons-js/text-color.js12
-rw-r--r--icons-react/icons-js/tooltip.js12
-rw-r--r--icons-react/index.d.ts18
-rw-r--r--icons-react/index.js18
20 files changed, 252 insertions, 0 deletions
diff --git a/icons-react/icons-js/arrows-transfer-down.js b/icons-react/icons-js/arrows-transfer-down.js
new file mode 100644
index 00000000..377ddf5a
--- /dev/null
+++ b/icons-react/icons-js/arrows-transfer-down.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowsTransferDown({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrows-transfer-down" 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="M17 3v6" /><path d="M10 18l-3 3l-3 -3" /><path d="M7 21v-18" /><path d="M20 6l-3 -3l-3 3" /><path d="M17 21v-2" /><path d="M17 15v-2" /></svg>;
+}
+
+export default IconArrowsTransferDown; \ No newline at end of file
diff --git a/icons-react/icons-js/arrows-transfer-up.js b/icons-react/icons-js/arrows-transfer-up.js
new file mode 100644
index 00000000..bcc78cc4
--- /dev/null
+++ b/icons-react/icons-js/arrows-transfer-up.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowsTransferUp({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrows-transfer-up" 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 21v-6" /><path d="M20 6l-3 -3l-3 3" /><path d="M17 3v18" /><path d="M10 18l-3 3l-3 -3" /><path d="M7 3v2" /><path d="M7 9v2" /></svg>;
+}
+
+export default IconArrowsTransferUp; \ No newline at end of file
diff --git a/icons-react/icons-js/box-align-bottom-left.js b/icons-react/icons-js/box-align-bottom-left.js
new file mode 100644
index 00000000..b16ea189
--- /dev/null
+++ b/icons-react/icons-js/box-align-bottom-left.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBoxAlignBottomLeft({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-box-align-bottom-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="M5 13h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1z" /><path d="M4 9v.01" /><path d="M4 4v.01" /><path d="M9 4v.01" /><path d="M15 4v.01" /><path d="M15 20v.01" /><path d="M20 4v.01" /><path d="M20 9v.01" /><path d="M20 15v.01" /><path d="M20 20v.01" /></svg>;
+}
+
+export default IconBoxAlignBottomLeft; \ No newline at end of file
diff --git a/icons-react/icons-js/box-align-bottom-right.js b/icons-react/icons-js/box-align-bottom-right.js
new file mode 100644
index 00000000..661ab577
--- /dev/null
+++ b/icons-react/icons-js/box-align-bottom-right.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBoxAlignBottomRight({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-box-align-bottom-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="M19 13h-5a1 1 0 0 0 -1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1 -1v-5a1 1 0 0 0 -1 -1z" /><path d="M20 9v.01" /><path d="M20 4v.01" /><path d="M15 4v.01" /><path d="M9 4v.01" /><path d="M9 20v.01" /><path d="M4 4v.01" /><path d="M4 9v.01" /><path d="M4 15v.01" /><path d="M4 20v.01" /></svg>;
+}
+
+export default IconBoxAlignBottomRight; \ No newline at end of file
diff --git a/icons-react/icons-js/box-align-top-left.js b/icons-react/icons-js/box-align-top-left.js
new file mode 100644
index 00000000..0f3655ff
--- /dev/null
+++ b/icons-react/icons-js/box-align-top-left.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBoxAlignTopLeft({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-box-align-top-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="M11.005 5.005v5a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1z" /><path d="M15.005 4.005h-.01" /><path d="M20.005 4.005h-.01" /><path d="M20.005 9.005h-.01" /><path d="M20.005 15.005h-.01" /><path d="M4.005 15.005h-.01" /><path d="M20.005 20.005h-.01" /><path d="M15.005 20.005h-.01" /><path d="M9.005 20.005h-.01" /><path d="M4.005 20.005h-.01" /></svg>;
+}
+
+export default IconBoxAlignTopLeft; \ No newline at end of file
diff --git a/icons-react/icons-js/box-align-top-right.js b/icons-react/icons-js/box-align-top-right.js
new file mode 100644
index 00000000..bccda0dc
--- /dev/null
+++ b/icons-react/icons-js/box-align-top-right.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBoxAlignTopRight({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-box-align-top-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="M19 11.01h-5a1 1 0 0 1 -1 -1v-5a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1z" /><path d="M20 15.01v-.01" /><path d="M20 20.01v-.01" /><path d="M15 20.01v-.01" /><path d="M9 20.01v-.01" /><path d="M9 4.01v-.01" /><path d="M4 20.01v-.01" /><path d="M4 15.01v-.01" /><path d="M4 9.01v-.01" /><path d="M4 4.01v-.01" /></svg>;
+}
+
+export default IconBoxAlignTopRight; \ No newline at end of file
diff --git a/icons-react/icons-js/brand-webflow.js b/icons-react/icons-js/brand-webflow.js
new file mode 100644
index 00000000..6c1201f6
--- /dev/null
+++ b/icons-react/icons-js/brand-webflow.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBrandWebflow({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-webflow" 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="M17 10s-1.376 3.606 -1.5 4c-.046 -.4 -1.5 -8 -1.5 -8c-2.627 0 -3.766 1.562 -4.5 3.5c0 0 -1.843 4.593 -2 5c-.013 -.368 -.5 -4.5 -.5 -4.5c-.15 -2.371 -2.211 -3.98 -4 -3.98l2 12.98c2.745 -.013 4.72 -1.562 5.5 -3.5c0 0 1.44 -4.3 1.5 -4.5c.013 .18 1 8 1 8c2.758 0 4.694 -1.626 5.5 -3.5l3.5 -9.5c-2.732 -.006 -4.253 2.055 -5 4z" /></svg>;
+}
+
+export default IconBrandWebflow; \ No newline at end of file
diff --git a/icons-react/icons-js/brand-wordpress.js b/icons-react/icons-js/brand-wordpress.js
new file mode 100644
index 00000000..200fe599
--- /dev/null
+++ b/icons-react/icons-js/brand-wordpress.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBrandWordpress({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-wordpress" 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.5 6h5.5" /><path d="M2 6h5" /><path d="M10.5 6l6 13l4.5 -9" /><path d="M13.5 6l4.5 9.5" /><path d="M2.5 6l6 13l4 -8.5" /><path d="M5.5 6l4.5 9.5" /><path d="M21 10c.236 -.739 1 -1.91 1 -3.5c0 -2.492 -1.034 -3.5 -2.5 -3.5c-1.197 0 -1.5 1.137 -1.5 2c0 2.562 3 2.882 3 5z" /></svg>;
+}
+
+export default IconBrandWordpress; \ No newline at end of file
diff --git a/icons-react/icons-js/bus-stop.js b/icons-react/icons-js/bus-stop.js
new file mode 100644
index 00000000..aa42d492
--- /dev/null
+++ b/icons-react/icons-js/bus-stop.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBusStop({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-bus-stop" 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={4} height={6} rx={1} /><circle cx={18} cy={17} r={2} /><path d="M10 5h7c2.761 0 5 3.134 5 7v5h-2" /><path d="M16 17h-8" /><path d="M16 5l1.5 7h4.5" /><path d="M9.5 10h7.5" /><path d="M12 5v5" /><path d="M5 9v11" /></svg>;
+}
+
+export default IconBusStop; \ No newline at end of file
diff --git a/icons-react/icons-js/chair-director.js b/icons-react/icons-js/chair-director.js
new file mode 100644
index 00000000..fe67b5e5
--- /dev/null
+++ b/icons-react/icons-js/chair-director.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconChairDirector({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-chair-director" 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 21l12 -9" /><path d="M6 12l12 9" /><path d="M5 12h14" /><path d="M6 3v9" /><path d="M18 3v9" /><path d="M6 8h12" /><path d="M6 5h12" /></svg>;
+}
+
+export default IconChairDirector; \ No newline at end of file
diff --git a/icons-react/icons-js/egg-cracked.js b/icons-react/icons-js/egg-cracked.js
new file mode 100644
index 00000000..51bde7d4
--- /dev/null
+++ b/icons-react/icons-js/egg-cracked.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconEggCracked({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-egg-cracked" 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.514 14.639c0 3.513 2.904 6.361 6.486 6.361s6.486 -2.848 6.486 -6.361a12.574 12.574 0 0 0 -3.243 -9.012a4.025 4.025 0 0 0 -3.243 -1.627a4.025 4.025 0 0 0 -3.243 1.627a12.574 12.574 0 0 0 -3.243 9.012" /><path d="M12 5l-1 3l3 2.5l-2 3.5" /></svg>;
+}
+
+export default IconEggCracked; \ No newline at end of file
diff --git a/icons-react/icons-js/script-minus.js b/icons-react/icons-js/script-minus.js
new file mode 100644
index 00000000..2538f33d
--- /dev/null
+++ b/icons-react/icons-js/script-minus.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconScriptMinus({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-script-minus" 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="M17 19h4" /><path d="M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -2v-9a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8" /></svg>;
+}
+
+export default IconScriptMinus; \ No newline at end of file
diff --git a/icons-react/icons-js/script-plus.js b/icons-react/icons-js/script-plus.js
new file mode 100644
index 00000000..085ac297
--- /dev/null
+++ b/icons-react/icons-js/script-plus.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconScriptPlus({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-script-plus" 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="M17 19h4" /><path d="M14 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8" /><path d="M19 17v4" /></svg>;
+}
+
+export default IconScriptPlus; \ No newline at end of file
diff --git a/icons-react/icons-js/script-x.js b/icons-react/icons-js/script-x.js
new file mode 100644
index 00000000..c099dacd
--- /dev/null
+++ b/icons-react/icons-js/script-x.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconScriptX({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-script-x" 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 20h-8a3 3 0 0 1 0 -6h11a3 3 0 0 0 -3 3m7 -3v-8a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8" /><path d="M17 17l4 4m0 -4l-4 4" /></svg>;
+}
+
+export default IconScriptX; \ No newline at end of file
diff --git a/icons-react/icons-js/script.js b/icons-react/icons-js/script.js
new file mode 100644
index 00000000..770d9883
--- /dev/null
+++ b/icons-react/icons-js/script.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconScript({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-script" 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="M17 20h-11a3 3 0 0 1 0 -6h11a3 3 0 0 0 0 6h1a3 3 0 0 0 3 -3v-11a2 2 0 0 0 -2 -2h-10a2 2 0 0 0 -2 2v8" /></svg>;
+}
+
+export default IconScript; \ No newline at end of file
diff --git a/icons-react/icons-js/stretching.js b/icons-react/icons-js/stretching.js
new file mode 100644
index 00000000..c25a3381
--- /dev/null
+++ b/icons-react/icons-js/stretching.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconStretching({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-stretching" 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={16} cy={5} r={1} /><path d="M5 20l5 -.5l1 -2" /><path d="M18 20v-5h-5.5l2.5 -6.5l-5.5 1l1.5 2" /></svg>;
+}
+
+export default IconStretching; \ No newline at end of file
diff --git a/icons-react/icons-js/text-color.js b/icons-react/icons-js/text-color.js
new file mode 100644
index 00000000..9526040f
--- /dev/null
+++ b/icons-react/icons-js/text-color.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconTextColor({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-text-color" 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 15v-7a3 3 0 0 1 6 0v7" /><path d="M9 11h6" /><path d="M5 19h14" /></svg>;
+}
+
+export default IconTextColor; \ No newline at end of file
diff --git a/icons-react/icons-js/tooltip.js b/icons-react/icons-js/tooltip.js
new file mode 100644
index 00000000..603410b6
--- /dev/null
+++ b/icons-react/icons-js/tooltip.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconTooltip({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-tooltip" 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={18} r={2} /><path d="M12 13l-1.707 -1.707a1 1 0 0 0 -.707 -.293h-2.586a2 2 0 0 1 -2 -2v-3a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2.586a1 1 0 0 0 -.707 .293l-1.707 1.707z" /></svg>;
+}
+
+export default IconTooltip; \ No newline at end of file
diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts
index 11502421..64aba919 100644
--- a/icons-react/index.d.ts
+++ b/icons-react/index.d.ts
@@ -207,6 +207,8 @@ export const IconArrowsShuffle: TablerIcon;
export const IconArrowsSort: TablerIcon;
export const IconArrowsSplit2: TablerIcon;
export const IconArrowsSplit: TablerIcon;
+export const IconArrowsTransferDown: TablerIcon;
+export const IconArrowsTransferUp: TablerIcon;
export const IconArrowsUpDown: TablerIcon;
export const IconArrowsUpLeft: TablerIcon;
export const IconArrowsUpRight: TablerIcon;
@@ -337,9 +339,13 @@ export const IconBorderTop: TablerIcon;
export const IconBorderVertical: TablerIcon;
export const IconBottle: TablerIcon;
export const IconBow: TablerIcon;
+export const IconBoxAlignBottomLeft: TablerIcon;
+export const IconBoxAlignBottomRight: TablerIcon;
export const IconBoxAlignBottom: TablerIcon;
export const IconBoxAlignLeft: TablerIcon;
export const IconBoxAlignRight: TablerIcon;
+export const IconBoxAlignTopLeft: TablerIcon;
+export const IconBoxAlignTopRight: TablerIcon;
export const IconBoxAlignTop: TablerIcon;
export const IconBoxMargin: TablerIcon;
export const IconBoxModel2: TablerIcon;
@@ -508,9 +514,11 @@ export const IconBrandVivaldi: TablerIcon;
export const IconBrandVk: TablerIcon;
export const IconBrandVue: TablerIcon;
export const IconBrandWalmart: TablerIcon;
+export const IconBrandWebflow: TablerIcon;
export const IconBrandWhatsapp: TablerIcon;
export const IconBrandWindows: TablerIcon;
export const IconBrandWish: TablerIcon;
+export const IconBrandWordpress: TablerIcon;
export const IconBrandXbox: TablerIcon;
export const IconBrandXing: TablerIcon;
export const IconBrandYahoo: TablerIcon;
@@ -563,6 +571,7 @@ export const IconBuilding: TablerIcon;
export const IconBulbOff: TablerIcon;
export const IconBulb: TablerIcon;
export const IconBulldozer: TablerIcon;
+export const IconBusStop: TablerIcon;
export const IconBus: TablerIcon;
export const IconBusinessplan: TablerIcon;
export const IconButterfly: TablerIcon;
@@ -623,6 +632,7 @@ export const IconCertificate2Off: TablerIcon;
export const IconCertificate2: TablerIcon;
export const IconCertificateOff: TablerIcon;
export const IconCertificate: TablerIcon;
+export const IconChairDirector: TablerIcon;
export const IconChargingPile: TablerIcon;
export const IconChartArcs3: TablerIcon;
export const IconChartArcs: TablerIcon;
@@ -984,6 +994,7 @@ export const IconEditCircleOff: TablerIcon;
export const IconEditCircle: TablerIcon;
export const IconEditOff: TablerIcon;
export const IconEdit: TablerIcon;
+export const IconEggCracked: TablerIcon;
export const IconEggOff: TablerIcon;
export const IconEgg: TablerIcon;
export const IconElevator: TablerIcon;
@@ -1806,6 +1817,10 @@ export const IconScreenShareOff: TablerIcon;
export const IconScreenShare: TablerIcon;
export const IconScreenshot: TablerIcon;
export const IconScribble: TablerIcon;
+export const IconScriptMinus: TablerIcon;
+export const IconScriptPlus: TablerIcon;
+export const IconScriptX: TablerIcon;
+export const IconScript: TablerIcon;
export const IconScubaMask: TablerIcon;
export const IconSearchOff: TablerIcon;
export const IconSearch: TablerIcon;
@@ -1953,6 +1968,7 @@ export const IconStepOut: TablerIcon;
export const IconStethoscope: TablerIcon;
export const IconSticker: TablerIcon;
export const IconStorm: TablerIcon;
+export const IconStretching: TablerIcon;
export const IconStrikethrough: TablerIcon;
export const IconSubmarine: TablerIcon;
export const IconSubscript: TablerIcon;
@@ -2014,6 +2030,7 @@ export const IconTerminal: TablerIcon;
export const IconTestPipe2: TablerIcon;
export const IconTestPipeOff: TablerIcon;
export const IconTestPipe: TablerIcon;
+export const IconTextColor: TablerIcon;
export const IconTextDecrease: TablerIcon;
export const IconTextDirectionLtr: TablerIcon;
export const IconTextDirectionRtl: TablerIcon;
@@ -2047,6 +2064,7 @@ export const IconToolsKitchenOff: TablerIcon;
export const IconToolsKitchen: TablerIcon;
export const IconToolsOff: TablerIcon;
export const IconTools: TablerIcon;
+export const IconTooltip: TablerIcon;
export const IconTornado: TablerIcon;
export const IconTournament: TablerIcon;
export const IconTowerOff: TablerIcon;
diff --git a/icons-react/index.js b/icons-react/index.js
index 4f3024b6..4fefe845 100644
--- a/icons-react/index.js
+++ b/icons-react/index.js
@@ -201,6 +201,8 @@ export { default as IconArrowsShuffle } from './icons-js/arrows-shuffle.js';
export { default as IconArrowsSort } from './icons-js/arrows-sort.js';
export { default as IconArrowsSplit2 } from './icons-js/arrows-split-2.js';
export { default as IconArrowsSplit } from './icons-js/arrows-split.js';
+export { default as IconArrowsTransferDown } from './icons-js/arrows-transfer-down.js';
+export { default as IconArrowsTransferUp } from './icons-js/arrows-transfer-up.js';
export { default as IconArrowsUpDown } from './icons-js/arrows-up-down.js';
export { default as IconArrowsUpLeft } from './icons-js/arrows-up-left.js';
export { default as IconArrowsUpRight } from './icons-js/arrows-up-right.js';
@@ -331,9 +333,13 @@ export { default as IconBorderTop } from './icons-js/border-top.js';
export { default as IconBorderVertical } from './icons-js/border-vertical.js';
export { default as IconBottle } from './icons-js/bottle.js';
export { default as IconBow } from './icons-js/bow.js';
+export { default as IconBoxAlignBottomLeft } from './icons-js/box-align-bottom-left.js';
+export { default as IconBoxAlignBottomRight } from './icons-js/box-align-bottom-right.js';
export { default as IconBoxAlignBottom } from './icons-js/box-align-bottom.js';
export { default as IconBoxAlignLeft } from './icons-js/box-align-left.js';
export { default as IconBoxAlignRight } from './icons-js/box-align-right.js';
+export { default as IconBoxAlignTopLeft } from './icons-js/box-align-top-left.js';
+export { default as IconBoxAlignTopRight } from './icons-js/box-align-top-right.js';
export { default as IconBoxAlignTop } from './icons-js/box-align-top.js';
export { default as IconBoxMargin } from './icons-js/box-margin.js';
export { default as IconBoxModel2 } from './icons-js/box-model-2.js';
@@ -502,9 +508,11 @@ export { default as IconBrandVivaldi } from './icons-js/brand-vivaldi.js';
export { default as IconBrandVk } from './icons-js/brand-vk.js';
export { default as IconBrandVue } from './icons-js/brand-vue.js';
export { default as IconBrandWalmart } from './icons-js/brand-walmart.js';
+export { default as IconBrandWebflow } from './icons-js/brand-webflow.js';
export { default as IconBrandWhatsapp } from './icons-js/brand-whatsapp.js';
export { default as IconBrandWindows } from './icons-js/brand-windows.js';
export { default as IconBrandWish } from './icons-js/brand-wish.js';
+export { default as IconBrandWordpress } from './icons-js/brand-wordpress.js';
export { default as IconBrandXbox } from './icons-js/brand-xbox.js';
export { default as IconBrandXing } from './icons-js/brand-xing.js';
export { default as IconBrandYahoo } from './icons-js/brand-yahoo.js';
@@ -557,6 +565,7 @@ export { default as IconBuilding } from './icons-js/building.js';
export { default as IconBulbOff } from './icons-js/bulb-off.js';
export { default as IconBulb } from './icons-js/bulb.js';
export { default as IconBulldozer } from './icons-js/bulldozer.js';
+export { default as IconBusStop } from './icons-js/bus-stop.js';
export { default as IconBus } from './icons-js/bus.js';
export { default as IconBusinessplan } from './icons-js/businessplan.js';
export { default as IconButterfly } from './icons-js/butterfly.js';
@@ -617,6 +626,7 @@ export { default as IconCertificate2Off } from './icons-js/certificate-2-off.js'
export { default as IconCertificate2 } from './icons-js/certificate-2.js';
export { default as IconCertificateOff } from './icons-js/certificate-off.js';
export { default as IconCertificate } from './icons-js/certificate.js';
+export { default as IconChairDirector } from './icons-js/chair-director.js';
export { default as IconChargingPile } from './icons-js/charging-pile.js';
export { default as IconChartArcs3 } from './icons-js/chart-arcs-3.js';
export { default as IconChartArcs } from './icons-js/chart-arcs.js';
@@ -978,6 +988,7 @@ export { default as IconEditCircleOff } from './icons-js/edit-circle-off.js';
export { default as IconEditCircle } from './icons-js/edit-circle.js';
export { default as IconEditOff } from './icons-js/edit-off.js';
export { default as IconEdit } from './icons-js/edit.js';
+export { default as IconEggCracked } from './icons-js/egg-cracked.js';
export { default as IconEggOff } from './icons-js/egg-off.js';
export { default as IconEgg } from './icons-js/egg.js';
export { default as IconElevator } from './icons-js/elevator.js';
@@ -1800,6 +1811,10 @@ export { default as IconScreenShareOff } from './icons-js/screen-share-off.js';
export { default as IconScreenShare } from './icons-js/screen-share.js';
export { default as IconScreenshot } from './icons-js/screenshot.js';
export { default as IconScribble } from './icons-js/scribble.js';
+export { default as IconScriptMinus } from './icons-js/script-minus.js';
+export { default as IconScriptPlus } from './icons-js/script-plus.js';
+export { default as IconScriptX } from './icons-js/script-x.js';
+export { default as IconScript } from './icons-js/script.js';
export { default as IconScubaMask } from './icons-js/scuba-mask.js';
export { default as IconSearchOff } from './icons-js/search-off.js';
export { default as IconSearch } from './icons-js/search.js';
@@ -1947,6 +1962,7 @@ export { default as IconStepOut } from './icons-js/step-out.js';
export { default as IconStethoscope } from './icons-js/stethoscope.js';
export { default as IconSticker } from './icons-js/sticker.js';
export { default as IconStorm } from './icons-js/storm.js';
+export { default as IconStretching } from './icons-js/stretching.js';
export { default as IconStrikethrough } from './icons-js/strikethrough.js';
export { default as IconSubmarine } from './icons-js/submarine.js';
export { default as IconSubscript } from './icons-js/subscript.js';
@@ -2008,6 +2024,7 @@ export { default as IconTerminal } from './icons-js/terminal.js';
export { default as IconTestPipe2 } from './icons-js/test-pipe-2.js';
export { default as IconTestPipeOff } from './icons-js/test-pipe-off.js';
export { default as IconTestPipe } from './icons-js/test-pipe.js';
+export { default as IconTextColor } from './icons-js/text-color.js';
export { default as IconTextDecrease } from './icons-js/text-decrease.js';
export { default as IconTextDirectionLtr } from './icons-js/text-direction-ltr.js';
export { default as IconTextDirectionRtl } from './icons-js/text-direction-rtl.js';
@@ -2041,6 +2058,7 @@ export { default as IconToolsKitchenOff } from './icons-js/tools-kitchen-off.js'
export { default as IconToolsKitchen } from './icons-js/tools-kitchen.js';
export { default as IconToolsOff } from './icons-js/tools-off.js';
export { default as IconTools } from './icons-js/tools.js';
+export { default as IconTooltip } from './icons-js/tooltip.js';
export { default as IconTornado } from './icons-js/tornado.js';
export { default as IconTournament } from './icons-js/tournament.js';
export { default as IconTowerOff } from './icons-js/tower-off.js';