diff options
Diffstat (limited to 'icons-react')
-rw-r--r-- | icons-react/icons-js/bat.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/clothes-rack.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/dental-broken.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/fish-bone.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/graph.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/hierarchy-3.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/horse-toy.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/layout-bottombar-collapse.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/layout-bottombar-expand.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/layout-navbar-collapse.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/layout-navbar-expand.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/message-forward.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/ruler-3.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/ruler-measure.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/skull.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/spider.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/spiral.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/zoom-reset.js | 12 | ||||
-rw-r--r-- | icons-react/index.d.ts | 18 | ||||
-rw-r--r-- | icons-react/index.js | 18 |
20 files changed, 252 insertions, 0 deletions
diff --git a/icons-react/icons-js/bat.js b/icons-react/icons-js/bat.js new file mode 100644 index 00000000..2f28b6c6 --- /dev/null +++ b/icons-react/icons-js/bat.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBat({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-bat" 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 16c.74 -2.286 2.778 -3.762 5 -3c-.173 -2.595 .13 -5.314 -2 -7.5c-1.708 2.648 -3.358 2.557 -5 2.5v-4l-3 2l-3 -2v4c-1.642 .057 -3.292 .148 -5 -2.5c-2.13 2.186 -1.827 4.905 -2 7.5c2.222 -.762 4.26 .714 5 3c2.593 0 3.889 .952 5 4c1.111 -3.048 2.407 -4 5 -4z" /><path d="M9 8a3 3 0 0 0 6 0" /></svg>; +} + +export default IconBat;
\ No newline at end of file diff --git a/icons-react/icons-js/clothes-rack.js b/icons-react/icons-js/clothes-rack.js new file mode 100644 index 00000000..bbf6de62 --- /dev/null +++ b/icons-react/icons-js/clothes-rack.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconClothesRack({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clothes-rack" 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} /><path d="M12 7v14" /><path d="M9 21h6" /><path d="M7.757 9.243a6 6 0 0 0 8.486 0" /></svg>; +} + +export default IconClothesRack;
\ No newline at end of file diff --git a/icons-react/icons-js/dental-broken.js b/icons-react/icons-js/dental-broken.js new file mode 100644 index 00000000..8f70d914 --- /dev/null +++ b/icons-react/icons-js/dental-broken.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDentalBroken({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-dental-broken" 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 5.5c-1.074 -.586 -2.583 -1.5 -4 -1.5c-2.1 -.001 -4 1.247 -4 5c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 .004 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 1.994 .993 2.567 .237c1.615 -2.127 2.671 -5.637 2.671 -10.537c0 -3.74 -1.908 -4.994 -4 -5c-1.423 -.004 -2.92 .911 -4 1.5z" /><path d="M12 5.5l1 2.5l-2 2l2 2" /></svg>; +} + +export default IconDentalBroken;
\ No newline at end of file diff --git a/icons-react/icons-js/fish-bone.js b/icons-react/icons-js/fish-bone.js new file mode 100644 index 00000000..731dac44 --- /dev/null +++ b/icons-react/icons-js/fish-bone.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFishBone({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-fish-bone" 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.69 7.44a6.973 6.973 0 0 0 -1.69 4.56a6.97 6.97 0 0 0 1.699 4.571m0 -.004c1.914 -.684 3.691 -2.183 5.301 -4.565c-1.613 -2.384 -3.394 -3.883 -5.312 -4.565" /><path d="M2 9.504a40.73 40.73 0 0 0 2.422 2.504a39.679 39.679 0 0 0 -2.422 2.498" /><path d="M18 11v.01" /><path d="M4.422 12.005h10.578" /><path d="M7 10v4" /><path d="M11 8v8" /></svg>; +} + +export default IconFishBone;
\ No newline at end of file diff --git a/icons-react/icons-js/graph.js b/icons-react/icons-js/graph.js new file mode 100644 index 00000000..45063110 --- /dev/null +++ b/icons-react/icons-js/graph.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGraph({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-graph" 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 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" /><path d="M7 14l3 -3l2 2l3 -3l2 2" /></svg>; +} + +export default IconGraph;
\ No newline at end of file diff --git a/icons-react/icons-js/hierarchy-3.js b/icons-react/icons-js/hierarchy-3.js new file mode 100644 index 00000000..6bba3fa1 --- /dev/null +++ b/icons-react/icons-js/hierarchy-3.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconHierarchy3({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-hierarchy-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" /><circle cx={12} cy={5} r={2} /><circle cx={8} cy={12} r={2} /><circle cx={12} cy={19} r={2} /><circle cx={20} cy={19} r={2} /><circle cx={4} cy={19} r={2} /><circle cx={16} cy={12} r={2} /><path d="M5 17l2 -3" /><path d="M9 10l2 -3" /><path d="M13 7l2 3" /><path d="M17 14l2 3" /><path d="M15 14l-2 3" /><path d="M9 14l2 3" /></svg>; +} + +export default IconHierarchy3;
\ No newline at end of file diff --git a/icons-react/icons-js/horse-toy.js b/icons-react/icons-js/horse-toy.js new file mode 100644 index 00000000..c4c06994 --- /dev/null +++ b/icons-react/icons-js/horse-toy.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconHorseToy({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-horse-toy" 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.5 17.5c5.667 4.667 11.333 4.667 17 0" /><path d="M19 18.5l-2 -8.5l1 -2l2 1l1.5 -1.5l-2.5 -4.5c-5.052 .218 -5.99 3.133 -7 6h-6a3 3 0 0 0 -3 3" /><path d="M5 18.5l2 -9.5" /><path d="M8 20l2 -5h4l2 5" /></svg>; +} + +export default IconHorseToy;
\ No newline at end of file diff --git a/icons-react/icons-js/layout-bottombar-collapse.js b/icons-react/icons-js/layout-bottombar-collapse.js new file mode 100644 index 00000000..32062bde --- /dev/null +++ b/icons-react/icons-js/layout-bottombar-collapse.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLayoutBottombarCollapse({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-layout-bottombar-collapse" 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="M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z" /><path d="M20 15h-16" /><path d="M14 8l-2 2l-2 -2" /></svg>; +} + +export default IconLayoutBottombarCollapse;
\ No newline at end of file diff --git a/icons-react/icons-js/layout-bottombar-expand.js b/icons-react/icons-js/layout-bottombar-expand.js new file mode 100644 index 00000000..63285ffe --- /dev/null +++ b/icons-react/icons-js/layout-bottombar-expand.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLayoutBottombarExpand({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-layout-bottombar-expand" 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="M20 6v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2z" /><path d="M20 15h-16" /><path d="M14 10l-2 -2l-2 2" /></svg>; +} + +export default IconLayoutBottombarExpand;
\ No newline at end of file diff --git a/icons-react/icons-js/layout-navbar-collapse.js b/icons-react/icons-js/layout-navbar-collapse.js new file mode 100644 index 00000000..d617d215 --- /dev/null +++ b/icons-react/icons-js/layout-navbar-collapse.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLayoutNavbarCollapse({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-layout-navbar-collapse" 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 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" /><path d="M4 9h16" /><path d="M10 16l2 -2l2 2" /></svg>; +} + +export default IconLayoutNavbarCollapse;
\ No newline at end of file diff --git a/icons-react/icons-js/layout-navbar-expand.js b/icons-react/icons-js/layout-navbar-expand.js new file mode 100644 index 00000000..e7d13747 --- /dev/null +++ b/icons-react/icons-js/layout-navbar-expand.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLayoutNavbarExpand({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-layout-navbar-expand" 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 18v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" /><path d="M4 9h16" /><path d="M10 14l2 2l2 -2" /></svg>; +} + +export default IconLayoutNavbarExpand;
\ No newline at end of file diff --git a/icons-react/icons-js/message-forward.js b/icons-react/icons-js/message-forward.js new file mode 100644 index 00000000..7e868da8 --- /dev/null +++ b/icons-react/icons-js/message-forward.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMessageForward({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-message-forward" 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 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /><path d="M13 9l2 2l-2 2" /><path d="M15 11h-6" /></svg>; +} + +export default IconMessageForward;
\ No newline at end of file diff --git a/icons-react/icons-js/ruler-3.js b/icons-react/icons-js/ruler-3.js new file mode 100644 index 00000000..7b497411 --- /dev/null +++ b/icons-react/icons-js/ruler-3.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRuler3({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ruler-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="M19.875 8c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z" /><path d="M9 8v2" /><path d="M6 8v3" /><path d="M12 8v3" /><path d="M18 8v3" /><path d="M15 8v2" /></svg>; +} + +export default IconRuler3;
\ No newline at end of file diff --git a/icons-react/icons-js/ruler-measure.js b/icons-react/icons-js/ruler-measure.js new file mode 100644 index 00000000..c7f7641c --- /dev/null +++ b/icons-react/icons-js/ruler-measure.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRulerMeasure({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ruler-measure" 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.875 12c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z" /><path d="M9 12v2" /><path d="M6 12v3" /><path d="M12 12v3" /><path d="M18 12v3" /><path d="M15 12v2" /><path d="M3 3v4" /><path d="M3 5h18" /><path d="M21 3v4" /></svg>; +} + +export default IconRulerMeasure;
\ No newline at end of file diff --git a/icons-react/icons-js/skull.js b/icons-react/icons-js/skull.js new file mode 100644 index 00000000..6ed701f2 --- /dev/null +++ b/icons-react/icons-js/skull.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSkull({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-skull" 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 4c4.418 0 8 3.358 8 7.5c0 1.901 -.755 3.637 -1.999 4.96l-.001 2.54a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-2.54c-1.245 -1.322 -2 -3.058 -2 -4.96c0 -4.142 3.582 -7.5 8 -7.5z" /><path d="M10 17v3" /><path d="M14 17v3" /><circle cx={9} cy={11} r={1} /><circle cx={15} cy={11} r={1} /></svg>; +} + +export default IconSkull;
\ No newline at end of file diff --git a/icons-react/icons-js/spider.js b/icons-react/icons-js/spider.js new file mode 100644 index 00000000..41539e4a --- /dev/null +++ b/icons-react/icons-js/spider.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSpider({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-spider" 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 4v2l5 5" /><path d="M2.5 9.5l1.5 1.5h6" /><path d="M4 19v-2l6 -6" /><path d="M19 4v2l-5 5" /><path d="M21.5 9.5l-1.5 1.5h-6" /><path d="M20 19v-2l-6 -6" /><circle cx={12} cy={15} r={4} /><circle cx={12} cy={9} r={2} /></svg>; +} + +export default IconSpider;
\ No newline at end of file diff --git a/icons-react/icons-js/spiral.js b/icons-react/icons-js/spiral.js new file mode 100644 index 00000000..2ddcd3f9 --- /dev/null +++ b/icons-react/icons-js/spiral.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSpiral({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-spiral" 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 12.057a1.9 1.9 0 0 0 .614 .743c1.06 .713 2.472 .112 3.043 -.919c.839 -1.513 -.022 -3.368 -1.525 -4.08c-2.003 -.95 -4.371 .154 -5.24 2.086c-1.095 2.432 .29 5.248 2.71 6.246c2.931 1.208 6.283 -.418 7.438 -3.255c1.36 -3.343 -.557 -7.134 -3.896 -8.41c-3.855 -1.474 -8.2 .68 -9.636 4.422c-1.63 4.253 .823 9.024 5.082 10.576c4.778 1.74 10.118 -.941 11.833 -5.59a9.354 9.354 0 0 0 .577 -2.813" /></svg>; +} + +export default IconSpiral;
\ No newline at end of file diff --git a/icons-react/icons-js/zoom-reset.js b/icons-react/icons-js/zoom-reset.js new file mode 100644 index 00000000..1b42cccd --- /dev/null +++ b/icons-react/icons-js/zoom-reset.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconZoomReset({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-zoom-reset" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M21 21l-6 -6" /><path d="M3.268 12.043a7.017 7.017 0 0 0 6.634 4.957a7.012 7.012 0 0 0 7.043 -6.131a7 7 0 0 0 -5.314 -7.672a7.021 7.021 0 0 0 -8.241 4.403" /><path d="M3 4v4h4" /></svg>; +} + +export default IconZoomReset;
\ No newline at end of file diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts index 6078e5f1..4d99aef0 100644 --- a/icons-react/index.d.ts +++ b/icons-react/index.d.ts @@ -260,6 +260,7 @@ export const IconBarrierBlock: TablerIcon; export const IconBaseline: TablerIcon; export const IconBasketOff: TablerIcon; export const IconBasket: TablerIcon; +export const IconBat: TablerIcon; export const IconBathOff: TablerIcon; export const IconBath: TablerIcon; export const IconBattery1: TablerIcon; @@ -718,6 +719,7 @@ export const IconClipboard: TablerIcon; export const IconClock2: TablerIcon; export const IconClockOff: TablerIcon; export const IconClock: TablerIcon; +export const IconClothesRack: TablerIcon; export const IconCloudComputing: TablerIcon; export const IconCloudDataConnection: TablerIcon; export const IconCloudDownload: TablerIcon; @@ -859,6 +861,7 @@ export const IconDatabaseExport: TablerIcon; export const IconDatabaseImport: TablerIcon; export const IconDatabaseOff: TablerIcon; export const IconDatabase: TablerIcon; +export const IconDentalBroken: TablerIcon; export const IconDentalOff: TablerIcon; export const IconDental: TablerIcon; export const IconDetails: TablerIcon; @@ -1059,6 +1062,7 @@ export const IconFingerprintOff: TablerIcon; export const IconFingerprint: TablerIcon; export const IconFiretruck: TablerIcon; export const IconFirstAidKit: TablerIcon; +export const IconFishBone: TablerIcon; export const IconFishHook: TablerIcon; export const IconFishOff: TablerIcon; export const IconFish: TablerIcon; @@ -1154,6 +1158,7 @@ export const IconGolfOff: TablerIcon; export const IconGolf: TablerIcon; export const IconGps: TablerIcon; export const IconGrain: TablerIcon; +export const IconGraph: TablerIcon; export const IconGridDots: TablerIcon; export const IconGridPattern: TablerIcon; export const IconGrillOff: TablerIcon; @@ -1210,6 +1215,7 @@ export const IconHexagonOff: TablerIcon; export const IconHexagon: TablerIcon; export const IconHexagons: TablerIcon; export const IconHierarchy2: TablerIcon; +export const IconHierarchy3: TablerIcon; export const IconHierarchy: TablerIcon; export const IconHighlightOff: TablerIcon; export const IconHighlight: TablerIcon; @@ -1218,6 +1224,7 @@ export const IconHistory: TablerIcon; export const IconHome2: TablerIcon; export const IconHomeOff: TablerIcon; export const IconHome: TablerIcon; +export const IconHorseToy: TablerIcon; export const IconHotelService: TablerIcon; export const IconHourglassEmpty: TablerIcon; export const IconHourglassHigh: TablerIcon; @@ -1279,6 +1286,8 @@ export const IconLayoutAlignRight: TablerIcon; export const IconLayoutAlignTop: TablerIcon; export const IconLayoutBoardSplit: TablerIcon; export const IconLayoutBoard: TablerIcon; +export const IconLayoutBottombarCollapse: TablerIcon; +export const IconLayoutBottombarExpand: TablerIcon; export const IconLayoutBottombar: TablerIcon; export const IconLayoutCards: TablerIcon; export const IconLayoutColumns: TablerIcon; @@ -1289,6 +1298,8 @@ export const IconLayoutGridAdd: TablerIcon; export const IconLayoutGrid: TablerIcon; export const IconLayoutKanban: TablerIcon; export const IconLayoutList: TablerIcon; +export const IconLayoutNavbarCollapse: TablerIcon; +export const IconLayoutNavbarExpand: TablerIcon; export const IconLayoutNavbar: TablerIcon; export const IconLayoutOff: TablerIcon; export const IconLayoutRows: TablerIcon; @@ -1430,6 +1441,7 @@ export const IconMessageCircleOff: TablerIcon; export const IconMessageCircle: TablerIcon; export const IconMessageCode: TablerIcon; export const IconMessageDots: TablerIcon; +export const IconMessageForward: TablerIcon; export const IconMessageLanguage: TablerIcon; export const IconMessageOff: TablerIcon; export const IconMessagePlus: TablerIcon; @@ -1728,6 +1740,8 @@ export const IconRowInsertTop: TablerIcon; export const IconRss: TablerIcon; export const IconRuler2Off: TablerIcon; export const IconRuler2: TablerIcon; +export const IconRuler3: TablerIcon; +export const IconRulerMeasure: TablerIcon; export const IconRulerOff: TablerIcon; export const IconRuler: TablerIcon; export const IconRun: TablerIcon; @@ -1813,6 +1827,7 @@ export const IconSignature: TablerIcon; export const IconSitemapOff: TablerIcon; export const IconSitemap: TablerIcon; export const IconSkateboard: TablerIcon; +export const IconSkull: TablerIcon; export const IconSleigh: TablerIcon; export const IconSlice: TablerIcon; export const IconSlideshow: TablerIcon; @@ -1845,6 +1860,8 @@ export const IconSpacingVertical: TablerIcon; export const IconSpade: TablerIcon; export const IconSpeakerphone: TablerIcon; export const IconSpeedboat: TablerIcon; +export const IconSpider: TablerIcon; +export const IconSpiral: TablerIcon; export const IconSportBillard: TablerIcon; export const IconSpy: TablerIcon; export const IconSquare0: TablerIcon; @@ -2145,4 +2162,5 @@ export const IconZoomOutArea: TablerIcon; export const IconZoomOut: TablerIcon; export const IconZoomPan: TablerIcon; export const IconZoomQuestion: TablerIcon; +export const IconZoomReset: TablerIcon; export const IconZzz: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js index 8338e138..7dd5fc5d 100644 --- a/icons-react/index.js +++ b/icons-react/index.js @@ -254,6 +254,7 @@ export { default as IconBarrierBlock } from './icons-js/barrier-block.js'; export { default as IconBaseline } from './icons-js/baseline.js'; export { default as IconBasketOff } from './icons-js/basket-off.js'; export { default as IconBasket } from './icons-js/basket.js'; +export { default as IconBat } from './icons-js/bat.js'; export { default as IconBathOff } from './icons-js/bath-off.js'; export { default as IconBath } from './icons-js/bath.js'; export { default as IconBattery1 } from './icons-js/battery-1.js'; @@ -712,6 +713,7 @@ export { default as IconClipboard } from './icons-js/clipboard.js'; export { default as IconClock2 } from './icons-js/clock-2.js'; export { default as IconClockOff } from './icons-js/clock-off.js'; export { default as IconClock } from './icons-js/clock.js'; +export { default as IconClothesRack } from './icons-js/clothes-rack.js'; export { default as IconCloudComputing } from './icons-js/cloud-computing.js'; export { default as IconCloudDataConnection } from './icons-js/cloud-data-connection.js'; export { default as IconCloudDownload } from './icons-js/cloud-download.js'; @@ -853,6 +855,7 @@ export { default as IconDatabaseExport } from './icons-js/database-export.js'; export { default as IconDatabaseImport } from './icons-js/database-import.js'; export { default as IconDatabaseOff } from './icons-js/database-off.js'; export { default as IconDatabase } from './icons-js/database.js'; +export { default as IconDentalBroken } from './icons-js/dental-broken.js'; export { default as IconDentalOff } from './icons-js/dental-off.js'; export { default as IconDental } from './icons-js/dental.js'; export { default as IconDetails } from './icons-js/details.js'; @@ -1053,6 +1056,7 @@ export { default as IconFingerprintOff } from './icons-js/fingerprint-off.js'; export { default as IconFingerprint } from './icons-js/fingerprint.js'; export { default as IconFiretruck } from './icons-js/firetruck.js'; export { default as IconFirstAidKit } from './icons-js/first-aid-kit.js'; +export { default as IconFishBone } from './icons-js/fish-bone.js'; export { default as IconFishHook } from './icons-js/fish-hook.js'; export { default as IconFishOff } from './icons-js/fish-off.js'; export { default as IconFish } from './icons-js/fish.js'; @@ -1148,6 +1152,7 @@ export { default as IconGolfOff } from './icons-js/golf-off.js'; 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 IconGraph } from './icons-js/graph.js'; export { default as IconGridDots } from './icons-js/grid-dots.js'; export { default as IconGridPattern } from './icons-js/grid-pattern.js'; export { default as IconGrillOff } from './icons-js/grill-off.js'; @@ -1204,6 +1209,7 @@ export { default as IconHexagonOff } from './icons-js/hexagon-off.js'; export { default as IconHexagon } from './icons-js/hexagon.js'; export { default as IconHexagons } from './icons-js/hexagons.js'; export { default as IconHierarchy2 } from './icons-js/hierarchy-2.js'; +export { default as IconHierarchy3 } from './icons-js/hierarchy-3.js'; export { default as IconHierarchy } from './icons-js/hierarchy.js'; export { default as IconHighlightOff } from './icons-js/highlight-off.js'; export { default as IconHighlight } from './icons-js/highlight.js'; @@ -1212,6 +1218,7 @@ export { default as IconHistory } from './icons-js/history.js'; export { default as IconHome2 } from './icons-js/home-2.js'; export { default as IconHomeOff } from './icons-js/home-off.js'; export { default as IconHome } from './icons-js/home.js'; +export { default as IconHorseToy } from './icons-js/horse-toy.js'; export { default as IconHotelService } from './icons-js/hotel-service.js'; export { default as IconHourglassEmpty } from './icons-js/hourglass-empty.js'; export { default as IconHourglassHigh } from './icons-js/hourglass-high.js'; @@ -1273,6 +1280,8 @@ export { default as IconLayoutAlignRight } from './icons-js/layout-align-right.j 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 IconLayoutBottombarCollapse } from './icons-js/layout-bottombar-collapse.js'; +export { default as IconLayoutBottombarExpand } from './icons-js/layout-bottombar-expand.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'; @@ -1283,6 +1292,8 @@ export { default as IconLayoutGridAdd } from './icons-js/layout-grid-add.js'; export { default as IconLayoutGrid } from './icons-js/layout-grid.js'; export { default as IconLayoutKanban } from './icons-js/layout-kanban.js'; export { default as IconLayoutList } from './icons-js/layout-list.js'; +export { default as IconLayoutNavbarCollapse } from './icons-js/layout-navbar-collapse.js'; +export { default as IconLayoutNavbarExpand } from './icons-js/layout-navbar-expand.js'; export { default as IconLayoutNavbar } from './icons-js/layout-navbar.js'; export { default as IconLayoutOff } from './icons-js/layout-off.js'; export { default as IconLayoutRows } from './icons-js/layout-rows.js'; @@ -1424,6 +1435,7 @@ export { default as IconMessageCircleOff } from './icons-js/message-circle-off.j export { default as IconMessageCircle } from './icons-js/message-circle.js'; export { default as IconMessageCode } from './icons-js/message-code.js'; export { default as IconMessageDots } from './icons-js/message-dots.js'; +export { default as IconMessageForward } from './icons-js/message-forward.js'; export { default as IconMessageLanguage } from './icons-js/message-language.js'; export { default as IconMessageOff } from './icons-js/message-off.js'; export { default as IconMessagePlus } from './icons-js/message-plus.js'; @@ -1722,6 +1734,8 @@ export { default as IconRowInsertTop } from './icons-js/row-insert-top.js'; export { default as IconRss } from './icons-js/rss.js'; export { default as IconRuler2Off } from './icons-js/ruler-2-off.js'; export { default as IconRuler2 } from './icons-js/ruler-2.js'; +export { default as IconRuler3 } from './icons-js/ruler-3.js'; +export { default as IconRulerMeasure } from './icons-js/ruler-measure.js'; export { default as IconRulerOff } from './icons-js/ruler-off.js'; export { default as IconRuler } from './icons-js/ruler.js'; export { default as IconRun } from './icons-js/run.js'; @@ -1807,6 +1821,7 @@ export { default as IconSignature } from './icons-js/signature.js'; export { default as IconSitemapOff } from './icons-js/sitemap-off.js'; export { default as IconSitemap } from './icons-js/sitemap.js'; export { default as IconSkateboard } from './icons-js/skateboard.js'; +export { default as IconSkull } from './icons-js/skull.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'; @@ -1839,6 +1854,8 @@ export { default as IconSpacingVertical } from './icons-js/spacing-vertical.js'; 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 IconSpider } from './icons-js/spider.js'; +export { default as IconSpiral } from './icons-js/spiral.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'; @@ -2139,4 +2156,5 @@ 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 IconZoomReset } from './icons-js/zoom-reset.js'; export { default as IconZzz } from './icons-js/zzz.js'; |