diff options
Diffstat (limited to 'icons-react')
40 files changed, 506 insertions, 4 deletions
diff --git a/icons-react/icons-js/3d-rotate.js b/icons-react/icons-js/3d-rotate.js new file mode 100644 index 00000000..7068f288 --- /dev/null +++ b/icons-react/icons-js/3d-rotate.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function Icon3dRotate({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-3d-rotate" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M7 15.5l4 -2.5" /><path d="M3 13l4 2.5v4.5l4 -2.5v-4.5l-4 -2.5z" /><path d="M3 13v4.5l4 2.5" /><path d="M11 4a7 7 0 0 1 7 7v4l-3 -3" /><path d="M21 12l-3 3" /></svg>; +} + +export default Icon3dRotate;
\ No newline at end of file diff --git a/icons-react/icons-js/address-book.js b/icons-react/icons-js/address-book.js new file mode 100644 index 00000000..f7ba862f --- /dev/null +++ b/icons-react/icons-js/address-book.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconAddressBook({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-address-book" 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-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z" /><path d="M10 16h6" /><circle cx={13} cy={11} r={2} /><path d="M4 8h3" /><path d="M4 12h3" /><path d="M4 16h3" /></svg>; +} + +export default IconAddressBook;
\ No newline at end of file diff --git a/icons-react/icons-js/album.js b/icons-react/icons-js/album.js new file mode 100644 index 00000000..098453b0 --- /dev/null +++ b/icons-react/icons-js/album.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconAlbum({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-album" 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="M12 4v7l2 -2l2 2v-7" /></svg>; +} + +export default IconAlbum;
\ No newline at end of file diff --git a/icons-react/icons-js/augmented-reality.js b/icons-react/icons-js/augmented-reality.js new file mode 100644 index 00000000..5533507b --- /dev/null +++ b/icons-react/icons-js/augmented-reality.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconAugmentedReality({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-augmented-reality" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M4 8v-2a2 2 0 0 1 2 -2h2" /><path d="M4 16v2a2 2 0 0 0 2 2h2" /><path d="M16 4h2a2 2 0 0 1 2 2v2" /><path d="M16 20h2a2 2 0 0 0 2 -2v-2" /><path d="M12 12.5l4 -2.5" /><path d="M8 10l4 2.5v4.5l4 -2.5v-4.5l-4 -2.5z" /><path d="M8 10v4.5l4 2.5" /></svg>; +} + +export default IconAugmentedReality;
\ No newline at end of file diff --git a/icons-react/icons-js/barrier-block.js b/icons-react/icons-js/barrier-block.js new file mode 100644 index 00000000..7999299f --- /dev/null +++ b/icons-react/icons-js/barrier-block.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBarrierBlock({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-barrier-block" 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={7} width={16} height={9} rx={1} /><path d="M7 16v4" /><path d="M7.5 16l9 -9" /><path d="M13.5 16l6.5 -6.5" /><path d="M4 13.5l6.5 -6.5" /><path d="M17 16v4" /><path d="M5 20h4" /><path d="M15 20h4" /><path d="M17 7v-2" /><path d="M7 7v-2" /></svg>; +} + +export default IconBarrierBlock;
\ No newline at end of file diff --git a/icons-react/icons-js/baseline.js b/icons-react/icons-js/baseline.js new file mode 100644 index 00000000..41859814 --- /dev/null +++ b/icons-react/icons-js/baseline.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBaseline({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-baseline" 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 20h16" /><path d="M8 16v-8a4 4 0 1 1 8 0v8" /><path d="M8 10h8" /></svg>; +} + +export default IconBaseline;
\ No newline at end of file diff --git a/icons-react/icons-js/cake.js b/icons-react/icons-js/cake.js new file mode 100644 index 00000000..2a5af158 --- /dev/null +++ b/icons-react/icons-js/cake.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCake({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cake" 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 20h18v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8z" /><path d="M2.996 14.803c.312 .135 .654 .204 1.004 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1.004 -.197" /><path d="M12 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z" /></svg>; +} + +export default IconCake;
\ No newline at end of file diff --git a/icons-react/icons-js/circle-rectangle.js b/icons-react/icons-js/circle-rectangle.js new file mode 100644 index 00000000..0eaf17ca --- /dev/null +++ b/icons-react/icons-js/circle-rectangle.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCircleRectangle({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circle-rectangle" 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="M7 10h10v4h-10z" /></svg>; +} + +export default IconCircleRectangle;
\ No newline at end of file diff --git a/icons-react/icons-js/circle-triangle.js b/icons-react/icons-js/circle-triangle.js new file mode 100644 index 00000000..b21bbb2d --- /dev/null +++ b/icons-react/icons-js/circle-triangle.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCircleTriangle({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circle-triangle" 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 20l7 -12h-14z" /></svg>; +} + +export default IconCircleTriangle;
\ No newline at end of file diff --git a/icons-react/icons-js/dental.js b/icons-react/icons-js/dental.js new file mode 100644 index 00000000..c618e2e8 --- /dev/null +++ b/icons-react/icons-js/dental.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDental({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-dental" 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.5l3 1.5" /></svg>; +} + +export default IconDental;
\ No newline at end of file diff --git a/icons-react/icons-js/device-nintendo.js b/icons-react/icons-js/device-nintendo.js new file mode 100644 index 00000000..5a9a6839 --- /dev/null +++ b/icons-react/icons-js/device-nintendo.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDeviceNintendo({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-device-nintendo" 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 20v-16h-3a4 4 0 0 0 -4 4v8a4 4 0 0 0 4 4h3z" /><path d="M14 20v-16h3a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-3z" /><circle cx={17.5} cy={15.5} r={1} fill="currentColor" /><circle cx={6.5} cy={8.5} r={1} fill="currentColor" /></svg>; +} + +export default IconDeviceNintendo;
\ No newline at end of file diff --git a/icons-react/icons-js/error-404.js b/icons-react/icons-js/error-404.js new file mode 100644 index 00000000..8dc9c818 --- /dev/null +++ b/icons-react/icons-js/error-404.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconError404({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-error-404" 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 7v4a1 1 0 0 0 1 1h3" /><path d="M7 7v10" /><path d="M10 8v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1z" /><path d="M17 7v4a1 1 0 0 0 1 1h3" /><path d="M21 7v10" /></svg>; +} + +export default IconError404;
\ No newline at end of file diff --git a/icons-react/icons-js/file-description.js b/icons-react/icons-js/file-description.js new file mode 100644 index 00000000..55ac9ee9 --- /dev/null +++ b/icons-react/icons-js/file-description.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFileDescription({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-description" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M14 3v4a1 1 0 0 0 1 1h4" /><path d="M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" /><path d="M9 17h6" /><path d="M9 13h6" /></svg>; +} + +export default IconFileDescription;
\ No newline at end of file diff --git a/icons-react/icons-js/file-settings.js b/icons-react/icons-js/file-settings.js new file mode 100644 index 00000000..a9de6792 --- /dev/null +++ b/icons-react/icons-js/file-settings.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFileSettings({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-settings" 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={14} r={2} /><path d="M12 10.5v1.5" /><path d="M12 16v1.5" /><path d="M15.031 12.25l-1.299 .75" /><path d="M10.268 15l-1.3 .75" /><path d="M15 15.803l-1.285 -.773" /><path d="M10.285 12.97l-1.285 -.773" /><path d="M14 3v4a1 1 0 0 0 1 1h4" /><path d="M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" /></svg>; +} + +export default IconFileSettings;
\ No newline at end of file diff --git a/icons-react/icons-js/focus-centered.js b/icons-react/icons-js/focus-centered.js new file mode 100644 index 00000000..b2c33481 --- /dev/null +++ b/icons-react/icons-js/focus-centered.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFocusCentered({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-focus-centered" 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={1} /><path d="M4 8v-2a2 2 0 0 1 2 -2h2" /><path d="M4 16v2a2 2 0 0 0 2 2h2" /><path d="M16 4h2a2 2 0 0 1 2 2v2" /><path d="M16 20h2a2 2 0 0 0 2 -2v-2" /></svg>; +} + +export default IconFocusCentered;
\ No newline at end of file diff --git a/icons-react/icons-js/gizmo.js b/icons-react/icons-js/gizmo.js new file mode 100644 index 00000000..f53f87c5 --- /dev/null +++ b/icons-react/icons-js/gizmo.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGizmo({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-gizmo" 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 19l-8 -5.5l-8 5.5" /><path d="M12 4v9.5" /><circle cx={12} cy={4} r={1} /><circle cx={4} cy={19} r={1} /><circle cx={20} cy={19} r={1} /></svg>; +} + +export default IconGizmo;
\ No newline at end of file diff --git a/icons-react/icons-js/layout-dashboard.js b/icons-react/icons-js/layout-dashboard.js new file mode 100644 index 00000000..48ff1d36 --- /dev/null +++ b/icons-react/icons-js/layout-dashboard.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLayoutDashboard({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-layout-dashboard" 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 4h6v8h-6z" /><path d="M4 16h6v4h-6z" /><path d="M14 12h6v8h-6z" /><path d="M14 4h6v4h-6z" /></svg>; +} + +export default IconLayoutDashboard;
\ No newline at end of file diff --git a/icons-react/icons-js/message-2-code.js b/icons-react/icons-js/message-2-code.js new file mode 100644 index 00000000..a00ffaa1 --- /dev/null +++ b/icons-react/icons-js/message-2-code.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMessage2Code({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-message-2-code" 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 20l-3 -3h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-2l-3 3" /><path d="M10 9l-2 2l2 2" /><path d="M14 9l2 2l-2 2" /></svg>; +} + +export default IconMessage2Code;
\ No newline at end of file diff --git a/icons-react/icons-js/message-code.js b/icons-react/icons-js/message-code.js new file mode 100644 index 00000000..253ee6f8 --- /dev/null +++ b/icons-react/icons-js/message-code.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMessageCode({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-message-code" 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="M10 9l-2 2l2 2" /><path d="M14 9l2 2l-2 2" /></svg>; +} + +export default IconMessageCode;
\ No newline at end of file diff --git a/icons-react/icons-js/north-star.js b/icons-react/icons-js/north-star.js new file mode 100644 index 00000000..6f6c5540 --- /dev/null +++ b/icons-react/icons-js/north-star.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNorthStar({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-north-star" 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 12h18" /><path d="M12 21v-18" /><path d="M7.5 7.5l9 9" /><path d="M7.5 16.5l9 -9" /></svg>; +} + +export default IconNorthStar;
\ No newline at end of file diff --git a/icons-react/icons-js/numbers.js b/icons-react/icons-js/numbers.js new file mode 100644 index 00000000..4aa892da --- /dev/null +++ b/icons-react/icons-js/numbers.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNumbers({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-numbers" 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="M8 10v-7l-2 2" /><path d="M6 16a2 2 0 1 1 4 0c0 .591 -.601 1.46 -1 2l-3 3.001h4" /><path d="M15 14a2 2 0 1 0 2 -2a2 2 0 1 0 -2 -2" /><path d="M6.5 10h3" /></svg>; +} + +export default IconNumbers;
\ No newline at end of file diff --git a/icons-react/icons-js/oval-vertical.js b/icons-react/icons-js/oval-vertical.js new file mode 100644 index 00000000..05915bf5 --- /dev/null +++ b/icons-react/icons-js/oval-vertical.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconOvalVertical({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-oval-vertical" 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 transform="matrix(0 -1 -1 0 24 24)" cx={12} cy={12} rx={6} ry={9} /></svg>; +} + +export default IconOvalVertical;
\ No newline at end of file diff --git a/icons-react/icons-js/oval.js b/icons-react/icons-js/oval.js new file mode 100644 index 00000000..671884a2 --- /dev/null +++ b/icons-react/icons-js/oval.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconOval({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-oval" 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={12} cy={12} rx={6} ry={9} /></svg>; +} + +export default IconOval;
\ No newline at end of file diff --git a/icons-react/icons-js/paper-bag.js b/icons-react/icons-js/paper-bag.js new file mode 100644 index 00000000..ea4d3d8f --- /dev/null +++ b/icons-react/icons-js/paper-bag.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPaperBag({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-paper-bag" 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="M8 3h8a2 2 0 0 1 2 2v1.82a5 5 0 0 0 .528 2.236l.944 1.888a5 5 0 0 1 .528 2.236v5.82a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-5.82a5 5 0 0 1 .528 -2.236l1.472 -2.944v-3a2 2 0 0 1 2 -2z" /><circle cx={14} cy={15} r={2} /><path d="M6 21a2 2 0 0 0 2 -2v-5.82a5 5 0 0 0 -.528 -2.236l-1.472 -2.944" /><path d="M11 7h2" /></svg>; +} + +export default IconPaperBag;
\ No newline at end of file diff --git a/icons-react/icons-js/radar-2.js b/icons-react/icons-js/radar-2.js new file mode 100644 index 00000000..db8e0425 --- /dev/null +++ b/icons-react/icons-js/radar-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRadar2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-radar-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" /><circle cx={12} cy={12} r={1} /><path d="M15.51 15.56a5 5 0 1 0 -3.51 1.44" /><path d="M18.832 17.86a9 9 0 1 0 -6.832 3.14" /><path d="M12 12v9" /></svg>; +} + +export default IconRadar2;
\ No newline at end of file diff --git a/icons-react/icons-js/radar.js b/icons-react/icons-js/radar.js new file mode 100644 index 00000000..f9152df1 --- /dev/null +++ b/icons-react/icons-js/radar.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRadar({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-radar" 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 12h-8a1 1 0 1 0 -1 1v8a9 9 0 0 0 9 -9" /><path d="M15.999 8.998a5 5 0 1 0 -6.999 7.003" /><path d="M20.486 8.995a9 9 0 1 0 -11.482 11.495" /></svg>; +} + +export default IconRadar;
\ No newline at end of file diff --git a/icons-react/icons-js/road.js b/icons-react/icons-js/road.js new file mode 100644 index 00000000..9580ac30 --- /dev/null +++ b/icons-react/icons-js/road.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRoad({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-road" 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 19l4 -14" /><path d="M16 5l4 14" /><path d="M12 8v-2" /><path d="M12 13v-2" /><path d="M12 18v-2" /></svg>; +} + +export default IconRoad;
\ No newline at end of file diff --git a/icons-react/icons-js/robot.js b/icons-react/icons-js/robot.js index 823e2ccf..c46923c9 100644 --- a/icons-react/icons-js/robot.js +++ b/icons-react/icons-js/robot.js @@ -6,7 +6,7 @@ function IconRobot({ stroke = 2, ...props }) { - return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-robot" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M7 7h10a2 2 0 0 1 2 2v1l1 1v3l-1 1v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2z" /><path d="M10 16h4" /><circle cx={8.5} cy={11.5} r={1} /><circle cx={15.5} cy={11.5} r={1} /><path d="M9 7l-1 -4" /><path d="M15 7l1 -4" /></svg>; + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-robot" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M7 7h10a2 2 0 0 1 2 2v1l1 1v3l-1 1v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2z" /><path d="M10 16h4" /><circle cx={8.5} cy={11.5} r={0.5} fill="currentColor" /><circle cx={15.5} cy={11.5} r={0.5} fill="currentColor" /><path d="M9 7l-1 -4" /><path d="M15 7l1 -4" /></svg>; } export default IconRobot;
\ No newline at end of file diff --git a/icons-react/icons-js/section-sign.js b/icons-react/icons-js/section-sign.js new file mode 100644 index 00000000..87b3a3b9 --- /dev/null +++ b/icons-react/icons-js/section-sign.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSectionSign({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-section-sign" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M9.172 19.004a3.001 3.001 0 1 0 2.828 -4.004" /><path d="M14.83 5.002a3.001 3.001 0 1 0 -2.83 3.998" /><circle cx={12} cy={12} r={3} /></svg>; +} + +export default IconSectionSign;
\ No newline at end of file diff --git a/icons-react/icons-js/square-asterisk.js b/icons-react/icons-js/square-asterisk.js new file mode 100644 index 00000000..1dd5354f --- /dev/null +++ b/icons-react/icons-js/square-asterisk.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSquareAsterisk({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-square-asterisk" 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="M12 8.5v7" /><path d="M9 10l6 4" /><path d="M9 14l6 -4" /></svg>; +} + +export default IconSquareAsterisk;
\ No newline at end of file diff --git a/icons-react/icons-js/square-rotated-forbid-2.js b/icons-react/icons-js/square-rotated-forbid-2.js new file mode 100644 index 00000000..04aafdf9 --- /dev/null +++ b/icons-react/icons-js/square-rotated-forbid-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSquareRotatedForbid2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-square-rotated-forbid-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="M10.5 20.4l-6.9 -6.9c-.781 -.781 -.781 -2.219 0 -3l6.9 -6.9c.781 -.781 2.219 -.781 3 0l6.9 6.9c.781 .781 .781 2.219 0 3l-6.9 6.9c-.781 .781 -2.219 .781 -3 0z" /><path d="M9.5 9.5l5 5" /></svg>; +} + +export default IconSquareRotatedForbid2;
\ No newline at end of file diff --git a/icons-react/icons-js/square-rotated-forbid.js b/icons-react/icons-js/square-rotated-forbid.js new file mode 100644 index 00000000..ea59ea36 --- /dev/null +++ b/icons-react/icons-js/square-rotated-forbid.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSquareRotatedForbid({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-square-rotated-forbid" 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.5 20.4l-6.9 -6.9c-.781 -.781 -.781 -2.219 0 -3l6.9 -6.9c.781 -.781 2.219 -.781 3 0l6.9 6.9c.781 .781 .781 2.219 0 3l-6.9 6.9c-.781 .781 -2.219 .781 -3 0z" /><path d="M9.5 14.5l5 -5" /></svg>; +} + +export default IconSquareRotatedForbid;
\ No newline at end of file diff --git a/icons-react/icons-js/sword.js b/icons-react/icons-js/sword.js new file mode 100644 index 00000000..a20827fa --- /dev/null +++ b/icons-react/icons-js/sword.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSword({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-sword" 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 4v5l-9 7l-4 4l-3 -3l4 -4l7 -9z" /><path d="M6.5 11.5l6 6" /></svg>; +} + +export default IconSword;
\ No newline at end of file diff --git a/icons-react/icons-js/timeline.js b/icons-react/icons-js/timeline.js new file mode 100644 index 00000000..1ddeed7d --- /dev/null +++ b/icons-react/icons-js/timeline.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTimeline({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-timeline" 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 16l6 -7l5 5l5 -6" /><circle cx={15} cy={14} r={1} /><circle cx={10} cy={9} r={1} /><circle cx={4} cy={16} r={1} /><circle cx={20} cy={8} r={1} /></svg>; +} + +export default IconTimeline;
\ No newline at end of file diff --git a/icons-react/icons-js/triangle-inverted.js b/icons-react/icons-js/triangle-inverted.js new file mode 100644 index 00000000..2ebb838b --- /dev/null +++ b/icons-react/icons-js/triangle-inverted.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTriangleInverted({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-triangle-inverted" 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 4h14a2 2 0 0 1 1.84 2.75l-7.1 12.25a2 2 0 0 1 -3.5 0l-7.1 -12.25a2 2 0 0 1 1.75 -2.75" /></svg>; +} + +export default IconTriangleInverted;
\ No newline at end of file diff --git a/icons-react/icons-js/usb.js b/icons-react/icons-js/usb.js index fdea6ff3..769b1ec1 100644 --- a/icons-react/icons-js/usb.js +++ b/icons-react/icons-js/usb.js @@ -6,7 +6,7 @@ function IconUsb({ stroke = 2, ...props }) { - return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-usb" 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={19} r={2} /><path d="M12 17v-11" /><path d="M7 10v3l5 3" /><path d="M12 14.5l5 -2v-2.5" /><path d="M16 10h2v-2h-2z" /><circle cx={7} cy={9} r={1} /><path d="M10 5.5h4l-2 -2.5z" /></svg>; + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-usb" 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={19} r={2} /><path d="M12 17v-11.5" /><path d="M7 10v3l5 3" /><path d="M12 14.5l5 -2v-2.5" /><path d="M16 10h2v-2h-2z" /><circle cx={7} cy={9} r={1} /><path d="M10 5.5h4l-2 -2.5z" /></svg>; } export default IconUsb;
\ No newline at end of file diff --git a/icons-react/icons-js/webhook.js b/icons-react/icons-js/webhook.js new file mode 100644 index 00000000..ee22d4c2 --- /dev/null +++ b/icons-react/icons-js/webhook.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconWebhook({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-webhook" 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.876 13.61a4 4 0 1 0 6.124 3.39h6" /><path d="M15.066 20.502a4 4 0 1 0 1.934 -7.502c-.706 0 -1.424 .179 -2 .5l-3 -5.5" /><path d="M16 8a4 4 0 1 0 -8 0c0 1.506 .77 2.818 2 3.5l-3 5.5" /></svg>; +} + +export default IconWebhook;
\ No newline at end of file diff --git a/icons-react/icons-js/yoga.js b/icons-react/icons-js/yoga.js new file mode 100644 index 00000000..226860fe --- /dev/null +++ b/icons-react/icons-js/yoga.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconYoga({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-yoga" 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={4} r={1} /><path d="M4 20h4l1.5 -3" /><path d="M17 20l-1 -5h-5l1 -7" /><path d="M4 10l4 -1l4 -1l4 1.5l4 1.5" /></svg>; +} + +export default IconYoga;
\ No newline at end of file diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts index 72e81cce..db46f865 100644 --- a/icons-react/index.d.ts +++ b/icons-react/index.d.ts @@ -6,6 +6,7 @@ type TablerIcon = FC<TablerIconProps>; export const Icon2fa: TablerIcon; export const Icon3dCubeSphere: TablerIcon; +export const Icon3dRotate: TablerIcon; export const IconAB: TablerIcon; export const IconAccessPointOff: TablerIcon; export const IconAccessPoint: TablerIcon; @@ -13,12 +14,14 @@ export const IconAccessible: TablerIcon; export const IconActivity: TablerIcon; export const IconAd2: TablerIcon; export const IconAd: TablerIcon; +export const IconAddressBook: TablerIcon; export const IconAdjustmentsAlt: TablerIcon; export const IconAdjustmentsHorizontal: TablerIcon; export const IconAdjustments: TablerIcon; export const IconAerialLift: TablerIcon; export const IconAffiliate: TablerIcon; export const IconAlarm: TablerIcon; +export const IconAlbum: TablerIcon; export const IconAlertCircle: TablerIcon; export const IconAlertOctagon: TablerIcon; export const IconAlertTriangle: TablerIcon; @@ -156,6 +159,7 @@ export const IconAsterisk: TablerIcon; export const IconAt: TablerIcon; export const IconAtom2: TablerIcon; export const IconAtom: TablerIcon; +export const IconAugmentedReality: TablerIcon; export const IconAward: TablerIcon; export const IconAxe: TablerIcon; export const IconAxisX: TablerIcon; @@ -178,6 +182,8 @@ export const IconBan: TablerIcon; export const IconBandage: TablerIcon; export const IconBarbell: TablerIcon; export const IconBarcode: TablerIcon; +export const IconBarrierBlock: TablerIcon; +export const IconBaseline: TablerIcon; export const IconBasket: TablerIcon; export const IconBath: TablerIcon; export const IconBattery1: TablerIcon; @@ -399,6 +405,7 @@ export const IconBus: TablerIcon; export const IconBusinessplan: TablerIcon; export const IconButterfly: TablerIcon; export const IconCSharp: TablerIcon; +export const IconCake: TablerIcon; export const IconCalculator: TablerIcon; export const IconCalendarEvent: TablerIcon; export const IconCalendarMinus: TablerIcon; @@ -496,7 +503,9 @@ export const IconCircleHalf: TablerIcon; export const IconCircleMinus: TablerIcon; export const IconCircleOff: TablerIcon; export const IconCirclePlus: TablerIcon; +export const IconCircleRectangle: TablerIcon; export const IconCircleSquare: TablerIcon; +export const IconCircleTriangle: TablerIcon; export const IconCircleX: TablerIcon; export const IconCircle: TablerIcon; export const IconCircles: TablerIcon; @@ -618,6 +627,7 @@ export const IconDatabaseExport: TablerIcon; export const IconDatabaseImport: TablerIcon; export const IconDatabaseOff: TablerIcon; export const IconDatabase: TablerIcon; +export const IconDental: TablerIcon; export const IconDetails: TablerIcon; export const IconDeviceAnalytics: TablerIcon; export const IconDeviceAudioTape: TablerIcon; @@ -634,6 +644,7 @@ export const IconDeviceMobileMessage: TablerIcon; export const IconDeviceMobileRotated: TablerIcon; export const IconDeviceMobileVibration: TablerIcon; export const IconDeviceMobile: TablerIcon; +export const IconDeviceNintendo: TablerIcon; export const IconDeviceSpeaker: TablerIcon; export const IconDeviceTablet: TablerIcon; export const IconDeviceTv: TablerIcon; @@ -691,6 +702,7 @@ export const IconEngine: TablerIcon; export const IconEqualNot: TablerIcon; export const IconEqual: TablerIcon; export const IconEraser: TablerIcon; +export const IconError404: TablerIcon; export const IconExchange: TablerIcon; export const IconExclamationMark: TablerIcon; export const IconExposure: TablerIcon; @@ -713,6 +725,7 @@ export const IconFileCertificate: TablerIcon; export const IconFileCheck: TablerIcon; export const IconFileCode2: TablerIcon; export const IconFileCode: TablerIcon; +export const IconFileDescription: TablerIcon; export const IconFileDiff: TablerIcon; export const IconFileDigit: TablerIcon; export const IconFileDislike: TablerIcon; @@ -732,6 +745,7 @@ export const IconFilePhone: TablerIcon; export const IconFilePlus: TablerIcon; export const IconFileReport: TablerIcon; export const IconFileSearch: TablerIcon; +export const IconFileSettings: TablerIcon; export const IconFileShredder: TablerIcon; export const IconFileSymlink: TablerIcon; export const IconFileText: TablerIcon; @@ -762,6 +776,7 @@ export const IconFloatNone: TablerIcon; export const IconFloatRight: TablerIcon; export const IconFlower: TablerIcon; export const IconFocus2: TablerIcon; +export const IconFocusCentered: TablerIcon; export const IconFocus: TablerIcon; export const IconFoldDown: TablerIcon; export const IconFoldUp: TablerIcon; @@ -793,6 +808,7 @@ export const IconGitMerge: TablerIcon; export const IconGitPullRequestClosed: TablerIcon; export const IconGitPullRequestDraft: TablerIcon; export const IconGitPullRequest: TablerIcon; +export const IconGizmo: TablerIcon; export const IconGlassFull: TablerIcon; export const IconGlassOff: TablerIcon; export const IconGlass: TablerIcon; @@ -893,6 +909,7 @@ export const IconLayoutBoard: TablerIcon; export const IconLayoutBottombar: TablerIcon; export const IconLayoutCards: TablerIcon; export const IconLayoutColumns: TablerIcon; +export const IconLayoutDashboard: TablerIcon; export const IconLayoutDistributeHorizontal: TablerIcon; export const IconLayoutDistributeVertical: TablerIcon; export const IconLayoutGridAdd: TablerIcon; @@ -943,7 +960,6 @@ export const IconLetterW: TablerIcon; export const IconLetterX: TablerIcon; export const IconLetterY: TablerIcon; export const IconLetterZ: TablerIcon; -export const IconLettersCase: TablerIcon; export const IconLicense: TablerIcon; export const IconLifebuoy: TablerIcon; export const IconLineDashed: TablerIcon; @@ -1003,10 +1019,12 @@ export const IconMedicalCross: TablerIcon; export const IconMedicineSyrup: TablerIcon; export const IconMenu2: TablerIcon; export const IconMenu: TablerIcon; +export const IconMessage2Code: TablerIcon; export const IconMessage2: TablerIcon; export const IconMessageCircle2: TablerIcon; export const IconMessageCircleOff: TablerIcon; export const IconMessageCircle: TablerIcon; +export const IconMessageCode: TablerIcon; export const IconMessageDots: TablerIcon; export const IconMessageLanguage: TablerIcon; export const IconMessageOff: TablerIcon; @@ -1060,6 +1078,7 @@ export const IconNfc: TablerIcon; export const IconNoCopyright: TablerIcon; export const IconNoCreativeCommons: TablerIcon; export const IconNoDerivatives: TablerIcon; +export const IconNorthStar: TablerIcon; export const IconNote: TablerIcon; export const IconNotebook: TablerIcon; export const IconNotes: TablerIcon; @@ -1074,6 +1093,7 @@ export const IconNumber6: TablerIcon; export const IconNumber7: TablerIcon; export const IconNumber8: TablerIcon; export const IconNumber9: TablerIcon; +export const IconNumbers: TablerIcon; export const IconNurse: TablerIcon; export const IconOctagonOff: TablerIcon; export const IconOctagon: TablerIcon; @@ -1081,6 +1101,8 @@ export const IconOld: TablerIcon; export const IconOlympics: TablerIcon; export const IconOmega: TablerIcon; export const IconOutlet: TablerIcon; +export const IconOvalVertical: TablerIcon; +export const IconOval: TablerIcon; export const IconOverline: TablerIcon; export const IconPackage: TablerIcon; export const IconPacman: TablerIcon; @@ -1089,6 +1111,7 @@ export const IconPaint: TablerIcon; export const IconPalette: TablerIcon; export const IconPanoramaHorizontal: TablerIcon; export const IconPanoramaVertical: TablerIcon; +export const IconPaperBag: TablerIcon; export const IconPaperclip: TablerIcon; export const IconParachute: TablerIcon; export const IconParentheses: TablerIcon; @@ -1169,6 +1192,8 @@ export const IconPyramid: TablerIcon; export const IconQrcode: TablerIcon; export const IconQuestionMark: TablerIcon; export const IconQuote: TablerIcon; +export const IconRadar2: TablerIcon; +export const IconRadar: TablerIcon; export const IconRadio: TablerIcon; export const IconRadioactive: TablerIcon; export const IconRadiusBottomLeft: TablerIcon; @@ -1204,6 +1229,7 @@ export const IconReport: TablerIcon; export const IconResize: TablerIcon; export const IconRipple: TablerIcon; export const IconRoadSign: TablerIcon; +export const IconRoad: TablerIcon; export const IconRobot: TablerIcon; export const IconRocket: TablerIcon; export const IconRollerSkating: TablerIcon; @@ -1237,6 +1263,7 @@ export const IconScreenShareOff: TablerIcon; export const IconScreenShare: TablerIcon; export const IconScubaMask: TablerIcon; export const IconSearch: TablerIcon; +export const IconSectionSign: TablerIcon; export const IconSection: TablerIcon; export const IconSeeding: TablerIcon; export const IconSelect: TablerIcon; @@ -1311,6 +1338,7 @@ export const IconSquare6: TablerIcon; export const IconSquare7: TablerIcon; export const IconSquare8: TablerIcon; export const IconSquare9: TablerIcon; +export const IconSquareAsterisk: TablerIcon; export const IconSquareCheck: TablerIcon; export const IconSquareDot: TablerIcon; export const IconSquareForbid2: TablerIcon; @@ -1321,6 +1349,8 @@ export const IconSquareOff: TablerIcon; export const IconSquarePlus: TablerIcon; export const IconSquareRoot2: TablerIcon; export const IconSquareRoot: TablerIcon; +export const IconSquareRotatedForbid2: TablerIcon; +export const IconSquareRotatedForbid: TablerIcon; export const IconSquareRotatedOff: TablerIcon; export const IconSquareRotated: TablerIcon; export const IconSquareToggleHorizontal: TablerIcon; @@ -1360,6 +1390,7 @@ export const IconSwitch3: TablerIcon; export const IconSwitchHorizontal: TablerIcon; export const IconSwitchVertical: TablerIcon; export const IconSwitch: TablerIcon; +export const IconSword: TablerIcon; export const IconTableExport: TablerIcon; export const IconTableImport: TablerIcon; export const IconTableOff: TablerIcon; @@ -1395,6 +1426,7 @@ export const IconThumbDown: TablerIcon; export const IconThumbUp: TablerIcon; export const IconTicket: TablerIcon; export const IconTiltShift: TablerIcon; +export const IconTimeline: TablerIcon; export const IconTir: TablerIcon; export const IconToggleLeft: TablerIcon; export const IconToggleRight: TablerIcon; @@ -1424,6 +1456,7 @@ export const IconTrendingDown: TablerIcon; export const IconTrendingUp2: TablerIcon; export const IconTrendingUp3: TablerIcon; export const IconTrendingUp: TablerIcon; +export const IconTriangleInverted: TablerIcon; export const IconTriangleOff: TablerIcon; export const IconTriangleSquareCircle: TablerIcon; export const IconTriangle: TablerIcon; @@ -1483,6 +1516,7 @@ export const IconWand: TablerIcon; export const IconWaveSawTool: TablerIcon; export const IconWaveSine: TablerIcon; export const IconWaveSquare: TablerIcon; +export const IconWebhook: TablerIcon; export const IconWifi0: TablerIcon; export const IconWifi1: TablerIcon; export const IconWifi2: TablerIcon; @@ -1504,6 +1538,7 @@ export const IconWritingSign: TablerIcon; export const IconWriting: TablerIcon; export const IconX: TablerIcon; export const IconYinYang: TablerIcon; +export const IconYoga: TablerIcon; export const IconZodiacAquarius: TablerIcon; export const IconZodiacAries: TablerIcon; export const IconZodiacCancer: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js index 85f1a7f4..a39c5c5d 100644 --- a/icons-react/index.js +++ b/icons-react/index.js @@ -1,5 +1,6 @@ export { default as Icon2fa } from './icons-js/2fa.js'; export { default as Icon3dCubeSphere } from './icons-js/3d-cube-sphere.js'; +export { default as Icon3dRotate } from './icons-js/3d-rotate.js'; export { default as IconAB } from './icons-js/a-b.js'; export { default as IconAccessPointOff } from './icons-js/access-point-off.js'; export { default as IconAccessPoint } from './icons-js/access-point.js'; @@ -7,12 +8,14 @@ export { default as IconAccessible } from './icons-js/accessible.js'; export { default as IconActivity } from './icons-js/activity.js'; export { default as IconAd2 } from './icons-js/ad-2.js'; export { default as IconAd } from './icons-js/ad.js'; +export { default as IconAddressBook } from './icons-js/address-book.js'; export { default as IconAdjustmentsAlt } from './icons-js/adjustments-alt.js'; export { default as IconAdjustmentsHorizontal } from './icons-js/adjustments-horizontal.js'; export { default as IconAdjustments } from './icons-js/adjustments.js'; export { default as IconAerialLift } from './icons-js/aerial-lift.js'; export { default as IconAffiliate } from './icons-js/affiliate.js'; export { default as IconAlarm } from './icons-js/alarm.js'; +export { default as IconAlbum } from './icons-js/album.js'; export { default as IconAlertCircle } from './icons-js/alert-circle.js'; export { default as IconAlertOctagon } from './icons-js/alert-octagon.js'; export { default as IconAlertTriangle } from './icons-js/alert-triangle.js'; @@ -150,6 +153,7 @@ export { default as IconAsterisk } from './icons-js/asterisk.js'; export { default as IconAt } from './icons-js/at.js'; export { default as IconAtom2 } from './icons-js/atom-2.js'; export { default as IconAtom } from './icons-js/atom.js'; +export { default as IconAugmentedReality } from './icons-js/augmented-reality.js'; export { default as IconAward } from './icons-js/award.js'; export { default as IconAxe } from './icons-js/axe.js'; export { default as IconAxisX } from './icons-js/axis-x.js'; @@ -172,6 +176,8 @@ export { default as IconBan } from './icons-js/ban.js'; export { default as IconBandage } from './icons-js/bandage.js'; export { default as IconBarbell } from './icons-js/barbell.js'; export { default as IconBarcode } from './icons-js/barcode.js'; +export { default as IconBarrierBlock } from './icons-js/barrier-block.js'; +export { default as IconBaseline } from './icons-js/baseline.js'; export { default as IconBasket } from './icons-js/basket.js'; export { default as IconBath } from './icons-js/bath.js'; export { default as IconBattery1 } from './icons-js/battery-1.js'; @@ -393,6 +399,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 IconCake } from './icons-js/cake.js'; export { default as IconCalculator } from './icons-js/calculator.js'; export { default as IconCalendarEvent } from './icons-js/calendar-event.js'; export { default as IconCalendarMinus } from './icons-js/calendar-minus.js'; @@ -490,7 +497,9 @@ export { default as IconCircleHalf } from './icons-js/circle-half.js'; export { default as IconCircleMinus } from './icons-js/circle-minus.js'; export { default as IconCircleOff } from './icons-js/circle-off.js'; export { default as IconCirclePlus } from './icons-js/circle-plus.js'; +export { default as IconCircleRectangle } from './icons-js/circle-rectangle.js'; export { default as IconCircleSquare } from './icons-js/circle-square.js'; +export { default as IconCircleTriangle } from './icons-js/circle-triangle.js'; export { default as IconCircleX } from './icons-js/circle-x.js'; export { default as IconCircle } from './icons-js/circle.js'; export { default as IconCircles } from './icons-js/circles.js'; @@ -612,6 +621,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 IconDental } from './icons-js/dental.js'; export { default as IconDetails } from './icons-js/details.js'; export { default as IconDeviceAnalytics } from './icons-js/device-analytics.js'; export { default as IconDeviceAudioTape } from './icons-js/device-audio-tape.js'; @@ -628,6 +638,7 @@ export { default as IconDeviceMobileMessage } from './icons-js/device-mobile-mes export { default as IconDeviceMobileRotated } from './icons-js/device-mobile-rotated.js'; export { default as IconDeviceMobileVibration } from './icons-js/device-mobile-vibration.js'; export { default as IconDeviceMobile } from './icons-js/device-mobile.js'; +export { default as IconDeviceNintendo } from './icons-js/device-nintendo.js'; export { default as IconDeviceSpeaker } from './icons-js/device-speaker.js'; export { default as IconDeviceTablet } from './icons-js/device-tablet.js'; export { default as IconDeviceTv } from './icons-js/device-tv.js'; @@ -685,6 +696,7 @@ export { default as IconEngine } from './icons-js/engine.js'; export { default as IconEqualNot } from './icons-js/equal-not.js'; export { default as IconEqual } from './icons-js/equal.js'; export { default as IconEraser } from './icons-js/eraser.js'; +export { default as IconError404 } from './icons-js/error-404.js'; export { default as IconExchange } from './icons-js/exchange.js'; export { default as IconExclamationMark } from './icons-js/exclamation-mark.js'; export { default as IconExposure } from './icons-js/exposure.js'; @@ -707,6 +719,7 @@ export { default as IconFileCertificate } from './icons-js/file-certificate.js'; export { default as IconFileCheck } from './icons-js/file-check.js'; export { default as IconFileCode2 } from './icons-js/file-code-2.js'; export { default as IconFileCode } from './icons-js/file-code.js'; +export { default as IconFileDescription } from './icons-js/file-description.js'; export { default as IconFileDiff } from './icons-js/file-diff.js'; export { default as IconFileDigit } from './icons-js/file-digit.js'; export { default as IconFileDislike } from './icons-js/file-dislike.js'; @@ -726,6 +739,7 @@ export { default as IconFilePhone } from './icons-js/file-phone.js'; export { default as IconFilePlus } from './icons-js/file-plus.js'; export { default as IconFileReport } from './icons-js/file-report.js'; export { default as IconFileSearch } from './icons-js/file-search.js'; +export { default as IconFileSettings } from './icons-js/file-settings.js'; export { default as IconFileShredder } from './icons-js/file-shredder.js'; export { default as IconFileSymlink } from './icons-js/file-symlink.js'; export { default as IconFileText } from './icons-js/file-text.js'; @@ -756,6 +770,7 @@ export { default as IconFloatNone } from './icons-js/float-none.js'; export { default as IconFloatRight } from './icons-js/float-right.js'; export { default as IconFlower } from './icons-js/flower.js'; export { default as IconFocus2 } from './icons-js/focus-2.js'; +export { default as IconFocusCentered } from './icons-js/focus-centered.js'; export { default as IconFocus } from './icons-js/focus.js'; export { default as IconFoldDown } from './icons-js/fold-down.js'; export { default as IconFoldUp } from './icons-js/fold-up.js'; @@ -787,6 +802,7 @@ export { default as IconGitMerge } from './icons-js/git-merge.js'; export { default as IconGitPullRequestClosed } from './icons-js/git-pull-request-closed.js'; export { default as IconGitPullRequestDraft } from './icons-js/git-pull-request-draft.js'; export { default as IconGitPullRequest } from './icons-js/git-pull-request.js'; +export { default as IconGizmo } from './icons-js/gizmo.js'; export { default as IconGlassFull } from './icons-js/glass-full.js'; export { default as IconGlassOff } from './icons-js/glass-off.js'; export { default as IconGlass } from './icons-js/glass.js'; @@ -887,6 +903,7 @@ export { default as IconLayoutBoard } from './icons-js/layout-board.js'; export { default as IconLayoutBottombar } from './icons-js/layout-bottombar.js'; export { default as IconLayoutCards } from './icons-js/layout-cards.js'; export { default as IconLayoutColumns } from './icons-js/layout-columns.js'; +export { default as IconLayoutDashboard } from './icons-js/layout-dashboard.js'; export { default as IconLayoutDistributeHorizontal } from './icons-js/layout-distribute-horizontal.js'; export { default as IconLayoutDistributeVertical } from './icons-js/layout-distribute-vertical.js'; export { default as IconLayoutGridAdd } from './icons-js/layout-grid-add.js'; @@ -937,7 +954,6 @@ export { default as IconLetterW } from './icons-js/letter-w.js'; export { default as IconLetterX } from './icons-js/letter-x.js'; export { default as IconLetterY } from './icons-js/letter-y.js'; export { default as IconLetterZ } from './icons-js/letter-z.js'; -export { default as IconLettersCase } from './icons-js/letters-case.js'; export { default as IconLicense } from './icons-js/license.js'; export { default as IconLifebuoy } from './icons-js/lifebuoy.js'; export { default as IconLineDashed } from './icons-js/line-dashed.js'; @@ -997,10 +1013,12 @@ export { default as IconMedicalCross } from './icons-js/medical-cross.js'; export { default as IconMedicineSyrup } from './icons-js/medicine-syrup.js'; export { default as IconMenu2 } from './icons-js/menu-2.js'; export { default as IconMenu } from './icons-js/menu.js'; +export { default as IconMessage2Code } from './icons-js/message-2-code.js'; export { default as IconMessage2 } from './icons-js/message-2.js'; export { default as IconMessageCircle2 } from './icons-js/message-circle-2.js'; export { default as IconMessageCircleOff } from './icons-js/message-circle-off.js'; 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 IconMessageLanguage } from './icons-js/message-language.js'; export { default as IconMessageOff } from './icons-js/message-off.js'; @@ -1054,6 +1072,7 @@ export { default as IconNfc } from './icons-js/nfc.js'; export { default as IconNoCopyright } from './icons-js/no-copyright.js'; export { default as IconNoCreativeCommons } from './icons-js/no-creative-commons.js'; export { default as IconNoDerivatives } from './icons-js/no-derivatives.js'; +export { default as IconNorthStar } from './icons-js/north-star.js'; export { default as IconNote } from './icons-js/note.js'; export { default as IconNotebook } from './icons-js/notebook.js'; export { default as IconNotes } from './icons-js/notes.js'; @@ -1068,6 +1087,7 @@ export { default as IconNumber6 } from './icons-js/number-6.js'; export { default as IconNumber7 } from './icons-js/number-7.js'; export { default as IconNumber8 } from './icons-js/number-8.js'; export { default as IconNumber9 } from './icons-js/number-9.js'; +export { default as IconNumbers } from './icons-js/numbers.js'; export { default as IconNurse } from './icons-js/nurse.js'; export { default as IconOctagonOff } from './icons-js/octagon-off.js'; export { default as IconOctagon } from './icons-js/octagon.js'; @@ -1075,6 +1095,8 @@ export { default as IconOld } from './icons-js/old.js'; export { default as IconOlympics } from './icons-js/olympics.js'; export { default as IconOmega } from './icons-js/omega.js'; export { default as IconOutlet } from './icons-js/outlet.js'; +export { default as IconOvalVertical } from './icons-js/oval-vertical.js'; +export { default as IconOval } from './icons-js/oval.js'; export { default as IconOverline } from './icons-js/overline.js'; export { default as IconPackage } from './icons-js/package.js'; export { default as IconPacman } from './icons-js/pacman.js'; @@ -1083,6 +1105,7 @@ export { default as IconPaint } from './icons-js/paint.js'; export { default as IconPalette } from './icons-js/palette.js'; export { default as IconPanoramaHorizontal } from './icons-js/panorama-horizontal.js'; export { default as IconPanoramaVertical } from './icons-js/panorama-vertical.js'; +export { default as IconPaperBag } from './icons-js/paper-bag.js'; export { default as IconPaperclip } from './icons-js/paperclip.js'; export { default as IconParachute } from './icons-js/parachute.js'; export { default as IconParentheses } from './icons-js/parentheses.js'; @@ -1163,6 +1186,8 @@ export { default as IconPyramid } from './icons-js/pyramid.js'; export { default as IconQrcode } from './icons-js/qrcode.js'; export { default as IconQuestionMark } from './icons-js/question-mark.js'; export { default as IconQuote } from './icons-js/quote.js'; +export { default as IconRadar2 } from './icons-js/radar-2.js'; +export { default as IconRadar } from './icons-js/radar.js'; export { default as IconRadio } from './icons-js/radio.js'; export { default as IconRadioactive } from './icons-js/radioactive.js'; export { default as IconRadiusBottomLeft } from './icons-js/radius-bottom-left.js'; @@ -1198,6 +1223,7 @@ export { default as IconReport } from './icons-js/report.js'; 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 IconRoad } from './icons-js/road.js'; export { default as IconRobot } from './icons-js/robot.js'; export { default as IconRocket } from './icons-js/rocket.js'; export { default as IconRollerSkating } from './icons-js/roller-skating.js'; @@ -1231,6 +1257,7 @@ export { default as IconScreenShareOff } from './icons-js/screen-share-off.js'; export { default as IconScreenShare } from './icons-js/screen-share.js'; export { default as IconScubaMask } from './icons-js/scuba-mask.js'; export { default as IconSearch } from './icons-js/search.js'; +export { default as IconSectionSign } from './icons-js/section-sign.js'; export { default as IconSection } from './icons-js/section.js'; export { default as IconSeeding } from './icons-js/seeding.js'; export { default as IconSelect } from './icons-js/select.js'; @@ -1305,6 +1332,7 @@ export { default as IconSquare6 } from './icons-js/square-6.js'; export { default as IconSquare7 } from './icons-js/square-7.js'; export { default as IconSquare8 } from './icons-js/square-8.js'; export { default as IconSquare9 } from './icons-js/square-9.js'; +export { default as IconSquareAsterisk } from './icons-js/square-asterisk.js'; export { default as IconSquareCheck } from './icons-js/square-check.js'; export { default as IconSquareDot } from './icons-js/square-dot.js'; export { default as IconSquareForbid2 } from './icons-js/square-forbid-2.js'; @@ -1315,6 +1343,8 @@ export { default as IconSquareOff } from './icons-js/square-off.js'; export { default as IconSquarePlus } from './icons-js/square-plus.js'; export { default as IconSquareRoot2 } from './icons-js/square-root-2.js'; export { default as IconSquareRoot } from './icons-js/square-root.js'; +export { default as IconSquareRotatedForbid2 } from './icons-js/square-rotated-forbid-2.js'; +export { default as IconSquareRotatedForbid } from './icons-js/square-rotated-forbid.js'; export { default as IconSquareRotatedOff } from './icons-js/square-rotated-off.js'; export { default as IconSquareRotated } from './icons-js/square-rotated.js'; export { default as IconSquareToggleHorizontal } from './icons-js/square-toggle-horizontal.js'; @@ -1354,6 +1384,7 @@ export { default as IconSwitch3 } from './icons-js/switch-3.js'; export { default as IconSwitchHorizontal } from './icons-js/switch-horizontal.js'; export { default as IconSwitchVertical } from './icons-js/switch-vertical.js'; export { default as IconSwitch } from './icons-js/switch.js'; +export { default as IconSword } from './icons-js/sword.js'; export { default as IconTableExport } from './icons-js/table-export.js'; export { default as IconTableImport } from './icons-js/table-import.js'; export { default as IconTableOff } from './icons-js/table-off.js'; @@ -1389,6 +1420,7 @@ export { default as IconThumbDown } from './icons-js/thumb-down.js'; export { default as IconThumbUp } from './icons-js/thumb-up.js'; export { default as IconTicket } from './icons-js/ticket.js'; export { default as IconTiltShift } from './icons-js/tilt-shift.js'; +export { default as IconTimeline } from './icons-js/timeline.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'; @@ -1418,6 +1450,7 @@ export { default as IconTrendingDown } from './icons-js/trending-down.js'; export { default as IconTrendingUp2 } from './icons-js/trending-up-2.js'; export { default as IconTrendingUp3 } from './icons-js/trending-up-3.js'; export { default as IconTrendingUp } from './icons-js/trending-up.js'; +export { default as IconTriangleInverted } from './icons-js/triangle-inverted.js'; export { default as IconTriangleOff } from './icons-js/triangle-off.js'; export { default as IconTriangleSquareCircle } from './icons-js/triangle-square-circle.js'; export { default as IconTriangle } from './icons-js/triangle.js'; @@ -1477,6 +1510,7 @@ export { default as IconWand } from './icons-js/wand.js'; export { default as IconWaveSawTool } from './icons-js/wave-saw-tool.js'; export { default as IconWaveSine } from './icons-js/wave-sine.js'; export { default as IconWaveSquare } from './icons-js/wave-square.js'; +export { default as IconWebhook } from './icons-js/webhook.js'; export { default as IconWifi0 } from './icons-js/wifi-0.js'; export { default as IconWifi1 } from './icons-js/wifi-1.js'; export { default as IconWifi2 } from './icons-js/wifi-2.js'; @@ -1498,6 +1532,7 @@ export { default as IconWritingSign } from './icons-js/writing-sign.js'; export { default as IconWriting } from './icons-js/writing.js'; export { default as IconX } from './icons-js/x.js'; export { default as IconYinYang } from './icons-js/yin-yang.js'; +export { default as IconYoga } from './icons-js/yoga.js'; export { default as IconZodiacAquarius } from './icons-js/zodiac-aquarius.js'; export { default as IconZodiacAries } from './icons-js/zodiac-aries.js'; export { default as IconZodiacCancer } from './icons-js/zodiac-cancer.js'; |