aboutsummaryrefslogtreecommitdiff
path: root/icons-react
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2022-06-16 23:28:42 +0200
committercodecalm <codecalm@gmail.com>2022-06-16 23:28:42 +0200
commit242f591d9fa27cb7e78487e59be7d62fde39e022 (patch)
tree243a396d939969eaf850ce2fdc711d5fb8a5df8c /icons-react
parent18 new icons: `arrows-exchange-2`, `arrows-exchange`, `category-2`, `category... (diff)
downloadtabler-icons-242f591d9fa27cb7e78487e59be7d62fde39e022.tar.xz
Release 1.70.0v1.70.0
Diffstat (limited to 'icons-react')
-rw-r--r--icons-react/icons-js/arrows-exchange-2.js12
-rw-r--r--icons-react/icons-js/arrows-exchange.js12
-rw-r--r--icons-react/icons-js/category-2.js12
-rw-r--r--icons-react/icons-js/category.js12
-rw-r--r--icons-react/icons-js/direction-sign.js12
-rw-r--r--icons-react/icons-js/discount-check.js12
-rw-r--r--icons-react/icons-js/fish-hook.js12
-rw-r--r--icons-react/icons-js/fridge.js12
-rw-r--r--icons-react/icons-js/health-recognition.js12
-rw-r--r--icons-react/icons-js/history-toggle.js12
-rw-r--r--icons-react/icons-js/meteor.js12
-rw-r--r--icons-react/icons-js/number.js12
-rw-r--r--icons-react/icons-js/scan-eye.js12
-rw-r--r--icons-react/icons-js/schema.js12
-rw-r--r--icons-react/icons-js/screenshot.js12
-rw-r--r--icons-react/icons-js/text-decrease.js12
-rw-r--r--icons-react/icons-js/text-increase.js12
-rw-r--r--icons-react/icons-js/text-recognition.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-exchange-2.js b/icons-react/icons-js/arrows-exchange-2.js
new file mode 100644
index 00000000..b536c12c
--- /dev/null
+++ b/icons-react/icons-js/arrows-exchange-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowsExchange2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrows-exchange-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="M17 10h-14l4 -4" /><path d="M7 14h14l-4 4" /></svg>;
+}
+
+export default IconArrowsExchange2; \ No newline at end of file
diff --git a/icons-react/icons-js/arrows-exchange.js b/icons-react/icons-js/arrows-exchange.js
new file mode 100644
index 00000000..f23a98a9
--- /dev/null
+++ b/icons-react/icons-js/arrows-exchange.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowsExchange({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrows-exchange" 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 10h14l-4 -4" /><path d="M17 14h-14l4 4" /></svg>;
+}
+
+export default IconArrowsExchange; \ No newline at end of file
diff --git a/icons-react/icons-js/category-2.js b/icons-react/icons-js/category-2.js
new file mode 100644
index 00000000..8e01e8ca
--- /dev/null
+++ b/icons-react/icons-js/category-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCategory2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-category-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="M14 4h6v6h-6z" /><path d="M4 14h6v6h-6z" /><circle cx={17} cy={17} r={3} /><circle cx={7} cy={7} r={3} /></svg>;
+}
+
+export default IconCategory2; \ No newline at end of file
diff --git a/icons-react/icons-js/category.js b/icons-react/icons-js/category.js
new file mode 100644
index 00000000..e28ff8ec
--- /dev/null
+++ b/icons-react/icons-js/category.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCategory({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-category" 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="M4 4h6v6h-6z" /><path d="M14 4h6v6h-6z" /><path d="M4 14h6v6h-6z" /><circle cx={17} cy={17} r={3} /></svg>;
+}
+
+export default IconCategory; \ No newline at end of file
diff --git a/icons-react/icons-js/direction-sign.js b/icons-react/icons-js/direction-sign.js
new file mode 100644
index 00000000..48bcd5d4
--- /dev/null
+++ b/icons-react/icons-js/direction-sign.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconDirectionSign({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-direction-sign" 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.32 12.774l7.906 7.905c.427 .428 1.12 .428 1.548 0l7.905 -7.905a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-7.905 7.905a1.095 1.095 0 0 0 0 1.548z" /><path d="M8 12h7.5" /><path d="M12 8.5l3.5 3.5l-3.5 3.5" /></svg>;
+}
+
+export default IconDirectionSign; \ No newline at end of file
diff --git a/icons-react/icons-js/discount-check.js b/icons-react/icons-js/discount-check.js
new file mode 100644
index 00000000..eff2312c
--- /dev/null
+++ b/icons-react/icons-js/discount-check.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconDiscountCheck({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-discount-check" 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 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1" /><path d="M9 12l2 2l4 -4" /></svg>;
+}
+
+export default IconDiscountCheck; \ No newline at end of file
diff --git a/icons-react/icons-js/fish-hook.js b/icons-react/icons-js/fish-hook.js
new file mode 100644
index 00000000..d754dfd1
--- /dev/null
+++ b/icons-react/icons-js/fish-hook.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFishHook({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-fish-hook" 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 9v6a5 5 0 0 1 -10 0v-4l3 3" /><circle cx={16} cy={7} r={2} /><path d="M16 5v-2" /></svg>;
+}
+
+export default IconFishHook; \ No newline at end of file
diff --git a/icons-react/icons-js/fridge.js b/icons-react/icons-js/fridge.js
new file mode 100644
index 00000000..9135f759
--- /dev/null
+++ b/icons-react/icons-js/fridge.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFridge({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-fridge" 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={2} /><path d="M5 10h14" /><path d="M9 13v3" /><path d="M9 6v1" /></svg>;
+}
+
+export default IconFridge; \ No newline at end of file
diff --git a/icons-react/icons-js/health-recognition.js b/icons-react/icons-js/health-recognition.js
new file mode 100644
index 00000000..5c2ca4c8
--- /dev/null
+++ b/icons-react/icons-js/health-recognition.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconHealthRecognition({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-health-recognition" 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="M4 8v-2a2 2 0 0 1 2 -2h2" /><path d="M4 16v2a2 2 0 0 0 2 2h2" /><path d="M16 4h2a2 2 0 0 1 2 2v2" /><path d="M16 20h2a2 2 0 0 0 2 -2v-2" /><path d="M8.603 9.61a2.04 2.04 0 0 1 2.912 0l.485 .39l.5 -.396a2.035 2.035 0 0 1 2.897 .007a2.104 2.104 0 0 1 0 2.949l-3.397 3.44l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95z" /></svg>;
+}
+
+export default IconHealthRecognition; \ No newline at end of file
diff --git a/icons-react/icons-js/history-toggle.js b/icons-react/icons-js/history-toggle.js
new file mode 100644
index 00000000..c624acb3
--- /dev/null
+++ b/icons-react/icons-js/history-toggle.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconHistoryToggle({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-history-toggle" 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 8v4l3 3" /><path d="M8.56 3.69a9 9 0 0 0 -2.92 1.95" /><path d="M3.69 8.56a9 9 0 0 0 -.69 3.44" /><path d="M3.69 15.44a9 9 0 0 0 1.95 2.92" /><path d="M8.56 20.31a9 9 0 0 0 3.44 .69" /><path d="M15.44 20.31a9 9 0 0 0 2.92 -1.95" /><path d="M20.31 15.44a9 9 0 0 0 .69 -3.44" /><path d="M20.31 8.56a9 9 0 0 0 -1.95 -2.92" /><path d="M15.44 3.69a9 9 0 0 0 -3.44 -.69" /></svg>;
+}
+
+export default IconHistoryToggle; \ No newline at end of file
diff --git a/icons-react/icons-js/meteor.js b/icons-react/icons-js/meteor.js
new file mode 100644
index 00000000..584403dc
--- /dev/null
+++ b/icons-react/icons-js/meteor.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconMeteor({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-meteor" 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="M21 3l-5 9h5l-6.891 7.086a6.5 6.5 0 1 1 -8.855 -9.506l7.746 -6.58l-1 5l9 -5z" /><circle cx={9.5} cy={14.5} r={2.5} /></svg>;
+}
+
+export default IconMeteor; \ No newline at end of file
diff --git a/icons-react/icons-js/number.js b/icons-react/icons-js/number.js
new file mode 100644
index 00000000..54f13808
--- /dev/null
+++ b/icons-react/icons-js/number.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconNumber({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-number" 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="M4 17v-10l7 10v-10" /><path d="M15 17h5" /><ellipse cx={17.5} cy={10} rx={2.5} ry={3} /></svg>;
+}
+
+export default IconNumber; \ No newline at end of file
diff --git a/icons-react/icons-js/scan-eye.js b/icons-react/icons-js/scan-eye.js
new file mode 100644
index 00000000..95a0290d
--- /dev/null
+++ b/icons-react/icons-js/scan-eye.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconScanEye({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-scan-eye" 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="M4 8v-2a2 2 0 0 1 2 -2h2" /><path d="M4 16v2a2 2 0 0 0 2 2h2" /><path d="M16 4h2a2 2 0 0 1 2 2v2" /><path d="M16 20h2a2 2 0 0 0 2 -2v-2" /><path d="M7 12c3.333 -4.667 6.667 -4.667 10 0" /><path d="M7 12c3.333 4.667 6.667 4.667 10 0" /><path d="M12 12h-.01" /></svg>;
+}
+
+export default IconScanEye; \ No newline at end of file
diff --git a/icons-react/icons-js/schema.js b/icons-react/icons-js/schema.js
new file mode 100644
index 00000000..2a7143b4
--- /dev/null
+++ b/icons-react/icons-js/schema.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSchema({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-schema" 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 2h5v4h-5z" /><path d="M15 10h5v4h-5z" /><path d="M5 18h5v4h-5z" /><path d="M5 10h5v4h-5z" /><path d="M10 12h5" /><path d="M7.5 6v4" /><path d="M7.5 14v4" /></svg>;
+}
+
+export default IconSchema; \ No newline at end of file
diff --git a/icons-react/icons-js/screenshot.js b/icons-react/icons-js/screenshot.js
new file mode 100644
index 00000000..76796de1
--- /dev/null
+++ b/icons-react/icons-js/screenshot.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconScreenshot({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-screenshot" 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 19a2 2 0 0 1 -2 -2" /><path d="M5 13v-2" /><path d="M5 7a2 2 0 0 1 2 -2" /><path d="M11 5h2" /><path d="M17 5a2 2 0 0 1 2 2" /><path d="M19 11v2" /><path d="M19 17v4" /><path d="M21 19h-4" /><path d="M13 19h-2" /></svg>;
+}
+
+export default IconScreenshot; \ No newline at end of file
diff --git a/icons-react/icons-js/text-decrease.js b/icons-react/icons-js/text-decrease.js
new file mode 100644
index 00000000..6819dae0
--- /dev/null
+++ b/icons-react/icons-js/text-decrease.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconTextDecrease({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-text-decrease" 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="M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5" /><path d="M4 13h7" /><path d="M21 12h-6" /></svg>;
+}
+
+export default IconTextDecrease; \ No newline at end of file
diff --git a/icons-react/icons-js/text-increase.js b/icons-react/icons-js/text-increase.js
new file mode 100644
index 00000000..aaa809a7
--- /dev/null
+++ b/icons-react/icons-js/text-increase.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconTextIncrease({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-text-increase" 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="M4 19v-10.5a3.5 3.5 0 1 1 7 0v10.5" /><path d="M4 13h7" /><path d="M18 9v6" /><path d="M21 12h-6" /></svg>;
+}
+
+export default IconTextIncrease; \ No newline at end of file
diff --git a/icons-react/icons-js/text-recognition.js b/icons-react/icons-js/text-recognition.js
new file mode 100644
index 00000000..7a90fbf5
--- /dev/null
+++ b/icons-react/icons-js/text-recognition.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconTextRecognition({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-text-recognition" 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="M4 8v-2a2 2 0 0 1 2 -2h2" /><path d="M4 16v2a2 2 0 0 0 2 2h2" /><path d="M16 4h2a2 2 0 0 1 2 2v2" /><path d="M16 20h2a2 2 0 0 0 2 -2v-2" /><path d="M12 16v-7" /><path d="M9 9h6" /></svg>;
+}
+
+export default IconTextRecognition; \ No newline at end of file
diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts
index be3a50c0..608cb125 100644
--- a/icons-react/index.d.ts
+++ b/icons-react/index.d.ts
@@ -172,6 +172,8 @@ export const IconArrowsDoubleSeNw: TablerIcon;
export const IconArrowsDoubleSwNe: TablerIcon;
export const IconArrowsDownUp: TablerIcon;
export const IconArrowsDown: TablerIcon;
+export const IconArrowsExchange2: TablerIcon;
+export const IconArrowsExchange: TablerIcon;
export const IconArrowsHorizontal: TablerIcon;
export const IconArrowsJoin2: TablerIcon;
export const IconArrowsJoin: TablerIcon;
@@ -543,6 +545,8 @@ export const IconCashOff: TablerIcon;
export const IconCash: TablerIcon;
export const IconCastOff: TablerIcon;
export const IconCast: TablerIcon;
+export const IconCategory2: TablerIcon;
+export const IconCategory: TablerIcon;
export const IconCeOff: TablerIcon;
export const IconCe: TablerIcon;
export const IconCellSignal1: TablerIcon;
@@ -833,6 +837,7 @@ export const IconDice6: TablerIcon;
export const IconDice: TablerIcon;
export const IconDimensions: TablerIcon;
export const IconDirectionHorizontal: TablerIcon;
+export const IconDirectionSign: TablerIcon;
export const IconDirection: TablerIcon;
export const IconDirectionsOff: TablerIcon;
export const IconDirections: TablerIcon;
@@ -842,6 +847,7 @@ export const IconDisabled: TablerIcon;
export const IconDiscOff: TablerIcon;
export const IconDisc: TablerIcon;
export const IconDiscount2: TablerIcon;
+export const IconDiscountCheck: TablerIcon;
export const IconDiscount: TablerIcon;
export const IconDivide: TablerIcon;
export const IconDna2Off: TablerIcon;
@@ -974,6 +980,7 @@ export const IconFingerprintOff: TablerIcon;
export const IconFingerprint: TablerIcon;
export const IconFiretruck: TablerIcon;
export const IconFirstAidKit: TablerIcon;
+export const IconFishHook: TablerIcon;
export const IconFishOff: TablerIcon;
export const IconFish: TablerIcon;
export const IconFlag2Off: TablerIcon;
@@ -1018,6 +1025,7 @@ export const IconFountain: TablerIcon;
export const IconFrameOff: TablerIcon;
export const IconFrame: TablerIcon;
export const IconFreeRights: TablerIcon;
+export const IconFridge: TablerIcon;
export const IconFriendsOff: TablerIcon;
export const IconFriends: TablerIcon;
export const IconGasStationOff: TablerIcon;
@@ -1102,6 +1110,7 @@ export const IconHeading: TablerIcon;
export const IconHeadphonesOff: TablerIcon;
export const IconHeadphones: TablerIcon;
export const IconHeadset: TablerIcon;
+export const IconHealthRecognition: TablerIcon;
export const IconHeartBroken: TablerIcon;
export const IconHeartHandshake: TablerIcon;
export const IconHeartMinus: TablerIcon;
@@ -1122,6 +1131,7 @@ export const IconHierarchy2: TablerIcon;
export const IconHierarchy: TablerIcon;
export const IconHighlightOff: TablerIcon;
export const IconHighlight: TablerIcon;
+export const IconHistoryToggle: TablerIcon;
export const IconHistory: TablerIcon;
export const IconHome2: TablerIcon;
export const IconHomeOff: TablerIcon;
@@ -1336,6 +1346,7 @@ export const IconMessageShare: TablerIcon;
export const IconMessage: TablerIcon;
export const IconMessagesOff: TablerIcon;
export const IconMessages: TablerIcon;
+export const IconMeteor: TablerIcon;
export const IconMicrophone2: TablerIcon;
export const IconMicrophoneOff: TablerIcon;
export const IconMicrophone: TablerIcon;
@@ -1409,6 +1420,7 @@ export const IconNumber6: TablerIcon;
export const IconNumber7: TablerIcon;
export const IconNumber8: TablerIcon;
export const IconNumber9: TablerIcon;
+export const IconNumber: TablerIcon;
export const IconNumbers: TablerIcon;
export const IconNurse: TablerIcon;
export const IconOctagonOff: TablerIcon;
@@ -1626,7 +1638,9 @@ export const IconScaleOff: TablerIcon;
export const IconScaleOutlineOff: TablerIcon;
export const IconScaleOutline: TablerIcon;
export const IconScale: TablerIcon;
+export const IconScanEye: TablerIcon;
export const IconScan: TablerIcon;
+export const IconSchema: TablerIcon;
export const IconSchoolOff: TablerIcon;
export const IconSchool: TablerIcon;
export const IconScissorsOff: TablerIcon;
@@ -1635,6 +1649,7 @@ export const IconScooterElectric: TablerIcon;
export const IconScooter: TablerIcon;
export const IconScreenShareOff: TablerIcon;
export const IconScreenShare: TablerIcon;
+export const IconScreenshot: TablerIcon;
export const IconScribble: TablerIcon;
export const IconScubaMask: TablerIcon;
export const IconSearchOff: TablerIcon;
@@ -1822,8 +1837,11 @@ export const IconTerminal: TablerIcon;
export const IconTestPipe2: TablerIcon;
export const IconTestPipeOff: TablerIcon;
export const IconTestPipe: TablerIcon;
+export const IconTextDecrease: TablerIcon;
export const IconTextDirectionLtr: TablerIcon;
export const IconTextDirectionRtl: TablerIcon;
+export const IconTextIncrease: TablerIcon;
+export const IconTextRecognition: TablerIcon;
export const IconTextResize: TablerIcon;
export const IconTextWrapDisabled: TablerIcon;
export const IconTextWrap: TablerIcon;
diff --git a/icons-react/index.js b/icons-react/index.js
index 2656fa78..6e67fb00 100644
--- a/icons-react/index.js
+++ b/icons-react/index.js
@@ -166,6 +166,8 @@ export { default as IconArrowsDoubleSeNw } from './icons-js/arrows-double-se-nw.
export { default as IconArrowsDoubleSwNe } from './icons-js/arrows-double-sw-ne.js';
export { default as IconArrowsDownUp } from './icons-js/arrows-down-up.js';
export { default as IconArrowsDown } from './icons-js/arrows-down.js';
+export { default as IconArrowsExchange2 } from './icons-js/arrows-exchange-2.js';
+export { default as IconArrowsExchange } from './icons-js/arrows-exchange.js';
export { default as IconArrowsHorizontal } from './icons-js/arrows-horizontal.js';
export { default as IconArrowsJoin2 } from './icons-js/arrows-join-2.js';
export { default as IconArrowsJoin } from './icons-js/arrows-join.js';
@@ -537,6 +539,8 @@ export { default as IconCashOff } from './icons-js/cash-off.js';
export { default as IconCash } from './icons-js/cash.js';
export { default as IconCastOff } from './icons-js/cast-off.js';
export { default as IconCast } from './icons-js/cast.js';
+export { default as IconCategory2 } from './icons-js/category-2.js';
+export { default as IconCategory } from './icons-js/category.js';
export { default as IconCeOff } from './icons-js/ce-off.js';
export { default as IconCe } from './icons-js/ce.js';
export { default as IconCellSignal1 } from './icons-js/cell-signal-1.js';
@@ -827,6 +831,7 @@ export { default as IconDice6 } from './icons-js/dice-6.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';
+export { default as IconDirectionSign } from './icons-js/direction-sign.js';
export { default as IconDirection } from './icons-js/direction.js';
export { default as IconDirectionsOff } from './icons-js/directions-off.js';
export { default as IconDirections } from './icons-js/directions.js';
@@ -836,6 +841,7 @@ export { default as IconDisabled } from './icons-js/disabled.js';
export { default as IconDiscOff } from './icons-js/disc-off.js';
export { default as IconDisc } from './icons-js/disc.js';
export { default as IconDiscount2 } from './icons-js/discount-2.js';
+export { default as IconDiscountCheck } from './icons-js/discount-check.js';
export { default as IconDiscount } from './icons-js/discount.js';
export { default as IconDivide } from './icons-js/divide.js';
export { default as IconDna2Off } from './icons-js/dna-2-off.js';
@@ -968,6 +974,7 @@ export { default as IconFingerprintOff } from './icons-js/fingerprint-off.js';
export { default as IconFingerprint } from './icons-js/fingerprint.js';
export { default as IconFiretruck } from './icons-js/firetruck.js';
export { default as IconFirstAidKit } from './icons-js/first-aid-kit.js';
+export { default as IconFishHook } from './icons-js/fish-hook.js';
export { default as IconFishOff } from './icons-js/fish-off.js';
export { default as IconFish } from './icons-js/fish.js';
export { default as IconFlag2Off } from './icons-js/flag-2-off.js';
@@ -1012,6 +1019,7 @@ export { default as IconFountain } from './icons-js/fountain.js';
export { default as IconFrameOff } from './icons-js/frame-off.js';
export { default as IconFrame } from './icons-js/frame.js';
export { default as IconFreeRights } from './icons-js/free-rights.js';
+export { default as IconFridge } from './icons-js/fridge.js';
export { default as IconFriendsOff } from './icons-js/friends-off.js';
export { default as IconFriends } from './icons-js/friends.js';
export { default as IconGasStationOff } from './icons-js/gas-station-off.js';
@@ -1096,6 +1104,7 @@ export { default as IconHeading } from './icons-js/heading.js';
export { default as IconHeadphonesOff } from './icons-js/headphones-off.js';
export { default as IconHeadphones } from './icons-js/headphones.js';
export { default as IconHeadset } from './icons-js/headset.js';
+export { default as IconHealthRecognition } from './icons-js/health-recognition.js';
export { default as IconHeartBroken } from './icons-js/heart-broken.js';
export { default as IconHeartHandshake } from './icons-js/heart-handshake.js';
export { default as IconHeartMinus } from './icons-js/heart-minus.js';
@@ -1116,6 +1125,7 @@ export { default as IconHierarchy2 } from './icons-js/hierarchy-2.js';
export { default as IconHierarchy } from './icons-js/hierarchy.js';
export { default as IconHighlightOff } from './icons-js/highlight-off.js';
export { default as IconHighlight } from './icons-js/highlight.js';
+export { default as IconHistoryToggle } from './icons-js/history-toggle.js';
export { default as IconHistory } from './icons-js/history.js';
export { default as IconHome2 } from './icons-js/home-2.js';
export { default as IconHomeOff } from './icons-js/home-off.js';
@@ -1330,6 +1340,7 @@ export { default as IconMessageShare } from './icons-js/message-share.js';
export { default as IconMessage } from './icons-js/message.js';
export { default as IconMessagesOff } from './icons-js/messages-off.js';
export { default as IconMessages } from './icons-js/messages.js';
+export { default as IconMeteor } from './icons-js/meteor.js';
export { default as IconMicrophone2 } from './icons-js/microphone-2.js';
export { default as IconMicrophoneOff } from './icons-js/microphone-off.js';
export { default as IconMicrophone } from './icons-js/microphone.js';
@@ -1403,6 +1414,7 @@ export { default as IconNumber6 } from './icons-js/number-6.js';
export { default as IconNumber7 } from './icons-js/number-7.js';
export { default as IconNumber8 } from './icons-js/number-8.js';
export { default as IconNumber9 } from './icons-js/number-9.js';
+export { default as IconNumber } from './icons-js/number.js';
export { default as IconNumbers } from './icons-js/numbers.js';
export { default as IconNurse } from './icons-js/nurse.js';
export { default as IconOctagonOff } from './icons-js/octagon-off.js';
@@ -1620,7 +1632,9 @@ export { default as IconScaleOff } from './icons-js/scale-off.js';
export { default as IconScaleOutlineOff } from './icons-js/scale-outline-off.js';
export { default as IconScaleOutline } from './icons-js/scale-outline.js';
export { default as IconScale } from './icons-js/scale.js';
+export { default as IconScanEye } from './icons-js/scan-eye.js';
export { default as IconScan } from './icons-js/scan.js';
+export { default as IconSchema } from './icons-js/schema.js';
export { default as IconSchoolOff } from './icons-js/school-off.js';
export { default as IconSchool } from './icons-js/school.js';
export { default as IconScissorsOff } from './icons-js/scissors-off.js';
@@ -1629,6 +1643,7 @@ export { default as IconScooterElectric } from './icons-js/scooter-electric.js';
export { default as IconScooter } from './icons-js/scooter.js';
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 IconScubaMask } from './icons-js/scuba-mask.js';
export { default as IconSearchOff } from './icons-js/search-off.js';
@@ -1816,8 +1831,11 @@ 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 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';
+export { default as IconTextIncrease } from './icons-js/text-increase.js';
+export { default as IconTextRecognition } from './icons-js/text-recognition.js';
export { default as IconTextResize } from './icons-js/text-resize.js';
export { default as IconTextWrapDisabled } from './icons-js/text-wrap-disabled.js';
export { default as IconTextWrap } from './icons-js/text-wrap.js';