aboutsummaryrefslogtreecommitdiff
path: root/icons-react
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2021-12-27 12:14:41 +0100
committercodecalm <codecalm@gmail.com>2021-12-27 12:14:41 +0100
commit825e9d1e353b3b0d680728ed7486da35cab8609c (patch)
tree9203fb35d4cf8d7cd2e7bc38e1c6f6a0ba4f458b /icons-react
parentremove `yarn.lock` (diff)
downloadtabler-icons-825e9d1e353b3b0d680728ed7486da35cab8609c.tar.xz
Release 1.50.0v1.50.0
Diffstat (limited to 'icons-react')
-rw-r--r--icons-react/icons-js/badge.js12
-rw-r--r--icons-react/icons-js/badges.js12
-rw-r--r--icons-react/icons-js/ball-baseball.js2
-rw-r--r--icons-react/icons-js/bible.js12
-rw-r--r--icons-react/icons-js/book-2.js12
-rw-r--r--icons-react/icons-js/candle.js12
-rw-r--r--icons-react/icons-js/contrast-2.js12
-rw-r--r--icons-react/icons-js/curling.js12
-rw-r--r--icons-react/icons-js/grid-pattern.js12
-rw-r--r--icons-react/icons-js/helmet.js12
-rw-r--r--icons-react/icons-js/ice-skating.js12
-rw-r--r--icons-react/icons-js/lollipop.js12
-rw-r--r--icons-react/icons-js/medal-2.js12
-rw-r--r--icons-react/icons-js/miliraty-award.js12
-rw-r--r--icons-react/icons-js/military-rank.js12
-rw-r--r--icons-react/icons-js/polygon.js12
-rw-r--r--icons-react/icons-js/roller-skating.js12
-rw-r--r--icons-react/icons-js/shoe.js12
-rw-r--r--icons-react/icons-js/toilet-paper.js12
-rw-r--r--icons-react/index.d.ts18
-rw-r--r--icons-react/index.js18
21 files changed, 253 insertions, 1 deletions
diff --git a/icons-react/icons-js/badge.js b/icons-react/icons-js/badge.js
new file mode 100644
index 00000000..3ce08b90
--- /dev/null
+++ b/icons-react/icons-js/badge.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBadge({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-badge" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M17 17v-13l-5 3l-5 -3v13l5 3z" /></svg>;
+}
+
+export default IconBadge; \ No newline at end of file
diff --git a/icons-react/icons-js/badges.js b/icons-react/icons-js/badges.js
new file mode 100644
index 00000000..fbb6c453
--- /dev/null
+++ b/icons-react/icons-js/badges.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBadges({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-badges" 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 17v-4l-5 3l-5 -3v4l5 3z" /><path d="M17 8v-4l-5 3l-5 -3v4l5 3z" /></svg>;
+}
+
+export default IconBadges; \ No newline at end of file
diff --git a/icons-react/icons-js/ball-baseball.js b/icons-react/icons-js/ball-baseball.js
index 3fc96636..954451f0 100644
--- a/icons-react/icons-js/ball-baseball.js
+++ b/icons-react/icons-js/ball-baseball.js
@@ -6,7 +6,7 @@ function IconBallBaseball({
stroke = 2,
...props
}) {
- return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ball-baseball" 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.636 18.364a9 9 0 1 0 12.728 -12.728a9 9 0 0 0 -12.728 12.728z" /><path d="M12.495 3.02a9 9 0 0 1 -9.475 9.475" /><path d="M20.98 11.505a9 9 0 0 0 -9.475 9.475" /></svg>;
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ball-baseball" 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.636 18.364a9 9 0 1 0 12.728 -12.728a9 9 0 0 0 -12.728 12.728z" /><path d="M12.495 3.02a9 9 0 0 1 -9.475 9.475" /><path d="M20.98 11.505a9 9 0 0 0 -9.475 9.475" /><path d="M9 9l2 2" /><path d="M13 13l2 2" /><path d="M11 7l2 1" /><path d="M7 11l1 2" /><path d="M16 11l1 2" /><path d="M11 16l2 1" /></svg>;
}
export default IconBallBaseball; \ No newline at end of file
diff --git a/icons-react/icons-js/bible.js b/icons-react/icons-js/bible.js
new file mode 100644
index 00000000..3722eaec
--- /dev/null
+++ b/icons-react/icons-js/bible.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBible({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-bible" 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 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z" /><path d="M19 16h-12a2 2 0 0 0 -2 2" /><path d="M12 7v6" /><path d="M10 9h4" /></svg>;
+}
+
+export default IconBible; \ No newline at end of file
diff --git a/icons-react/icons-js/book-2.js b/icons-react/icons-js/book-2.js
new file mode 100644
index 00000000..970a6bfd
--- /dev/null
+++ b/icons-react/icons-js/book-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBook2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-book-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="M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z" /><path d="M19 16h-12a2 2 0 0 0 -2 2" /><path d="M9 8h6" /></svg>;
+}
+
+export default IconBook2; \ No newline at end of file
diff --git a/icons-react/icons-js/candle.js b/icons-react/icons-js/candle.js
new file mode 100644
index 00000000..f51f41bc
--- /dev/null
+++ b/icons-react/icons-js/candle.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCandle({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-candle" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M9 21h6v-9a1 1 0 0 0 -1 -1h-4a1 1 0 0 0 -1 1v9z" /><path d="M12 3l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z" /></svg>;
+}
+
+export default IconCandle; \ No newline at end of file
diff --git a/icons-react/icons-js/contrast-2.js b/icons-react/icons-js/contrast-2.js
new file mode 100644
index 00000000..222ae671
--- /dev/null
+++ b/icons-react/icons-js/contrast-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconContrast2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-contrast-2" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><rect x={4} y={4} width={16} height={16} rx={2} /><path d="M4 18h2a6 6 0 0 0 6 -6a6 6 0 0 1 6 -6h2" /></svg>;
+}
+
+export default IconContrast2; \ No newline at end of file
diff --git a/icons-react/icons-js/curling.js b/icons-react/icons-js/curling.js
new file mode 100644
index 00000000..f0a46fa2
--- /dev/null
+++ b/icons-react/icons-js/curling.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCurling({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-curling" 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={9} width={16} height={10} rx={4} /><path d="M4 14h16" /><path d="M8 5h6a2 2 0 0 1 2 2v2" /></svg>;
+}
+
+export default IconCurling; \ No newline at end of file
diff --git a/icons-react/icons-js/grid-pattern.js b/icons-react/icons-js/grid-pattern.js
new file mode 100644
index 00000000..939ddd35
--- /dev/null
+++ b/icons-react/icons-js/grid-pattern.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconGridPattern({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-grid-pattern" 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="M10 8v8" /><path d="M14 8v8" /><path d="M8 10h8" /><path d="M8 14h8" /></svg>;
+}
+
+export default IconGridPattern; \ No newline at end of file
diff --git a/icons-react/icons-js/helmet.js b/icons-react/icons-js/helmet.js
new file mode 100644
index 00000000..7d46aed3
--- /dev/null
+++ b/icons-react/icons-js/helmet.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconHelmet({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-helmet" 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 4a9 9 0 0 1 5.656 16h-11.312a9 9 0 0 1 5.656 -16z" /><path d="M20 9h-8.8a1 1 0 0 0 -.968 1.246c.507 2 1.596 3.418 3.268 4.254c2 1 4.333 1.5 7 1.5" /></svg>;
+}
+
+export default IconHelmet; \ No newline at end of file
diff --git a/icons-react/icons-js/ice-skating.js b/icons-react/icons-js/ice-skating.js
new file mode 100644
index 00000000..7fec866f
--- /dev/null
+++ b/icons-react/icons-js/ice-skating.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconIceSkating({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ice-skating" 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.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -.995 -1.1l.8 -8a1 1 0 0 1 .995 -.9z" /><path d="M3 19h17a1 1 0 0 0 1 -1" /><path d="M9 15v4" /><path d="M15 15v4" /></svg>;
+}
+
+export default IconIceSkating; \ No newline at end of file
diff --git a/icons-react/icons-js/lollipop.js b/icons-react/icons-js/lollipop.js
new file mode 100644
index 00000000..fb463e69
--- /dev/null
+++ b/icons-react/icons-js/lollipop.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconLollipop({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-lollipop" 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={14} cy={10} r={7} /><path d="M21 10a3.5 3.5 0 0 0 -7 0" /><path d="M14 10a3.5 3.5 0 0 1 -7 0" /><path d="M14 17a3.5 3.5 0 0 0 0 -7" /><path d="M14 3a3.5 3.5 0 0 0 0 7" /><path d="M3 21l6 -6" /></svg>;
+}
+
+export default IconLollipop; \ No newline at end of file
diff --git a/icons-react/icons-js/medal-2.js b/icons-react/icons-js/medal-2.js
new file mode 100644
index 00000000..19073017
--- /dev/null
+++ b/icons-react/icons-js/medal-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconMedal2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-medal-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="M9 3h6l3 7l-6 2l-6 -2z" /><path d="M12 12l-3 -9" /><path d="M15 11l-3 -8" /><path d="M12 19.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z" /></svg>;
+}
+
+export default IconMedal2; \ No newline at end of file
diff --git a/icons-react/icons-js/miliraty-award.js b/icons-react/icons-js/miliraty-award.js
new file mode 100644
index 00000000..c79f6bbe
--- /dev/null
+++ b/icons-react/icons-js/miliraty-award.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconMiliratyAward({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-miliraty-award" 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={13} r={4} /><path d="M9 10l-1 -2h-5l2.48 5.788a2 2 0 0 0 1.84 1.212h1.18" /><path d="M15 10l1 -2h5l-2.48 5.788a2 2 0 0 1 -1.84 1.212h-1.18" /></svg>;
+}
+
+export default IconMiliratyAward; \ No newline at end of file
diff --git a/icons-react/icons-js/military-rank.js b/icons-react/icons-js/military-rank.js
new file mode 100644
index 00000000..1a1590f9
--- /dev/null
+++ b/icons-react/icons-js/military-rank.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconMilitaryRank({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-military-rank" 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 7v13h-10v-13l5 -3z" /><path d="M10 13l2 -1l2 1" /><path d="M10 17l2 -1l2 1" /><path d="M10 9l2 -1l2 1" /></svg>;
+}
+
+export default IconMilitaryRank; \ No newline at end of file
diff --git a/icons-react/icons-js/polygon.js b/icons-react/icons-js/polygon.js
new file mode 100644
index 00000000..8d8c1236
--- /dev/null
+++ b/icons-react/icons-js/polygon.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconPolygon({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-polygon" 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={5} r={2} /><circle cx={19} cy={8} r={2} /><circle cx={5} cy={11} r={2} /><circle cx={15} cy={19} r={2} /><path d="M6.5 9.5l3.5 -3" /><path d="M14 5.5l3 1.5" /><path d="M18.5 10l-2.5 7" /><path d="M13.5 17.5l-7 -5" /></svg>;
+}
+
+export default IconPolygon; \ No newline at end of file
diff --git a/icons-react/icons-js/roller-skating.js b/icons-react/icons-js/roller-skating.js
new file mode 100644
index 00000000..ac3816fa
--- /dev/null
+++ b/icons-react/icons-js/roller-skating.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconRollerSkating({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-roller-skating" 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.905 5h3.418a1 1 0 0 1 .928 .629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717 .926a2.084 2.084 0 0 1 1.682 2.045v.714a1 1 0 0 1 -1 1h-13.895a1 1 0 0 1 -.995 -1.1l.8 -8a1 1 0 0 1 .995 -.9z" /><circle cx={8} cy={17} r={2} /><circle cx={16} cy={17} r={2} /></svg>;
+}
+
+export default IconRollerSkating; \ No newline at end of file
diff --git a/icons-react/icons-js/shoe.js b/icons-react/icons-js/shoe.js
new file mode 100644
index 00000000..6b057774
--- /dev/null
+++ b/icons-react/icons-js/shoe.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconShoe({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-shoe" 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 6h5.426a1 1 0 0 1 .863 .496l1.064 1.823a3 3 0 0 0 1.896 1.407l4.677 1.114a4 4 0 0 1 3.074 3.89v2.27a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1z" /><path d="M14 13l1 -2" /><path d="M8 18v-1a4 4 0 0 0 -4 -4h-1" /><path d="M10 12l1.5 -3" /></svg>;
+}
+
+export default IconShoe; \ No newline at end of file
diff --git a/icons-react/icons-js/toilet-paper.js b/icons-react/icons-js/toilet-paper.js
new file mode 100644
index 00000000..63227ecc
--- /dev/null
+++ b/icons-react/icons-js/toilet-paper.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconToiletPaper({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-toilet-paper" 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" /><ellipse cx={6} cy={10} rx={3} ry={7} /><path d="M21 10c0 -3.866 -1.343 -7 -3 -7" /><path d="M6 3h12" /><path d="M21 10v10l-3 -1l-3 2l-3 -3l-3 2v-10" /><path d="M6 10h.01" /></svg>;
+}
+
+export default IconToiletPaper; \ No newline at end of file
diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts
index 350d9bae..6441288d 100644
--- a/icons-react/index.d.ts
+++ b/icons-react/index.d.ts
@@ -146,6 +146,8 @@ export const IconAxisY: TablerIcon;
export const IconBackhoe: TablerIcon;
export const IconBackpack: TablerIcon;
export const IconBackspace: TablerIcon;
+export const IconBadge: TablerIcon;
+export const IconBadges: TablerIcon;
export const IconBallAmericanFootball: TablerIcon;
export const IconBallBaseball: TablerIcon;
export const IconBallBasketball: TablerIcon;
@@ -180,6 +182,7 @@ export const IconBellRinging2: TablerIcon;
export const IconBellRinging: TablerIcon;
export const IconBellX: TablerIcon;
export const IconBell: TablerIcon;
+export const IconBible: TablerIcon;
export const IconBike: TablerIcon;
export const IconBinary: TablerIcon;
export const IconBiohazard: TablerIcon;
@@ -192,6 +195,7 @@ export const IconBold: TablerIcon;
export const IconBoltOff: TablerIcon;
export const IconBolt: TablerIcon;
export const IconBone: TablerIcon;
+export const IconBook2: TablerIcon;
export const IconBook: TablerIcon;
export const IconBookmarkOff: TablerIcon;
export const IconBookmark: TablerIcon;
@@ -382,6 +386,7 @@ export const IconCameraPlus: TablerIcon;
export const IconCameraRotate: TablerIcon;
export const IconCameraSelfie: TablerIcon;
export const IconCamera: TablerIcon;
+export const IconCandle: TablerIcon;
export const IconCandy: TablerIcon;
export const IconCapture: TablerIcon;
export const IconCarCrane: TablerIcon;
@@ -500,6 +505,7 @@ export const IconCompass: TablerIcon;
export const IconComponents: TablerIcon;
export const IconConfetti: TablerIcon;
export const IconContainer: TablerIcon;
+export const IconContrast2: TablerIcon;
export const IconContrast: TablerIcon;
export const IconCookie: TablerIcon;
export const IconCopy: TablerIcon;
@@ -533,6 +539,7 @@ export const IconCrownOff: TablerIcon;
export const IconCrown: TablerIcon;
export const IconCrutches: TablerIcon;
export const IconCup: TablerIcon;
+export const IconCurling: TablerIcon;
export const IconCurlyLoop: TablerIcon;
export const IconCurrencyBahraini: TablerIcon;
export const IconCurrencyBath: TablerIcon;
@@ -755,6 +762,7 @@ export const IconGolf: TablerIcon;
export const IconGps: TablerIcon;
export const IconGrain: TablerIcon;
export const IconGridDots: TablerIcon;
+export const IconGridPattern: TablerIcon;
export const IconGrill: TablerIcon;
export const IconGripHorizontal: TablerIcon;
export const IconGripVertical: TablerIcon;
@@ -790,6 +798,7 @@ export const IconHeart: TablerIcon;
export const IconHeartbeat: TablerIcon;
export const IconHelicopterLanding: TablerIcon;
export const IconHelicopter: TablerIcon;
+export const IconHelmet: TablerIcon;
export const IconHelp: TablerIcon;
export const IconHexagonOff: TablerIcon;
export const IconHexagon: TablerIcon;
@@ -803,6 +812,7 @@ export const IconHotelService: TablerIcon;
export const IconHourglass: TablerIcon;
export const IconIceCream2: TablerIcon;
export const IconIceCream: TablerIcon;
+export const IconIceSkating: TablerIcon;
export const IconId: TablerIcon;
export const IconInbox: TablerIcon;
export const IconIndentDecrease: TablerIcon;
@@ -912,6 +922,7 @@ export const IconLockSquare: TablerIcon;
export const IconLock: TablerIcon;
export const IconLogin: TablerIcon;
export const IconLogout: TablerIcon;
+export const IconLollipop: TablerIcon;
export const IconLuggage: TablerIcon;
export const IconLungs: TablerIcon;
export const IconMacro: TablerIcon;
@@ -940,6 +951,7 @@ export const IconMathSymbols: TablerIcon;
export const IconMath: TablerIcon;
export const IconMaximize: TablerIcon;
export const IconMeat: TablerIcon;
+export const IconMedal2: TablerIcon;
export const IconMedal: TablerIcon;
export const IconMedicalCross: TablerIcon;
export const IconMedicineSyrup: TablerIcon;
@@ -961,6 +973,8 @@ export const IconMicrophone2: TablerIcon;
export const IconMicrophoneOff: TablerIcon;
export const IconMicrophone: TablerIcon;
export const IconMicroscope: TablerIcon;
+export const IconMiliratyAward: TablerIcon;
+export const IconMilitaryRank: TablerIcon;
export const IconMilk: TablerIcon;
export const IconMinimize: TablerIcon;
export const IconMinusVertical: TablerIcon;
@@ -1085,6 +1099,7 @@ export const IconPlus: TablerIcon;
export const IconPoint: TablerIcon;
export const IconPokeball: TablerIcon;
export const IconPolaroid: TablerIcon;
+export const IconPolygon: TablerIcon;
export const IconPool: TablerIcon;
export const IconPower: TablerIcon;
export const IconPray: TablerIcon;
@@ -1138,6 +1153,7 @@ export const IconResize: TablerIcon;
export const IconRipple: TablerIcon;
export const IconRoadSign: TablerIcon;
export const IconRocket: TablerIcon;
+export const IconRollerSkating: TablerIcon;
export const IconRotate2: TablerIcon;
export const IconRotate360: TablerIcon;
export const IconRotateClockwise2: TablerIcon;
@@ -1194,6 +1210,7 @@ export const IconShieldX: TablerIcon;
export const IconShield: TablerIcon;
export const IconShip: TablerIcon;
export const IconShirt: TablerIcon;
+export const IconShoe: TablerIcon;
export const IconShoppingCartDiscount: TablerIcon;
export const IconShoppingCartOff: TablerIcon;
export const IconShoppingCartPlus: TablerIcon;
@@ -1325,6 +1342,7 @@ export const IconTiltShift: TablerIcon;
export const IconTir: TablerIcon;
export const IconToggleLeft: TablerIcon;
export const IconToggleRight: TablerIcon;
+export const IconToiletPaper: TablerIcon;
export const IconTool: TablerIcon;
export const IconToolsKitchen2: TablerIcon;
export const IconToolsKitchen: TablerIcon;
diff --git a/icons-react/index.js b/icons-react/index.js
index de7bf777..e9549b4b 100644
--- a/icons-react/index.js
+++ b/icons-react/index.js
@@ -140,6 +140,8 @@ export { default as IconAxisY } from './icons-js/axis-y.js';
export { default as IconBackhoe } from './icons-js/backhoe.js';
export { default as IconBackpack } from './icons-js/backpack.js';
export { default as IconBackspace } from './icons-js/backspace.js';
+export { default as IconBadge } from './icons-js/badge.js';
+export { default as IconBadges } from './icons-js/badges.js';
export { default as IconBallAmericanFootball } from './icons-js/ball-american-football.js';
export { default as IconBallBaseball } from './icons-js/ball-baseball.js';
export { default as IconBallBasketball } from './icons-js/ball-basketball.js';
@@ -174,6 +176,7 @@ export { default as IconBellRinging2 } from './icons-js/bell-ringing-2.js';
export { default as IconBellRinging } from './icons-js/bell-ringing.js';
export { default as IconBellX } from './icons-js/bell-x.js';
export { default as IconBell } from './icons-js/bell.js';
+export { default as IconBible } from './icons-js/bible.js';
export { default as IconBike } from './icons-js/bike.js';
export { default as IconBinary } from './icons-js/binary.js';
export { default as IconBiohazard } from './icons-js/biohazard.js';
@@ -186,6 +189,7 @@ 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';
export { default as IconBone } from './icons-js/bone.js';
+export { default as IconBook2 } from './icons-js/book-2.js';
export { default as IconBook } from './icons-js/book.js';
export { default as IconBookmarkOff } from './icons-js/bookmark-off.js';
export { default as IconBookmark } from './icons-js/bookmark.js';
@@ -376,6 +380,7 @@ export { default as IconCameraPlus } from './icons-js/camera-plus.js';
export { default as IconCameraRotate } from './icons-js/camera-rotate.js';
export { default as IconCameraSelfie } from './icons-js/camera-selfie.js';
export { default as IconCamera } from './icons-js/camera.js';
+export { default as IconCandle } from './icons-js/candle.js';
export { default as IconCandy } from './icons-js/candy.js';
export { default as IconCapture } from './icons-js/capture.js';
export { default as IconCarCrane } from './icons-js/car-crane.js';
@@ -494,6 +499,7 @@ export { default as IconCompass } from './icons-js/compass.js';
export { default as IconComponents } from './icons-js/components.js';
export { default as IconConfetti } from './icons-js/confetti.js';
export { default as IconContainer } from './icons-js/container.js';
+export { default as IconContrast2 } from './icons-js/contrast-2.js';
export { default as IconContrast } from './icons-js/contrast.js';
export { default as IconCookie } from './icons-js/cookie.js';
export { default as IconCopy } from './icons-js/copy.js';
@@ -527,6 +533,7 @@ export { default as IconCrownOff } from './icons-js/crown-off.js';
export { default as IconCrown } from './icons-js/crown.js';
export { default as IconCrutches } from './icons-js/crutches.js';
export { default as IconCup } from './icons-js/cup.js';
+export { default as IconCurling } from './icons-js/curling.js';
export { default as IconCurlyLoop } from './icons-js/curly-loop.js';
export { default as IconCurrencyBahraini } from './icons-js/currency-bahraini.js';
export { default as IconCurrencyBath } from './icons-js/currency-bath.js';
@@ -749,6 +756,7 @@ export { default as IconGolf } from './icons-js/golf.js';
export { default as IconGps } from './icons-js/gps.js';
export { default as IconGrain } from './icons-js/grain.js';
export { default as IconGridDots } from './icons-js/grid-dots.js';
+export { default as IconGridPattern } from './icons-js/grid-pattern.js';
export { default as IconGrill } from './icons-js/grill.js';
export { default as IconGripHorizontal } from './icons-js/grip-horizontal.js';
export { default as IconGripVertical } from './icons-js/grip-vertical.js';
@@ -784,6 +792,7 @@ 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 IconHelmet } from './icons-js/helmet.js';
export { default as IconHelp } from './icons-js/help.js';
export { default as IconHexagonOff } from './icons-js/hexagon-off.js';
export { default as IconHexagon } from './icons-js/hexagon.js';
@@ -797,6 +806,7 @@ 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 IconIceSkating } from './icons-js/ice-skating.js';
export { default as IconId } from './icons-js/id.js';
export { default as IconInbox } from './icons-js/inbox.js';
export { default as IconIndentDecrease } from './icons-js/indent-decrease.js';
@@ -906,6 +916,7 @@ export { default as IconLockSquare } from './icons-js/lock-square.js';
export { default as IconLock } from './icons-js/lock.js';
export { default as IconLogin } from './icons-js/login.js';
export { default as IconLogout } from './icons-js/logout.js';
+export { default as IconLollipop } from './icons-js/lollipop.js';
export { default as IconLuggage } from './icons-js/luggage.js';
export { default as IconLungs } from './icons-js/lungs.js';
export { default as IconMacro } from './icons-js/macro.js';
@@ -934,6 +945,7 @@ export { default as IconMathSymbols } from './icons-js/math-symbols.js';
export { default as IconMath } from './icons-js/math.js';
export { default as IconMaximize } from './icons-js/maximize.js';
export { default as IconMeat } from './icons-js/meat.js';
+export { default as IconMedal2 } from './icons-js/medal-2.js';
export { default as IconMedal } from './icons-js/medal.js';
export { default as IconMedicalCross } from './icons-js/medical-cross.js';
export { default as IconMedicineSyrup } from './icons-js/medicine-syrup.js';
@@ -955,6 +967,8 @@ 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';
export { default as IconMicroscope } from './icons-js/microscope.js';
+export { default as IconMiliratyAward } from './icons-js/miliraty-award.js';
+export { default as IconMilitaryRank } from './icons-js/military-rank.js';
export { default as IconMilk } from './icons-js/milk.js';
export { default as IconMinimize } from './icons-js/minimize.js';
export { default as IconMinusVertical } from './icons-js/minus-vertical.js';
@@ -1079,6 +1093,7 @@ export { default as IconPlus } from './icons-js/plus.js';
export { default as IconPoint } from './icons-js/point.js';
export { default as IconPokeball } from './icons-js/pokeball.js';
export { default as IconPolaroid } from './icons-js/polaroid.js';
+export { default as IconPolygon } from './icons-js/polygon.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';
@@ -1132,6 +1147,7 @@ export { default as IconResize } from './icons-js/resize.js';
export { default as IconRipple } from './icons-js/ripple.js';
export { default as IconRoadSign } from './icons-js/road-sign.js';
export { default as IconRocket } from './icons-js/rocket.js';
+export { default as IconRollerSkating } from './icons-js/roller-skating.js';
export { default as IconRotate2 } from './icons-js/rotate-2.js';
export { default as IconRotate360 } from './icons-js/rotate-360.js';
export { default as IconRotateClockwise2 } from './icons-js/rotate-clockwise-2.js';
@@ -1188,6 +1204,7 @@ export { default as IconShieldX } from './icons-js/shield-x.js';
export { default as IconShield } from './icons-js/shield.js';
export { default as IconShip } from './icons-js/ship.js';
export { default as IconShirt } from './icons-js/shirt.js';
+export { default as IconShoe } from './icons-js/shoe.js';
export { default as IconShoppingCartDiscount } from './icons-js/shopping-cart-discount.js';
export { default as IconShoppingCartOff } from './icons-js/shopping-cart-off.js';
export { default as IconShoppingCartPlus } from './icons-js/shopping-cart-plus.js';
@@ -1319,6 +1336,7 @@ export { default as IconTiltShift } from './icons-js/tilt-shift.js';
export { default as IconTir } from './icons-js/tir.js';
export { default as IconToggleLeft } from './icons-js/toggle-left.js';
export { default as IconToggleRight } from './icons-js/toggle-right.js';
+export { default as IconToiletPaper } from './icons-js/toilet-paper.js';
export { default as IconTool } from './icons-js/tool.js';
export { default as IconToolsKitchen2 } from './icons-js/tools-kitchen-2.js';
export { default as IconToolsKitchen } from './icons-js/tools-kitchen.js';