aboutsummaryrefslogtreecommitdiff
path: root/icons-react
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2021-12-09 00:40:08 +0100
committercodecalm <codecalm@gmail.com>2021-12-09 00:40:08 +0100
commitec3a208734552985feed6255c17053b2c6204c79 (patch)
tree1a7657d0e857885f5ade96f32aca8769c71abe39 /icons-react
parentFixed icons: `stack-2`, `stack` (diff)
downloadtabler-icons-ec3a208734552985feed6255c17053b2c6204c79.tar.xz
Release 1.47.0v1.47.0
Diffstat (limited to 'icons-react')
-rw-r--r--icons-react/icons-js/blur.js12
-rw-r--r--icons-react/icons-js/brand-nytimes.js12
-rw-r--r--icons-react/icons-js/cpu.js12
-rw-r--r--icons-react/icons-js/cross.js12
-rw-r--r--icons-react/icons-js/gavel.js12
-rw-r--r--icons-react/icons-js/hammer.js12
-rw-r--r--icons-react/icons-js/heartbeat.js12
-rw-r--r--icons-react/icons-js/hourglass.js12
-rw-r--r--icons-react/icons-js/layout-board-split.js12
-rw-r--r--icons-react/icons-js/layout-board.js12
-rw-r--r--icons-react/icons-js/mood-nervous.js12
-rw-r--r--icons-react/icons-js/mountain.js12
-rw-r--r--icons-react/icons-js/plane-inflight.js12
-rw-r--r--icons-react/icons-js/prescription.js12
-rw-r--r--icons-react/icons-js/shield-checkered.js12
-rw-r--r--icons-react/icons-js/shield-chevron.js12
-rw-r--r--icons-react/icons-js/sleigh.js12
-rw-r--r--icons-react/icons-js/stack-2.js2
-rw-r--r--icons-react/icons-js/stack-3.js12
-rw-r--r--icons-react/icons-js/stack.js2
-rw-r--r--icons-react/index.d.ts18
-rw-r--r--icons-react/index.js18
22 files changed, 254 insertions, 2 deletions
diff --git a/icons-react/icons-js/blur.js b/icons-react/icons-js/blur.js
new file mode 100644
index 00000000..85f6384c
--- /dev/null
+++ b/icons-react/icons-js/blur.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBlur({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-blur" 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 21a9.01 9.01 0 0 0 2.32 -.302a9.004 9.004 0 0 0 1.74 -16.733a9 9 0 1 0 -4.06 17.035z" /><path d="M12 3v17" /><path d="M12 12h9" /><path d="M12 9h8" /><path d="M12 6h6" /><path d="M12 18h6" /><path d="M12 15h8" /></svg>;
+}
+
+export default IconBlur; \ No newline at end of file
diff --git a/icons-react/icons-js/brand-nytimes.js b/icons-react/icons-js/brand-nytimes.js
new file mode 100644
index 00000000..94b50c10
--- /dev/null
+++ b/icons-react/icons-js/brand-nytimes.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBrandNytimes({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-brand-nytimes" 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.036 5.058a8.001 8.001 0 1 0 8.706 9.965" /><path d="M12 21v-11l-7.5 4" /><path d="M17.5 3a2.5 2.5 0 1 1 0 5l-11 -5a2.5 2.5 0 0 0 -.67 4.91" /><path d="M9 12v8" /><path d="M16 13h-.01" /></svg>;
+}
+
+export default IconBrandNytimes; \ No newline at end of file
diff --git a/icons-react/icons-js/cpu.js b/icons-react/icons-js/cpu.js
new file mode 100644
index 00000000..2c25e5bc
--- /dev/null
+++ b/icons-react/icons-js/cpu.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCpu({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-cpu" 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={5} width={14} height={14} rx={1} /><path d="M9 9h6v6h-6z" /><path d="M3 10h2" /><path d="M3 14h2" /><path d="M10 3v2" /><path d="M14 3v2" /><path d="M21 10h-2" /><path d="M21 14h-2" /><path d="M14 21v-2" /><path d="M10 21v-2" /></svg>;
+}
+
+export default IconCpu; \ No newline at end of file
diff --git a/icons-react/icons-js/cross.js b/icons-react/icons-js/cross.js
new file mode 100644
index 00000000..c8437262
--- /dev/null
+++ b/icons-react/icons-js/cross.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCross({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-cross" 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 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z" /></svg>;
+}
+
+export default IconCross; \ No newline at end of file
diff --git a/icons-react/icons-js/gavel.js b/icons-react/icons-js/gavel.js
new file mode 100644
index 00000000..5f94fc0d
--- /dev/null
+++ b/icons-react/icons-js/gavel.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconGavel({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-gavel" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385" /><path d="M6 9l4 4" /><path d="M13 10l-4 -4" /><path d="M3 21h7" /><path d="M6.793 15.793l-3.586 -3.586a1 1 0 0 1 0 -1.414l2.293 -2.293l.5 .5l3 -3l-.5 -.5l2.293 -2.293a1 1 0 0 1 1.414 0l3.586 3.586a1 1 0 0 1 0 1.414l-2.293 2.293l-.5 -.5l-3 3l.5 .5l-2.293 2.293a1 1 0 0 1 -1.414 0z" /></svg>;
+}
+
+export default IconGavel; \ No newline at end of file
diff --git a/icons-react/icons-js/hammer.js b/icons-react/icons-js/hammer.js
new file mode 100644
index 00000000..33b8a89b
--- /dev/null
+++ b/icons-react/icons-js/hammer.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconHammer({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-hammer" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385" /><path d="M6.293 15.293l-2.586 -2.586a1 1 0 0 1 0 -1.414l7.586 -7.586a1 1 0 0 1 1.414 0l2.586 2.586a1 1 0 0 1 0 1.414l-7.586 7.586a1 1 0 0 1 -1.414 0z" /></svg>;
+}
+
+export default IconHammer; \ No newline at end of file
diff --git a/icons-react/icons-js/heartbeat.js b/icons-react/icons-js/heartbeat.js
new file mode 100644
index 00000000..3c5a66aa
--- /dev/null
+++ b/icons-react/icons-js/heartbeat.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconHeartbeat({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-heartbeat" 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.5 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572" /><path d="M3 13h2l2 3l2 -6l1 3h3" /></svg>;
+}
+
+export default IconHeartbeat; \ No newline at end of file
diff --git a/icons-react/icons-js/hourglass.js b/icons-react/icons-js/hourglass.js
new file mode 100644
index 00000000..4d4a86bf
--- /dev/null
+++ b/icons-react/icons-js/hourglass.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconHourglass({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-hourglass" 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.5 7h11" /><path d="M6.5 17h11" /><path d="M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z" /><path d="M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z" /></svg>;
+}
+
+export default IconHourglass; \ No newline at end of file
diff --git a/icons-react/icons-js/layout-board-split.js b/icons-react/icons-js/layout-board-split.js
new file mode 100644
index 00000000..af3f7b7a
--- /dev/null
+++ b/icons-react/icons-js/layout-board-split.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconLayoutBoardSplit({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-layout-board-split" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><rect x={4} y={4} width={16} height={16} rx={2} /><path d="M4 12h8" /><path d="M12 15h8" /><path d="M12 9h8" /><path d="M12 4v16" /></svg>;
+}
+
+export default IconLayoutBoardSplit; \ No newline at end of file
diff --git a/icons-react/icons-js/layout-board.js b/icons-react/icons-js/layout-board.js
new file mode 100644
index 00000000..6230b89c
--- /dev/null
+++ b/icons-react/icons-js/layout-board.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconLayoutBoard({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-layout-board" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><rect x={4} y={4} width={16} height={16} rx={2} /><path d="M4 9h8" /><path d="M12 15h8" /><path d="M12 4v16" /></svg>;
+}
+
+export default IconLayoutBoard; \ No newline at end of file
diff --git a/icons-react/icons-js/mood-nervous.js b/icons-react/icons-js/mood-nervous.js
new file mode 100644
index 00000000..97e1c1fa
--- /dev/null
+++ b/icons-react/icons-js/mood-nervous.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconMoodNervous({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-mood-nervous" 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="M9 10h.01" /><path d="M15 10h.01" /><path d="M8 16l2 -2l2 2l2 -2l2 2" /></svg>;
+}
+
+export default IconMoodNervous; \ No newline at end of file
diff --git a/icons-react/icons-js/mountain.js b/icons-react/icons-js/mountain.js
new file mode 100644
index 00000000..51561454
--- /dev/null
+++ b/icons-react/icons-js/mountain.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconMountain({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-mountain" 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 20h18l-6.921 -14.612a2.3 2.3 0 0 0 -4.158 0l-6.921 14.612z" /><path d="M7.5 11l2 2.5l2.5 -2.5l2 3l2.5 -2" /></svg>;
+}
+
+export default IconMountain; \ No newline at end of file
diff --git a/icons-react/icons-js/plane-inflight.js b/icons-react/icons-js/plane-inflight.js
new file mode 100644
index 00000000..50d760cc
--- /dev/null
+++ b/icons-react/icons-js/plane-inflight.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconPlaneInflight({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-plane-inflight" 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 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7z" /><path d="M3 21h18" /></svg>;
+}
+
+export default IconPlaneInflight; \ No newline at end of file
diff --git a/icons-react/icons-js/prescription.js b/icons-react/icons-js/prescription.js
new file mode 100644
index 00000000..ee9c773a
--- /dev/null
+++ b/icons-react/icons-js/prescription.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconPrescription({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-prescription" 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 19v-16h4.5a4.5 4.5 0 1 1 0 9h-4.5" /><path d="M19 21l-9 -9" /><path d="M13 21l6 -6" /></svg>;
+}
+
+export default IconPrescription; \ No newline at end of file
diff --git a/icons-react/icons-js/shield-checkered.js b/icons-react/icons-js/shield-checkered.js
new file mode 100644
index 00000000..288382b1
--- /dev/null
+++ b/icons-react/icons-js/shield-checkered.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconShieldCheckered({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-shield-checkered" 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 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3" /><path d="M12 3v18" /><path d="M3.5 12h17" /></svg>;
+}
+
+export default IconShieldCheckered; \ No newline at end of file
diff --git a/icons-react/icons-js/shield-chevron.js b/icons-react/icons-js/shield-chevron.js
new file mode 100644
index 00000000..b85a05f7
--- /dev/null
+++ b/icons-react/icons-js/shield-chevron.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconShieldChevron({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-shield-chevron" 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 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3" /><path d="M4 14l8 -3l8 3" /></svg>;
+}
+
+export default IconShieldChevron; \ No newline at end of file
diff --git a/icons-react/icons-js/sleigh.js b/icons-react/icons-js/sleigh.js
new file mode 100644
index 00000000..e3f97d6b
--- /dev/null
+++ b/icons-react/icons-js/sleigh.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSleigh({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-sleigh" 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 19h15a4 4 0 0 0 4 -4" /><path d="M16 15h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3z" /><path d="M15 15v4" /><path d="M7 15v4" /></svg>;
+}
+
+export default IconSleigh; \ No newline at end of file
diff --git a/icons-react/icons-js/stack-2.js b/icons-react/icons-js/stack-2.js
index fcc71508..ee020fcd 100644
--- a/icons-react/icons-js/stack-2.js
+++ b/icons-react/icons-js/stack-2.js
@@ -6,7 +6,7 @@ function IconStack2({
stroke = 2,
...props
}) {
- return <svg className="icon icon-tabler icon-tabler-stack-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="M12 6l-8 4l8 4l8 -4l-8 -4" /><path d="M4 14l8 4l8 -4" /></svg>;
+ return <svg className="icon icon-tabler icon-tabler-stack-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" /><polyline points="12 4 4 8 12 12 20 8 12 4" /><polyline points="4 12 12 16 20 12" /><polyline points="4 16 12 20 20 16" /></svg>;
}
export default IconStack2; \ No newline at end of file
diff --git a/icons-react/icons-js/stack-3.js b/icons-react/icons-js/stack-3.js
new file mode 100644
index 00000000..47ba8ad8
--- /dev/null
+++ b/icons-react/icons-js/stack-3.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconStack3({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-stack-3" 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 2l-8 4l8 4l8 -4l-8 -4" /><path d="M4 10l8 4l8 -4" /><path d="M4 18l8 4l8 -4" /><path d="M4 14l8 4l8 -4" /></svg>;
+}
+
+export default IconStack3; \ No newline at end of file
diff --git a/icons-react/icons-js/stack.js b/icons-react/icons-js/stack.js
index d6c14dba..351695ec 100644
--- a/icons-react/icons-js/stack.js
+++ b/icons-react/icons-js/stack.js
@@ -6,7 +6,7 @@ function IconStack({
stroke = 2,
...props
}) {
- return <svg className="icon icon-tabler icon-tabler-stack" 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" /><polyline points="12 4 4 8 12 12 20 8 12 4" /><polyline points="4 12 12 16 20 12" /><polyline points="4 16 12 20 20 16" /></svg>;
+ return <svg className="icon icon-tabler icon-tabler-stack" 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 6l-8 4l8 4l8 -4l-8 -4" /><path d="M4 14l8 4l8 -4" /></svg>;
}
export default IconStack; \ No newline at end of file
diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts
index 0d19b125..34c33822 100644
--- a/icons-react/index.d.ts
+++ b/icons-react/index.d.ts
@@ -183,6 +183,7 @@ export const IconBlockquote: TablerIcon;
export const IconBluetoothConnected: TablerIcon;
export const IconBluetoothOff: TablerIcon;
export const IconBluetooth: TablerIcon;
+export const IconBlur: TablerIcon;
export const IconBold: TablerIcon;
export const IconBoltOff: TablerIcon;
export const IconBolt: TablerIcon;
@@ -278,6 +279,7 @@ export const IconBrandMessenger: TablerIcon;
export const IconBrandNetbeans: TablerIcon;
export const IconBrandNetflix: TablerIcon;
export const IconBrandNotion: TablerIcon;
+export const IconBrandNytimes: TablerIcon;
export const IconBrandOpenSource: TablerIcon;
export const IconBrandOpera: TablerIcon;
export const IconBrandPagekit: TablerIcon;
@@ -508,10 +510,12 @@ export const IconCornerUpLeftDouble: TablerIcon;
export const IconCornerUpLeft: TablerIcon;
export const IconCornerUpRightDouble: TablerIcon;
export const IconCornerUpRight: TablerIcon;
+export const IconCpu: TablerIcon;
export const IconCrane: TablerIcon;
export const IconCreditCardOff: TablerIcon;
export const IconCreditCard: TablerIcon;
export const IconCrop: TablerIcon;
+export const IconCross: TablerIcon;
export const IconCrosshair: TablerIcon;
export const IconCrownOff: TablerIcon;
export const IconCrown: TablerIcon;
@@ -713,6 +717,7 @@ export const IconFrame: TablerIcon;
export const IconFriends: TablerIcon;
export const IconGasStation: TablerIcon;
export const IconGauge: TablerIcon;
+export const IconGavel: TablerIcon;
export const IconGeometry: TablerIcon;
export const IconGhost: TablerIcon;
export const IconGift: TablerIcon;
@@ -740,6 +745,7 @@ export const IconH3: TablerIcon;
export const IconH4: TablerIcon;
export const IconH5: TablerIcon;
export const IconH6: TablerIcon;
+export const IconHammer: TablerIcon;
export const IconHandClick: TablerIcon;
export const IconHandFinger: TablerIcon;
export const IconHandLittleFinger: TablerIcon;
@@ -760,6 +766,7 @@ export const IconHeadset: TablerIcon;
export const IconHeartBroken: TablerIcon;
export const IconHeartRateMonitor: TablerIcon;
export const IconHeart: TablerIcon;
+export const IconHeartbeat: TablerIcon;
export const IconHelicopterLanding: TablerIcon;
export const IconHelicopter: TablerIcon;
export const IconHelp: TablerIcon;
@@ -772,6 +779,7 @@ export const IconHistory: TablerIcon;
export const IconHome2: TablerIcon;
export const IconHome: TablerIcon;
export const IconHotelService: TablerIcon;
+export const IconHourglass: TablerIcon;
export const IconIceCream2: TablerIcon;
export const IconIceCream: TablerIcon;
export const IconId: TablerIcon;
@@ -804,6 +812,8 @@ export const IconLayoutAlignLeft: TablerIcon;
export const IconLayoutAlignMiddle: TablerIcon;
export const IconLayoutAlignRight: TablerIcon;
export const IconLayoutAlignTop: TablerIcon;
+export const IconLayoutBoardSplit: TablerIcon;
+export const IconLayoutBoard: TablerIcon;
export const IconLayoutBottombar: TablerIcon;
export const IconLayoutCards: TablerIcon;
export const IconLayoutColumns: TablerIcon;
@@ -937,6 +947,7 @@ export const IconMoodCry: TablerIcon;
export const IconMoodEmpty: TablerIcon;
export const IconMoodHappy: TablerIcon;
export const IconMoodKid: TablerIcon;
+export const IconMoodNervous: TablerIcon;
export const IconMoodNeutral: TablerIcon;
export const IconMoodSad: TablerIcon;
export const IconMoodSmile: TablerIcon;
@@ -947,6 +958,7 @@ export const IconMoonStars: TablerIcon;
export const IconMoon: TablerIcon;
export const IconMoped: TablerIcon;
export const IconMotorbike: TablerIcon;
+export const IconMountain: TablerIcon;
export const IconMouse: TablerIcon;
export const IconMovie: TablerIcon;
export const IconMug: TablerIcon;
@@ -1023,6 +1035,7 @@ export const IconPinned: TablerIcon;
export const IconPizza: TablerIcon;
export const IconPlaneArrival: TablerIcon;
export const IconPlaneDeparture: TablerIcon;
+export const IconPlaneInflight: TablerIcon;
export const IconPlane: TablerIcon;
export const IconPlanet: TablerIcon;
export const IconPlant2: TablerIcon;
@@ -1045,6 +1058,7 @@ export const IconPolaroid: TablerIcon;
export const IconPool: TablerIcon;
export const IconPower: TablerIcon;
export const IconPray: TablerIcon;
+export const IconPrescription: TablerIcon;
export const IconPresentationAnalytics: TablerIcon;
export const IconPresentation: TablerIcon;
export const IconPrinter: TablerIcon;
@@ -1139,6 +1153,8 @@ export const IconShape3: TablerIcon;
export const IconShape: TablerIcon;
export const IconShare: TablerIcon;
export const IconShieldCheck: TablerIcon;
+export const IconShieldCheckered: TablerIcon;
+export const IconShieldChevron: TablerIcon;
export const IconShieldLock: TablerIcon;
export const IconShieldOff: TablerIcon;
export const IconShieldX: TablerIcon;
@@ -1154,6 +1170,7 @@ export const IconShredder: TablerIcon;
export const IconSignature: TablerIcon;
export const IconSitemap: TablerIcon;
export const IconSkateboard: TablerIcon;
+export const IconSleigh: TablerIcon;
export const IconSlice: TablerIcon;
export const IconSlideshow: TablerIcon;
export const IconSmartHome: TablerIcon;
@@ -1206,6 +1223,7 @@ export const IconSquare: TablerIcon;
export const IconSquaresDiagonal: TablerIcon;
export const IconSquaresFilled: TablerIcon;
export const IconStack2: TablerIcon;
+export const IconStack3: TablerIcon;
export const IconStack: TablerIcon;
export const IconStairsDown: TablerIcon;
export const IconStairsUp: TablerIcon;
diff --git a/icons-react/index.js b/icons-react/index.js
index b493a53e..a2220128 100644
--- a/icons-react/index.js
+++ b/icons-react/index.js
@@ -177,6 +177,7 @@ export { default as IconBlockquote } from './icons-js/blockquote.js';
export { default as IconBluetoothConnected } from './icons-js/bluetooth-connected.js';
export { default as IconBluetoothOff } from './icons-js/bluetooth-off.js';
export { default as IconBluetooth } from './icons-js/bluetooth.js';
+export { default as IconBlur } from './icons-js/blur.js';
export { default as IconBold } from './icons-js/bold.js';
export { default as IconBoltOff } from './icons-js/bolt-off.js';
export { default as IconBolt } from './icons-js/bolt.js';
@@ -272,6 +273,7 @@ export { default as IconBrandMessenger } from './icons-js/brand-messenger.js';
export { default as IconBrandNetbeans } from './icons-js/brand-netbeans.js';
export { default as IconBrandNetflix } from './icons-js/brand-netflix.js';
export { default as IconBrandNotion } from './icons-js/brand-notion.js';
+export { default as IconBrandNytimes } from './icons-js/brand-nytimes.js';
export { default as IconBrandOpenSource } from './icons-js/brand-open-source.js';
export { default as IconBrandOpera } from './icons-js/brand-opera.js';
export { default as IconBrandPagekit } from './icons-js/brand-pagekit.js';
@@ -502,10 +504,12 @@ export { default as IconCornerUpLeftDouble } from './icons-js/corner-up-left-dou
export { default as IconCornerUpLeft } from './icons-js/corner-up-left.js';
export { default as IconCornerUpRightDouble } from './icons-js/corner-up-right-double.js';
export { default as IconCornerUpRight } from './icons-js/corner-up-right.js';
+export { default as IconCpu } from './icons-js/cpu.js';
export { default as IconCrane } from './icons-js/crane.js';
export { default as IconCreditCardOff } from './icons-js/credit-card-off.js';
export { default as IconCreditCard } from './icons-js/credit-card.js';
export { default as IconCrop } from './icons-js/crop.js';
+export { default as IconCross } from './icons-js/cross.js';
export { default as IconCrosshair } from './icons-js/crosshair.js';
export { default as IconCrownOff } from './icons-js/crown-off.js';
export { default as IconCrown } from './icons-js/crown.js';
@@ -707,6 +711,7 @@ export { default as IconFrame } from './icons-js/frame.js';
export { default as IconFriends } from './icons-js/friends.js';
export { default as IconGasStation } from './icons-js/gas-station.js';
export { default as IconGauge } from './icons-js/gauge.js';
+export { default as IconGavel } from './icons-js/gavel.js';
export { default as IconGeometry } from './icons-js/geometry.js';
export { default as IconGhost } from './icons-js/ghost.js';
export { default as IconGift } from './icons-js/gift.js';
@@ -734,6 +739,7 @@ export { default as IconH3 } from './icons-js/h-3.js';
export { default as IconH4 } from './icons-js/h-4.js';
export { default as IconH5 } from './icons-js/h-5.js';
export { default as IconH6 } from './icons-js/h-6.js';
+export { default as IconHammer } from './icons-js/hammer.js';
export { default as IconHandClick } from './icons-js/hand-click.js';
export { default as IconHandFinger } from './icons-js/hand-finger.js';
export { default as IconHandLittleFinger } from './icons-js/hand-little-finger.js';
@@ -754,6 +760,7 @@ export { default as IconHeadset } from './icons-js/headset.js';
export { default as IconHeartBroken } from './icons-js/heart-broken.js';
export { default as IconHeartRateMonitor } from './icons-js/heart-rate-monitor.js';
export { default as IconHeart } from './icons-js/heart.js';
+export { default as IconHeartbeat } from './icons-js/heartbeat.js';
export { default as IconHelicopterLanding } from './icons-js/helicopter-landing.js';
export { default as IconHelicopter } from './icons-js/helicopter.js';
export { default as IconHelp } from './icons-js/help.js';
@@ -766,6 +773,7 @@ export { default as IconHistory } from './icons-js/history.js';
export { default as IconHome2 } from './icons-js/home-2.js';
export { default as IconHome } from './icons-js/home.js';
export { default as IconHotelService } from './icons-js/hotel-service.js';
+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 IconId } from './icons-js/id.js';
@@ -798,6 +806,8 @@ export { default as IconLayoutAlignLeft } from './icons-js/layout-align-left.js'
export { default as IconLayoutAlignMiddle } from './icons-js/layout-align-middle.js';
export { default as IconLayoutAlignRight } from './icons-js/layout-align-right.js';
export { default as IconLayoutAlignTop } from './icons-js/layout-align-top.js';
+export { default as IconLayoutBoardSplit } from './icons-js/layout-board-split.js';
+export { default as IconLayoutBoard } from './icons-js/layout-board.js';
export { default as IconLayoutBottombar } from './icons-js/layout-bottombar.js';
export { default as IconLayoutCards } from './icons-js/layout-cards.js';
export { default as IconLayoutColumns } from './icons-js/layout-columns.js';
@@ -931,6 +941,7 @@ export { default as IconMoodCry } from './icons-js/mood-cry.js';
export { default as IconMoodEmpty } from './icons-js/mood-empty.js';
export { default as IconMoodHappy } from './icons-js/mood-happy.js';
export { default as IconMoodKid } from './icons-js/mood-kid.js';
+export { default as IconMoodNervous } from './icons-js/mood-nervous.js';
export { default as IconMoodNeutral } from './icons-js/mood-neutral.js';
export { default as IconMoodSad } from './icons-js/mood-sad.js';
export { default as IconMoodSmile } from './icons-js/mood-smile.js';
@@ -941,6 +952,7 @@ export { default as IconMoonStars } from './icons-js/moon-stars.js';
export { default as IconMoon } from './icons-js/moon.js';
export { default as IconMoped } from './icons-js/moped.js';
export { default as IconMotorbike } from './icons-js/motorbike.js';
+export { default as IconMountain } from './icons-js/mountain.js';
export { default as IconMouse } from './icons-js/mouse.js';
export { default as IconMovie } from './icons-js/movie.js';
export { default as IconMug } from './icons-js/mug.js';
@@ -1017,6 +1029,7 @@ export { default as IconPinned } from './icons-js/pinned.js';
export { default as IconPizza } from './icons-js/pizza.js';
export { default as IconPlaneArrival } from './icons-js/plane-arrival.js';
export { default as IconPlaneDeparture } from './icons-js/plane-departure.js';
+export { default as IconPlaneInflight } from './icons-js/plane-inflight.js';
export { default as IconPlane } from './icons-js/plane.js';
export { default as IconPlanet } from './icons-js/planet.js';
export { default as IconPlant2 } from './icons-js/plant-2.js';
@@ -1039,6 +1052,7 @@ export { default as IconPolaroid } from './icons-js/polaroid.js';
export { default as IconPool } from './icons-js/pool.js';
export { default as IconPower } from './icons-js/power.js';
export { default as IconPray } from './icons-js/pray.js';
+export { default as IconPrescription } from './icons-js/prescription.js';
export { default as IconPresentationAnalytics } from './icons-js/presentation-analytics.js';
export { default as IconPresentation } from './icons-js/presentation.js';
export { default as IconPrinter } from './icons-js/printer.js';
@@ -1133,6 +1147,8 @@ export { default as IconShape3 } from './icons-js/shape-3.js';
export { default as IconShape } from './icons-js/shape.js';
export { default as IconShare } from './icons-js/share.js';
export { default as IconShieldCheck } from './icons-js/shield-check.js';
+export { default as IconShieldCheckered } from './icons-js/shield-checkered.js';
+export { default as IconShieldChevron } from './icons-js/shield-chevron.js';
export { default as IconShieldLock } from './icons-js/shield-lock.js';
export { default as IconShieldOff } from './icons-js/shield-off.js';
export { default as IconShieldX } from './icons-js/shield-x.js';
@@ -1148,6 +1164,7 @@ export { default as IconShredder } from './icons-js/shredder.js';
export { default as IconSignature } from './icons-js/signature.js';
export { default as IconSitemap } from './icons-js/sitemap.js';
export { default as IconSkateboard } from './icons-js/skateboard.js';
+export { default as IconSleigh } from './icons-js/sleigh.js';
export { default as IconSlice } from './icons-js/slice.js';
export { default as IconSlideshow } from './icons-js/slideshow.js';
export { default as IconSmartHome } from './icons-js/smart-home.js';
@@ -1200,6 +1217,7 @@ export { default as IconSquare } from './icons-js/square.js';
export { default as IconSquaresDiagonal } from './icons-js/squares-diagonal.js';
export { default as IconSquaresFilled } from './icons-js/squares-filled.js';
export { default as IconStack2 } from './icons-js/stack-2.js';
+export { default as IconStack3 } from './icons-js/stack-3.js';
export { default as IconStack } from './icons-js/stack.js';
export { default as IconStairsDown } from './icons-js/stairs-down.js';
export { default as IconStairsUp } from './icons-js/stairs-up.js';