aboutsummaryrefslogtreecommitdiff
path: root/icons-react
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2022-06-27 00:53:16 +0200
committercodecalm <codecalm@gmail.com>2022-06-27 00:53:16 +0200
commit965eb7bf8cd85f827bd69d6ceae240a56808143b (patch)
tree2662d7d56e1617adf99bb79de9c41abcbc07910c /icons-react
parentMerge remote-tracking branch 'origin/master' (diff)
downloadtabler-icons-965eb7bf8cd85f827bd69d6ceae240a56808143b.tar.xz
Release 1.72.0v1.72.0
Diffstat (limited to 'icons-react')
-rw-r--r--icons-react/icons-js/brand-comedy-central.js12
-rw-r--r--icons-react/icons-js/brand-finder.js12
-rw-r--r--icons-react/icons-js/brand-monday.js12
-rw-r--r--icons-react/icons-js/brand-xing.js12
-rw-r--r--icons-react/icons-js/cactus.js12
-rw-r--r--icons-react/icons-js/carrot.js12
-rw-r--r--icons-react/icons-js/chef-hat.js12
-rw-r--r--icons-react/icons-js/clover-2.js12
-rw-r--r--icons-react/icons-js/creative-commons-by.js12
-rw-r--r--icons-react/icons-js/creative-commons-nc.js12
-rw-r--r--icons-react/icons-js/creative-commons-nd.js12
-rw-r--r--icons-react/icons-js/creative-commons-sa.js12
-rw-r--r--icons-react/icons-js/creative-commons-zero.js12
-rw-r--r--icons-react/icons-js/device-mobile-charging.js12
-rw-r--r--icons-react/icons-js/function.js12
-rw-r--r--icons-react/icons-js/loader-2.js12
-rw-r--r--icons-react/icons-js/spy.js12
-rw-r--r--icons-react/icons-js/zzz.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/brand-comedy-central.js b/icons-react/icons-js/brand-comedy-central.js
new file mode 100644
index 00000000..34ec44f0
--- /dev/null
+++ b/icons-react/icons-js/brand-comedy-central.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBrandComedyCentral({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-comedy-central" 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.343 17.657a8 8 0 1 0 0 -11.314" /><path d="M13.828 9.172a4 4 0 1 0 0 5.656" /></svg>;
+}
+
+export default IconBrandComedyCentral; \ No newline at end of file
diff --git a/icons-react/icons-js/brand-finder.js b/icons-react/icons-js/brand-finder.js
new file mode 100644
index 00000000..11f163f9
--- /dev/null
+++ b/icons-react/icons-js/brand-finder.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBrandFinder({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-finder" 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={4} width={18} height={16} rx={1} /><path d="M7 8v1" /><path d="M17 8v1" /><path d="M12.5 4c-.654 1.486 -1.26 3.443 -1.5 9h2.5c-.19 2.867 .094 5.024 .5 7" /><path d="M7 15.5c3.667 2 6.333 2 10 0" /></svg>;
+}
+
+export default IconBrandFinder; \ No newline at end of file
diff --git a/icons-react/icons-js/brand-monday.js b/icons-react/icons-js/brand-monday.js
new file mode 100644
index 00000000..5f1286bc
--- /dev/null
+++ b/icons-react/icons-js/brand-monday.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBrandMonday({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-monday" 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 fill="#D8D8D8" cx={19.5} cy={15.5} r={1.5} /><path d="M9.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z" /><path d="M16.5 7a1.5 1.5 0 0 1 1.339 2.177l-4.034 7.074c-.264 .447 -.75 .749 -1.305 .749a1.5 1.5 0 0 1 -1.271 -2.297l3.906 -6.827a1.5 1.5 0 0 1 1.365 -.876z" /></svg>;
+}
+
+export default IconBrandMonday; \ No newline at end of file
diff --git a/icons-react/icons-js/brand-xing.js b/icons-react/icons-js/brand-xing.js
new file mode 100644
index 00000000..b93fd5f5
--- /dev/null
+++ b/icons-react/icons-js/brand-xing.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBrandXing({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-xing" 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 21l-4 -7l6.5 -11" /><path d="M7 7l2 3.5l-3 4.5" /></svg>;
+}
+
+export default IconBrandXing; \ No newline at end of file
diff --git a/icons-react/icons-js/cactus.js b/icons-react/icons-js/cactus.js
new file mode 100644
index 00000000..d21d884b
--- /dev/null
+++ b/icons-react/icons-js/cactus.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCactus({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cactus" 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 9v1a3 3 0 0 0 3 3h1" /><path d="M18 8v5a3 3 0 0 1 -3 3h-1" /><path d="M10 21v-16a2 2 0 1 1 4 0v16" /><path d="M7 21h10" /></svg>;
+}
+
+export default IconCactus; \ No newline at end of file
diff --git a/icons-react/icons-js/carrot.js b/icons-react/icons-js/carrot.js
new file mode 100644
index 00000000..9f8aa945
--- /dev/null
+++ b/icons-react/icons-js/carrot.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCarrot({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-carrot" 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 21s9.834 -3.489 12.684 -6.34a4.487 4.487 0 0 0 .005 -6.344a4.483 4.483 0 0 0 -6.342 -.005c-2.86 2.861 -6.347 12.689 -6.347 12.689z" /><path d="M9 13l-1.5 -1.5" /><path d="M16 14l-2 -2" /><path d="M22 8s-1.14 -2 -3 -2c-1.406 0 -3 2 -3 2s1.14 2 3 2s3 -2 3 -2z" /><path d="M16 2s-2 1.14 -2 3s2 3 2 3s2 -1.577 2 -3c0 -1.86 -2 -3 -2 -3z" /></svg>;
+}
+
+export default IconCarrot; \ No newline at end of file
diff --git a/icons-react/icons-js/chef-hat.js b/icons-react/icons-js/chef-hat.js
new file mode 100644
index 00000000..0b3d55b4
--- /dev/null
+++ b/icons-react/icons-js/chef-hat.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconChefHat({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-chef-hat" 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 3c1.918 0 3.52 1.35 3.91 3.151a4 4 0 0 1 2.09 7.723l0 7.126h-12v-7.126a4.002 4.002 0 1 1 2.092 -7.723a3.999 3.999 0 0 1 3.908 -3.151z" /><path d="M6.161 17.009l11.839 -.009" /></svg>;
+}
+
+export default IconChefHat; \ No newline at end of file
diff --git a/icons-react/icons-js/clover-2.js b/icons-react/icons-js/clover-2.js
new file mode 100644
index 00000000..b6d6d068
--- /dev/null
+++ b/icons-react/icons-js/clover-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconClover2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clover-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="M11 11l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z" /><path d="M11 11l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z" /><path d="M14.44 7.603a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0" /><path d="M7.56 7.603a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0" /><path d="M15 15l6 6" /></svg>;
+}
+
+export default IconClover2; \ No newline at end of file
diff --git a/icons-react/icons-js/creative-commons-by.js b/icons-react/icons-js/creative-commons-by.js
new file mode 100644
index 00000000..8e7967d1
--- /dev/null
+++ b/icons-react/icons-js/creative-commons-by.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCreativeCommonsBy({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-creative-commons-by" 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} /><circle cx={12} cy={7} r={1} /><path d="M9 13v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-.5l-.5 4h-2l-.5 -4h-.5a1 1 0 0 1 -1 -1z" /></svg>;
+}
+
+export default IconCreativeCommonsBy; \ No newline at end of file
diff --git a/icons-react/icons-js/creative-commons-nc.js b/icons-react/icons-js/creative-commons-nc.js
new file mode 100644
index 00000000..dc915f3e
--- /dev/null
+++ b/icons-react/icons-js/creative-commons-nc.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCreativeCommonsNc({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-creative-commons-nc" 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="M15 9h-4.5a1.5 1.5 0 0 0 0 3h3a1.5 1.5 0 0 1 0 3h-4.5" /><path d="M12 7v2" /><path d="M12 15v2" /><path d="M6 6l3 3" /><path d="M15 15l3 3" /></svg>;
+}
+
+export default IconCreativeCommonsNc; \ No newline at end of file
diff --git a/icons-react/icons-js/creative-commons-nd.js b/icons-react/icons-js/creative-commons-nd.js
new file mode 100644
index 00000000..3dcc130c
--- /dev/null
+++ b/icons-react/icons-js/creative-commons-nd.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCreativeCommonsNd({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-creative-commons-nd" 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 10h6" /><path d="M9 14h6" /></svg>;
+}
+
+export default IconCreativeCommonsNd; \ No newline at end of file
diff --git a/icons-react/icons-js/creative-commons-sa.js b/icons-react/icons-js/creative-commons-sa.js
new file mode 100644
index 00000000..8467601e
--- /dev/null
+++ b/icons-react/icons-js/creative-commons-sa.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCreativeCommonsSa({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-creative-commons-sa" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={9} /><path d="M12 16a4 4 0 1 0 -4 -4v1" /><path d="M6 12l2 2l2 -2" /></svg>;
+}
+
+export default IconCreativeCommonsSa; \ No newline at end of file
diff --git a/icons-react/icons-js/creative-commons-zero.js b/icons-react/icons-js/creative-commons-zero.js
new file mode 100644
index 00000000..f7cf1de6
--- /dev/null
+++ b/icons-react/icons-js/creative-commons-zero.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCreativeCommonsZero({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-creative-commons-zero" 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} /><ellipse cx={12} cy={12} rx={3} ry={4} /><path d="M14 9l-4 6" /></svg>;
+}
+
+export default IconCreativeCommonsZero; \ No newline at end of file
diff --git a/icons-react/icons-js/device-mobile-charging.js b/icons-react/icons-js/device-mobile-charging.js
new file mode 100644
index 00000000..170846c6
--- /dev/null
+++ b/icons-react/icons-js/device-mobile-charging.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconDeviceMobileCharging({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-device-mobile-charging" 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={6} y={3} width={12} height={18} rx={2} /><path d="M11 4h2" /><path d="M12 9.5l-1 2.5h2l-1 2.5" /></svg>;
+}
+
+export default IconDeviceMobileCharging; \ No newline at end of file
diff --git a/icons-react/icons-js/function.js b/icons-react/icons-js/function.js
new file mode 100644
index 00000000..c4505298
--- /dev/null
+++ b/icons-react/icons-js/function.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFunction({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-function" 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.667} /><path d="M9 15.5v.25c0 .69 .56 1.25 1.25 1.25c.71 0 1.304 -.538 1.374 -1.244l.752 -7.512a1.381 1.381 0 0 1 1.374 -1.244c.69 0 1.25 .56 1.25 1.25v.25" /><path d="M9 12h6" /></svg>;
+}
+
+export default IconFunction; \ No newline at end of file
diff --git a/icons-react/icons-js/loader-2.js b/icons-react/icons-js/loader-2.js
new file mode 100644
index 00000000..462e4069
--- /dev/null
+++ b/icons-react/icons-js/loader-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconLoader2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-loader-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 3a9 9 0 1 0 9 9" /></svg>;
+}
+
+export default IconLoader2; \ No newline at end of file
diff --git a/icons-react/icons-js/spy.js b/icons-react/icons-js/spy.js
new file mode 100644
index 00000000..5924e132
--- /dev/null
+++ b/icons-react/icons-js/spy.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSpy({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-spy" 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 11h18" /><path d="M5 11v-4a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v4" /><circle cx={7} cy={17} r={3} /><circle cx={17} cy={17} r={3} /><path d="M10 17h4" /></svg>;
+}
+
+export default IconSpy; \ No newline at end of file
diff --git a/icons-react/icons-js/zzz.js b/icons-react/icons-js/zzz.js
new file mode 100644
index 00000000..0079cfc5
--- /dev/null
+++ b/icons-react/icons-js/zzz.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconZzz({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-zzz" 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 12h6l-6 8h6" /><path d="M14 4h6l-6 8h6" /></svg>;
+}
+
+export default IconZzz; \ No newline at end of file
diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts
index 6266c430..3d917d0a 100644
--- a/icons-react/index.d.ts
+++ b/icons-react/index.d.ts
@@ -366,6 +366,7 @@ export const IconBrandChrome: TablerIcon;
export const IconBrandCodepen: TablerIcon;
export const IconBrandCodesandbox: TablerIcon;
export const IconBrandCoinbase: TablerIcon;
+export const IconBrandComedyCentral: TablerIcon;
export const IconBrandCss3: TablerIcon;
export const IconBrandCucumber: TablerIcon;
export const IconBrandDebian: TablerIcon;
@@ -379,6 +380,7 @@ export const IconBrandDribbble: TablerIcon;
export const IconBrandEdge: TablerIcon;
export const IconBrandFacebook: TablerIcon;
export const IconBrandFigma: TablerIcon;
+export const IconBrandFinder: TablerIcon;
export const IconBrandFirebase: TablerIcon;
export const IconBrandFirefox: TablerIcon;
export const IconBrandFlickr: TablerIcon;
@@ -412,6 +414,7 @@ export const IconBrandMedium: TablerIcon;
export const IconBrandMercedes: TablerIcon;
export const IconBrandMessenger: TablerIcon;
export const IconBrandMeta: TablerIcon;
+export const IconBrandMonday: TablerIcon;
export const IconBrandNetbeans: TablerIcon;
export const IconBrandNetflix: TablerIcon;
export const IconBrandNextjs: TablerIcon;
@@ -470,6 +473,7 @@ export const IconBrandWalmart: TablerIcon;
export const IconBrandWhatsapp: TablerIcon;
export const IconBrandWindows: TablerIcon;
export const IconBrandWish: TablerIcon;
+export const IconBrandXing: TablerIcon;
export const IconBrandYahoo: TablerIcon;
export const IconBrandYatse: TablerIcon;
export const IconBrandYcombinator: TablerIcon;
@@ -524,6 +528,7 @@ export const IconBus: TablerIcon;
export const IconBusinessplan: TablerIcon;
export const IconButterfly: TablerIcon;
export const IconCSharp: TablerIcon;
+export const IconCactus: TablerIcon;
export const IconCakeOff: TablerIcon;
export const IconCake: TablerIcon;
export const IconCalculatorOff: TablerIcon;
@@ -557,6 +562,7 @@ export const IconCaretDown: TablerIcon;
export const IconCaretLeft: TablerIcon;
export const IconCaretRight: TablerIcon;
export const IconCaretUp: TablerIcon;
+export const IconCarrot: TablerIcon;
export const IconCashBanknoteOff: TablerIcon;
export const IconCashBanknote: TablerIcon;
export const IconCashOff: TablerIcon;
@@ -609,6 +615,7 @@ export const IconChecklist: TablerIcon;
export const IconChecks: TablerIcon;
export const IconCheckupList: TablerIcon;
export const IconCheese: TablerIcon;
+export const IconChefHat: TablerIcon;
export const IconChevronDownLeft: TablerIcon;
export const IconChevronDownRight: TablerIcon;
export const IconChevronDown: TablerIcon;
@@ -678,6 +685,7 @@ export const IconCloudSnow: TablerIcon;
export const IconCloudStorm: TablerIcon;
export const IconCloudUpload: TablerIcon;
export const IconCloud: TablerIcon;
+export const IconClover2: TablerIcon;
export const IconClover: TablerIcon;
export const IconClubs: TablerIcon;
export const IconCodeMinus: TablerIcon;
@@ -738,7 +746,12 @@ export const IconCpuOff: TablerIcon;
export const IconCpu: TablerIcon;
export const IconCraneOff: TablerIcon;
export const IconCrane: TablerIcon;
+export const IconCreativeCommonsBy: TablerIcon;
+export const IconCreativeCommonsNc: TablerIcon;
+export const IconCreativeCommonsNd: TablerIcon;
export const IconCreativeCommonsOff: TablerIcon;
+export const IconCreativeCommonsSa: TablerIcon;
+export const IconCreativeCommonsZero: TablerIcon;
export const IconCreativeCommons: TablerIcon;
export const IconCreditCardOff: TablerIcon;
export const IconCreditCard: TablerIcon;
@@ -818,6 +831,7 @@ export const IconDeviceGamepad: TablerIcon;
export const IconDeviceHeartMonitor: TablerIcon;
export const IconDeviceLaptopOff: TablerIcon;
export const IconDeviceLaptop: TablerIcon;
+export const IconDeviceMobileCharging: TablerIcon;
export const IconDeviceMobileMessage: TablerIcon;
export const IconDeviceMobileOff: TablerIcon;
export const IconDeviceMobileRotated: TablerIcon;
@@ -1046,6 +1060,7 @@ export const IconFreeRights: TablerIcon;
export const IconFridge: TablerIcon;
export const IconFriendsOff: TablerIcon;
export const IconFriends: TablerIcon;
+export const IconFunction: TablerIcon;
export const IconGasStationOff: TablerIcon;
export const IconGasStation: TablerIcon;
export const IconGaugeOff: TablerIcon;
@@ -1287,6 +1302,7 @@ export const IconListSearch: TablerIcon;
export const IconList: TablerIcon;
export const IconLivePhoto: TablerIcon;
export const IconLiveView: TablerIcon;
+export const IconLoader2: TablerIcon;
export const IconLoaderQuarter: TablerIcon;
export const IconLoader: TablerIcon;
export const IconLocationOff: TablerIcon;
@@ -1757,6 +1773,7 @@ export const IconSpade: TablerIcon;
export const IconSpeakerphone: TablerIcon;
export const IconSpeedboat: TablerIcon;
export const IconSportBillard: TablerIcon;
+export const IconSpy: TablerIcon;
export const IconSquare0: TablerIcon;
export const IconSquare1: TablerIcon;
export const IconSquare2: TablerIcon;
@@ -2038,3 +2055,4 @@ export const IconZoomOutArea: TablerIcon;
export const IconZoomOut: TablerIcon;
export const IconZoomPan: TablerIcon;
export const IconZoomQuestion: TablerIcon;
+export const IconZzz: TablerIcon;
diff --git a/icons-react/index.js b/icons-react/index.js
index 773fb94a..f5242e96 100644
--- a/icons-react/index.js
+++ b/icons-react/index.js
@@ -360,6 +360,7 @@ export { default as IconBrandChrome } from './icons-js/brand-chrome.js';
export { default as IconBrandCodepen } from './icons-js/brand-codepen.js';
export { default as IconBrandCodesandbox } from './icons-js/brand-codesandbox.js';
export { default as IconBrandCoinbase } from './icons-js/brand-coinbase.js';
+export { default as IconBrandComedyCentral } from './icons-js/brand-comedy-central.js';
export { default as IconBrandCss3 } from './icons-js/brand-css3.js';
export { default as IconBrandCucumber } from './icons-js/brand-cucumber.js';
export { default as IconBrandDebian } from './icons-js/brand-debian.js';
@@ -373,6 +374,7 @@ export { default as IconBrandDribbble } from './icons-js/brand-dribbble.js';
export { default as IconBrandEdge } from './icons-js/brand-edge.js';
export { default as IconBrandFacebook } from './icons-js/brand-facebook.js';
export { default as IconBrandFigma } from './icons-js/brand-figma.js';
+export { default as IconBrandFinder } from './icons-js/brand-finder.js';
export { default as IconBrandFirebase } from './icons-js/brand-firebase.js';
export { default as IconBrandFirefox } from './icons-js/brand-firefox.js';
export { default as IconBrandFlickr } from './icons-js/brand-flickr.js';
@@ -406,6 +408,7 @@ export { default as IconBrandMedium } from './icons-js/brand-medium.js';
export { default as IconBrandMercedes } from './icons-js/brand-mercedes.js';
export { default as IconBrandMessenger } from './icons-js/brand-messenger.js';
export { default as IconBrandMeta } from './icons-js/brand-meta.js';
+export { default as IconBrandMonday } from './icons-js/brand-monday.js';
export { default as IconBrandNetbeans } from './icons-js/brand-netbeans.js';
export { default as IconBrandNetflix } from './icons-js/brand-netflix.js';
export { default as IconBrandNextjs } from './icons-js/brand-nextjs.js';
@@ -464,6 +467,7 @@ export { default as IconBrandWalmart } from './icons-js/brand-walmart.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 IconBrandXing } from './icons-js/brand-xing.js';
export { default as IconBrandYahoo } from './icons-js/brand-yahoo.js';
export { default as IconBrandYatse } from './icons-js/brand-yatse.js';
export { default as IconBrandYcombinator } from './icons-js/brand-ycombinator.js';
@@ -518,6 +522,7 @@ 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';
export { default as IconCSharp } from './icons-js/c-sharp.js';
+export { default as IconCactus } from './icons-js/cactus.js';
export { default as IconCakeOff } from './icons-js/cake-off.js';
export { default as IconCake } from './icons-js/cake.js';
export { default as IconCalculatorOff } from './icons-js/calculator-off.js';
@@ -551,6 +556,7 @@ export { default as IconCaretDown } from './icons-js/caret-down.js';
export { default as IconCaretLeft } from './icons-js/caret-left.js';
export { default as IconCaretRight } from './icons-js/caret-right.js';
export { default as IconCaretUp } from './icons-js/caret-up.js';
+export { default as IconCarrot } from './icons-js/carrot.js';
export { default as IconCashBanknoteOff } from './icons-js/cash-banknote-off.js';
export { default as IconCashBanknote } from './icons-js/cash-banknote.js';
export { default as IconCashOff } from './icons-js/cash-off.js';
@@ -603,6 +609,7 @@ export { default as IconChecklist } from './icons-js/checklist.js';
export { default as IconChecks } from './icons-js/checks.js';
export { default as IconCheckupList } from './icons-js/checkup-list.js';
export { default as IconCheese } from './icons-js/cheese.js';
+export { default as IconChefHat } from './icons-js/chef-hat.js';
export { default as IconChevronDownLeft } from './icons-js/chevron-down-left.js';
export { default as IconChevronDownRight } from './icons-js/chevron-down-right.js';
export { default as IconChevronDown } from './icons-js/chevron-down.js';
@@ -672,6 +679,7 @@ export { default as IconCloudSnow } from './icons-js/cloud-snow.js';
export { default as IconCloudStorm } from './icons-js/cloud-storm.js';
export { default as IconCloudUpload } from './icons-js/cloud-upload.js';
export { default as IconCloud } from './icons-js/cloud.js';
+export { default as IconClover2 } from './icons-js/clover-2.js';
export { default as IconClover } from './icons-js/clover.js';
export { default as IconClubs } from './icons-js/clubs.js';
export { default as IconCodeMinus } from './icons-js/code-minus.js';
@@ -732,7 +740,12 @@ export { default as IconCpuOff } from './icons-js/cpu-off.js';
export { default as IconCpu } from './icons-js/cpu.js';
export { default as IconCraneOff } from './icons-js/crane-off.js';
export { default as IconCrane } from './icons-js/crane.js';
+export { default as IconCreativeCommonsBy } from './icons-js/creative-commons-by.js';
+export { default as IconCreativeCommonsNc } from './icons-js/creative-commons-nc.js';
+export { default as IconCreativeCommonsNd } from './icons-js/creative-commons-nd.js';
export { default as IconCreativeCommonsOff } from './icons-js/creative-commons-off.js';
+export { default as IconCreativeCommonsSa } from './icons-js/creative-commons-sa.js';
+export { default as IconCreativeCommonsZero } from './icons-js/creative-commons-zero.js';
export { default as IconCreativeCommons } from './icons-js/creative-commons.js';
export { default as IconCreditCardOff } from './icons-js/credit-card-off.js';
export { default as IconCreditCard } from './icons-js/credit-card.js';
@@ -812,6 +825,7 @@ export { default as IconDeviceGamepad } from './icons-js/device-gamepad.js';
export { default as IconDeviceHeartMonitor } from './icons-js/device-heart-monitor.js';
export { default as IconDeviceLaptopOff } from './icons-js/device-laptop-off.js';
export { default as IconDeviceLaptop } from './icons-js/device-laptop.js';
+export { default as IconDeviceMobileCharging } from './icons-js/device-mobile-charging.js';
export { default as IconDeviceMobileMessage } from './icons-js/device-mobile-message.js';
export { default as IconDeviceMobileOff } from './icons-js/device-mobile-off.js';
export { default as IconDeviceMobileRotated } from './icons-js/device-mobile-rotated.js';
@@ -1040,6 +1054,7 @@ 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 IconFunction } from './icons-js/function.js';
export { default as IconGasStationOff } from './icons-js/gas-station-off.js';
export { default as IconGasStation } from './icons-js/gas-station.js';
export { default as IconGaugeOff } from './icons-js/gauge-off.js';
@@ -1281,6 +1296,7 @@ export { default as IconListSearch } from './icons-js/list-search.js';
export { default as IconList } from './icons-js/list.js';
export { default as IconLivePhoto } from './icons-js/live-photo.js';
export { default as IconLiveView } from './icons-js/live-view.js';
+export { default as IconLoader2 } from './icons-js/loader-2.js';
export { default as IconLoaderQuarter } from './icons-js/loader-quarter.js';
export { default as IconLoader } from './icons-js/loader.js';
export { default as IconLocationOff } from './icons-js/location-off.js';
@@ -1751,6 +1767,7 @@ export { default as IconSpade } from './icons-js/spade.js';
export { default as IconSpeakerphone } from './icons-js/speakerphone.js';
export { default as IconSpeedboat } from './icons-js/speedboat.js';
export { default as IconSportBillard } from './icons-js/sport-billard.js';
+export { default as IconSpy } from './icons-js/spy.js';
export { default as IconSquare0 } from './icons-js/square-0.js';
export { default as IconSquare1 } from './icons-js/square-1.js';
export { default as IconSquare2 } from './icons-js/square-2.js';
@@ -2032,3 +2049,4 @@ export { default as IconZoomOutArea } from './icons-js/zoom-out-area.js';
export { default as IconZoomOut } from './icons-js/zoom-out.js';
export { default as IconZoomPan } from './icons-js/zoom-pan.js';
export { default as IconZoomQuestion } from './icons-js/zoom-question.js';
+export { default as IconZzz } from './icons-js/zzz.js';