diff options
Diffstat (limited to 'icons-react')
41 files changed, 533 insertions, 5 deletions
diff --git a/icons-react/icons-js/ballpen.js b/icons-react/icons-js/ballpen.js new file mode 100644 index 00000000..01430bd3 --- /dev/null +++ b/icons-react/icons-js/ballpen.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBallpen({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ballpen" 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 6l7 7l-4 4" /><path d="M5.828 18.172a2.828 2.828 0 0 0 4 0l10.586 -10.586a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-10.586 10.586a2.828 2.828 0 0 0 0 4z" /><path d="M4 20l1.768 -1.768" /></svg>; +} + +export default IconBallpen;
\ No newline at end of file diff --git a/icons-react/icons-js/barell.js b/icons-react/icons-js/barell.js new file mode 100644 index 00000000..3cb84f3f --- /dev/null +++ b/icons-react/icons-js/barell.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBarell({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-barell" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M6.222 4h11.556c1.481 2.37 2.222 5.037 2.222 8s-.74 5.63 -2.222 8h-11.556c-1.481 -2.37 -2.222 -5.037 -2.222 -8s.74 -5.63 2.222 -8z" /><path d="M15 4c.667 2.667 1 5.333 1 8s-.333 5.333 -1 8" /><path d="M9 4c-.667 2.667 -1 5.333 -1 8s.333 5.333 1 8" /><path d="M4.5 16h15" /><path d="M19.5 8h-15" /></svg>; +} + +export default IconBarell;
\ No newline at end of file diff --git a/icons-react/icons-js/bluetooth-x.js b/icons-react/icons-js/bluetooth-x.js new file mode 100644 index 00000000..6df843d1 --- /dev/null +++ b/icons-react/icons-js/bluetooth-x.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBluetoothX({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-bluetooth-x" 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 8l10 8l-5 4v-16l1.003 .802m0 6.396l-6.003 4.802" /><path d="M16 6l4 4" /><path d="M20 6l-4 4" /></svg>; +} + +export default IconBluetoothX;
\ No newline at end of file diff --git a/icons-react/icons-js/book-download.js b/icons-react/icons-js/book-download.js new file mode 100644 index 00000000..12769ab2 --- /dev/null +++ b/icons-react/icons-js/book-download.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBookDownload({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-book-download" 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 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5" /><path d="M13 16h-7a2 2 0 0 0 -2 2" /><path d="M15 19l3 3l3 -3" /><path d="M18 22v-9" /></svg>; +} + +export default IconBookDownload;
\ No newline at end of file diff --git a/icons-react/icons-js/book-upload.js b/icons-react/icons-js/book-upload.js new file mode 100644 index 00000000..cab9ae7f --- /dev/null +++ b/icons-react/icons-js/book-upload.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBookUpload({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-book-upload" 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 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5" /><path d="M11 16h-5a2 2 0 0 0 -2 2" /><path d="M15 16l3 -3l3 3" /><path d="M18 13v9" /></svg>; +} + +export default IconBookUpload;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-mercedes.js b/icons-react/icons-js/brand-mercedes.js new file mode 100644 index 00000000..5517929d --- /dev/null +++ b/icons-react/icons-js/brand-mercedes.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandMercedes({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-mercedes" 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 3v9" /><path d="M12 12l7 5" /><path d="M12 12l-7 5" /></svg>; +} + +export default IconBrandMercedes;
\ No newline at end of file diff --git a/icons-react/icons-js/building-factory-2.js b/icons-react/icons-js/building-factory-2.js new file mode 100644 index 00000000..437ac787 --- /dev/null +++ b/icons-react/icons-js/building-factory-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBuildingFactory2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-building-factory-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="M3 21h18" /><path d="M5 21v-12l5 4v-4l5 4h4" /><path d="M19 21v-8l-1.436 -9.574a0.5 .5 0 0 0 -.495 -.426h-1.145a0.5 .5 0 0 0 -.494 .418l-1.43 8.582" /><path d="M9 17h1" /><path d="M14 17h1" /></svg>; +} + +export default IconBuildingFactory2;
\ No newline at end of file diff --git a/icons-react/icons-js/cell-signal-1.js b/icons-react/icons-js/cell-signal-1.js new file mode 100644 index 00000000..a78c019b --- /dev/null +++ b/icons-react/icons-js/cell-signal-1.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCellSignal1({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cell-signal-1" 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 20h-15.269a0.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a0.731 .731 0 0 1 1.249 .517v15.269z" /></svg>; +} + +export default IconCellSignal1;
\ No newline at end of file diff --git a/icons-react/icons-js/cell-signal-2.js b/icons-react/icons-js/cell-signal-2.js new file mode 100644 index 00000000..e6291fe7 --- /dev/null +++ b/icons-react/icons-js/cell-signal-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCellSignal2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cell-signal-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="M20 20h-15.269a0.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a0.731 .731 0 0 1 1.249 .517v15.269z" /><path d="M8 20v-5" /></svg>; +} + +export default IconCellSignal2;
\ No newline at end of file diff --git a/icons-react/icons-js/cell-signal-3.js b/icons-react/icons-js/cell-signal-3.js new file mode 100644 index 00000000..764d5340 --- /dev/null +++ b/icons-react/icons-js/cell-signal-3.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCellSignal3({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cell-signal-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="M20 20h-15.269a0.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a0.731 .731 0 0 1 1.249 .517v15.269z" /><path d="M12 20v-9" /></svg>; +} + +export default IconCellSignal3;
\ No newline at end of file diff --git a/icons-react/icons-js/cell-signal-4.js b/icons-react/icons-js/cell-signal-4.js new file mode 100644 index 00000000..6b27cb8a --- /dev/null +++ b/icons-react/icons-js/cell-signal-4.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCellSignal4({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cell-signal-4" 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 20h-15.269a0.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a0.731 .731 0 0 1 1.249 .517v15.269z" /><path d="M16 7v13" /></svg>; +} + +export default IconCellSignal4;
\ No newline at end of file diff --git a/icons-react/icons-js/cell-signal-5.js b/icons-react/icons-js/cell-signal-5.js new file mode 100644 index 00000000..336a2c6f --- /dev/null +++ b/icons-react/icons-js/cell-signal-5.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCellSignal5({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cell-signal-5" 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 20h-15.269a0.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a0.731 .731 0 0 1 1.249 .517v15.269z" /><path d="M16 7v13" /><path d="M12 20v-9" /><path d="M8 20v-5" /></svg>; +} + +export default IconCellSignal5;
\ No newline at end of file diff --git a/icons-react/icons-js/cell-signal-off.js b/icons-react/icons-js/cell-signal-off.js new file mode 100644 index 00000000..9651211e --- /dev/null +++ b/icons-react/icons-js/cell-signal-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCellSignalOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cell-signal-off" 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 20h-15.269a0.731 .731 0 0 1 -.517 -1.249l7.265 -7.264m2 -2.001l5.272 -5.272a0.731 .731 0 0 1 1.249 .517v11.269" /><path d="M3 3l18 18" /></svg>; +} + +export default IconCellSignalOff;
\ No newline at end of file diff --git a/icons-react/icons-js/certificate-2.js b/icons-react/icons-js/certificate-2.js new file mode 100644 index 00000000..23ad202f --- /dev/null +++ b/icons-react/icons-js/certificate-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCertificate2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-certificate-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={15} r={3} /><path d="M10 7h4" /><path d="M10 18v4l2 -1l2 1v-4" /><path d="M10 19h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2" /></svg>; +} + +export default IconCertificate2;
\ No newline at end of file diff --git a/icons-react/icons-js/checklist.js b/icons-react/icons-js/checklist.js new file mode 100644 index 00000000..635a14f9 --- /dev/null +++ b/icons-react/icons-js/checklist.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconChecklist({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-checklist" 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.615 20h-2.615a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8" /><path d="M14 19l2 2l4 -4" /><path d="M9 8h4" /><path d="M9 12h2" /></svg>; +} + +export default IconChecklist;
\ No newline at end of file diff --git a/icons-react/icons-js/clipboard-text.js b/icons-react/icons-js/clipboard-text.js new file mode 100644 index 00000000..67acb398 --- /dev/null +++ b/icons-react/icons-js/clipboard-text.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconClipboardText({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clipboard-text" 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 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2" /><rect x={9} y={3} width={6} height={4} rx={2} /><path d="M9 12h6" /><path d="M9 16h6" /></svg>; +} + +export default IconClipboardText;
\ No newline at end of file diff --git a/icons-react/icons-js/cpu-2.js b/icons-react/icons-js/cpu-2.js new file mode 100644 index 00000000..734e60e9 --- /dev/null +++ b/icons-react/icons-js/cpu-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCpu2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cpu-2" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><rect x={5} y={5} width={14} height={14} rx={1} /><path d="M8 10v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2" /><path d="M3 10h2" /><path d="M3 14h2" /><path d="M10 3v2" /><path d="M14 3v2" /><path d="M21 10h-2" /><path d="M21 14h-2" /><path d="M14 21v-2" /><path d="M10 21v-2" /></svg>; +} + +export default IconCpu2;
\ No newline at end of file diff --git a/icons-react/icons-js/currency-baht.js b/icons-react/icons-js/currency-baht.js new file mode 100644 index 00000000..d93696de --- /dev/null +++ b/icons-react/icons-js/currency-baht.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCurrencyBaht({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-currency-baht" 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 6h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143" /><path d="M8 12h5a3 3 0 0 1 3 3v.143a2.857 2.857 0 0 1 -2.857 2.857h-5.143" /><path d="M8 6v12" /><path d="M11 4v2" /><path d="M11 18v2" /></svg>; +} + +export default IconCurrencyBaht;
\ No newline at end of file diff --git a/icons-react/icons-js/dice-1.js b/icons-react/icons-js/dice-1.js new file mode 100644 index 00000000..1faa1807 --- /dev/null +++ b/icons-react/icons-js/dice-1.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDice1({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-dice-1" 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} /><circle cx={12} cy={12} r={0.5} fill="currentColor" /></svg>; +} + +export default IconDice1;
\ No newline at end of file diff --git a/icons-react/icons-js/dice-2.js b/icons-react/icons-js/dice-2.js new file mode 100644 index 00000000..7c30b51a --- /dev/null +++ b/icons-react/icons-js/dice-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDice2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-dice-2" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><rect x={4} y={4} width={16} height={16} rx={2} /><circle cx={9.5} cy={9.5} r={0.5} fill="currentColor" /><circle cx={14.5} cy={14.5} r={0.5} fill="currentColor" /></svg>; +} + +export default IconDice2;
\ No newline at end of file diff --git a/icons-react/icons-js/dice-3.js b/icons-react/icons-js/dice-3.js new file mode 100644 index 00000000..93f5e116 --- /dev/null +++ b/icons-react/icons-js/dice-3.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDice3({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-dice-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" /><rect x={4} y={4} width={16} height={16} rx={2} /><circle cx={8.5} cy={8.5} r={0.5} fill="currentColor" /><circle cx={15.5} cy={15.5} r={0.5} fill="currentColor" /><circle cx={12} cy={12} r={0.5} fill="currentColor" /></svg>; +} + +export default IconDice3;
\ No newline at end of file diff --git a/icons-react/icons-js/dice-4.js b/icons-react/icons-js/dice-4.js new file mode 100644 index 00000000..07dbb977 --- /dev/null +++ b/icons-react/icons-js/dice-4.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDice4({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-dice-4" 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} /><circle cx={8.5} cy={8.5} r={0.5} fill="currentColor" /><circle cx={15.5} cy={8.5} r={0.5} fill="currentColor" /><circle cx={15.5} cy={15.5} r={0.5} fill="currentColor" /><circle cx={8.5} cy={15.5} r={0.5} fill="currentColor" /></svg>; +} + +export default IconDice4;
\ No newline at end of file diff --git a/icons-react/icons-js/dice-5.js b/icons-react/icons-js/dice-5.js new file mode 100644 index 00000000..00a9b4de --- /dev/null +++ b/icons-react/icons-js/dice-5.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDice5({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-dice-5" 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} /><circle cx={8.5} cy={8.5} r={0.5} fill="currentColor" /><circle cx={15.5} cy={8.5} r={0.5} fill="currentColor" /><circle cx={15.5} cy={15.5} r={0.5} fill="currentColor" /><circle cx={8.5} cy={15.5} r={0.5} fill="currentColor" /><circle cx={12} cy={12} r={0.5} fill="currentColor" /></svg>; +} + +export default IconDice5;
\ No newline at end of file diff --git a/icons-react/icons-js/dice-6.js b/icons-react/icons-js/dice-6.js new file mode 100644 index 00000000..53183bb7 --- /dev/null +++ b/icons-react/icons-js/dice-6.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDice6({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-dice-6" 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} /><circle cx={8.5} cy={7.5} r={0.5} fill="currentColor" /><circle cx={15.5} cy={7.5} r={0.5} fill="currentColor" /><circle cx={8.5} cy={12} r={0.5} fill="currentColor" /><circle cx={15.5} cy={12} r={0.5} fill="currentColor" /><circle cx={15.5} cy={16.5} r={0.5} fill="currentColor" /><circle cx={8.5} cy={16.5} r={0.5} fill="currentColor" /></svg>; +} + +export default IconDice6;
\ No newline at end of file diff --git a/icons-react/icons-js/hand-grab.js b/icons-react/icons-js/hand-grab.js new file mode 100644 index 00000000..2651823f --- /dev/null +++ b/icons-react/icons-js/hand-grab.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconHandGrab({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-hand-grab" 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 11v-3.5a1.5 1.5 0 0 1 3 0v2.5" /><path d="M11 9.5v-3a1.5 1.5 0 0 1 3 0v3.5" /><path d="M14 7.5a1.5 1.5 0 0 1 3 0v2.5" /><path d="M17 9.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47" /></svg>; +} + +export default IconHandGrab;
\ No newline at end of file diff --git a/icons-react/icons-js/hourglass-high.js b/icons-react/icons-js/hourglass-high.js new file mode 100644 index 00000000..da48037e --- /dev/null +++ b/icons-react/icons-js/hourglass-high.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconHourglassHigh({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-hourglass-high" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M6.5 7h11" /><path d="M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z" /><path d="M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z" /></svg>; +} + +export default IconHourglassHigh;
\ No newline at end of file diff --git a/icons-react/icons-js/hourglass-low.js b/icons-react/icons-js/hourglass-low.js new file mode 100644 index 00000000..d95d9a49 --- /dev/null +++ b/icons-react/icons-js/hourglass-low.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconHourglassLow({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-hourglass-low" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M6.5 17h11" /><path d="M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z" /><path d="M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z" /></svg>; +} + +export default IconHourglassLow;
\ No newline at end of file diff --git a/icons-react/icons-js/id-badge-2.js b/icons-react/icons-js/id-badge-2.js new file mode 100644 index 00000000..5aada2fc --- /dev/null +++ b/icons-react/icons-js/id-badge-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconIdBadge2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-id-badge-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="M7 12h3v4h-3z" /><path d="M10 6h-6a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-12a1 1 0 0 0 -1 -1h-6" /><rect x={10} y={3} width={4} height={5} rx={1} /><path d="M14 16h2" /><path d="M14 12h4" /></svg>; +} + +export default IconIdBadge2;
\ No newline at end of file diff --git a/icons-react/icons-js/message-2-share.js b/icons-react/icons-js/message-2-share.js new file mode 100644 index 00000000..7dad8481 --- /dev/null +++ b/icons-react/icons-js/message-2-share.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMessage2Share({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-message-2-share" 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 4h4v4" /><path d="M20 11v3a3 3 0 0 1 -3 3h-2l-3 3l-3 -3h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h7" /><path d="M16 9l5 -5" /></svg>; +} + +export default IconMessage2Share;
\ No newline at end of file diff --git a/icons-react/icons-js/message-share.js b/icons-react/icons-js/message-share.js new file mode 100644 index 00000000..74455c0e --- /dev/null +++ b/icons-react/icons-js/message-share.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMessageShare({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-message-share" 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 11v3a3 3 0 0 1 -3 3h-9l-4 4v-13a3 3 0 0 1 3 -3h7" /><path d="M17 4h4v4" /><path d="M16 9l5 -5" /></svg>; +} + +export default IconMessageShare;
\ No newline at end of file diff --git a/icons-react/icons-js/military-award.js b/icons-react/icons-js/military-award.js new file mode 100644 index 00000000..025a0a00 --- /dev/null +++ b/icons-react/icons-js/military-award.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMilitaryAward({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-military-award" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={13} r={4} /><path d="M9 10l-1 -2h-5l2.48 5.788a2 2 0 0 0 1.84 1.212h1.18" /><path d="M15 10l1 -2h5l-2.48 5.788a2 2 0 0 1 -1.84 1.212h-1.18" /></svg>; +} + +export default IconMilitaryAward;
\ No newline at end of file diff --git a/icons-react/icons-js/packge-export.js b/icons-react/icons-js/packge-export.js new file mode 100644 index 00000000..4978acaf --- /dev/null +++ b/icons-react/icons-js/packge-export.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPackgeExport({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-packge-export" 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 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5" /><path d="M12 12l8 -4.5" /><path d="M12 12v9" /><path d="M12 12l-8 -4.5" /><path d="M15 18h7" /><path d="M19 15l3 3l-3 3" /></svg>; +} + +export default IconPackgeExport;
\ No newline at end of file diff --git a/icons-react/icons-js/packge-import.js b/icons-react/icons-js/packge-import.js new file mode 100644 index 00000000..7a509e63 --- /dev/null +++ b/icons-react/icons-js/packge-import.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPackgeImport({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-packge-import" 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 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5" /><path d="M12 12l8 -4.5" /><path d="M12 12v9" /><path d="M12 12l-8 -4.5" /><path d="M22 18h-7" /><path d="M18 15l-3 3l3 3" /></svg>; +} + +export default IconPackgeImport;
\ No newline at end of file diff --git a/icons-react/icons-js/server-2.js b/icons-react/icons-js/server-2.js new file mode 100644 index 00000000..40ea8e12 --- /dev/null +++ b/icons-react/icons-js/server-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconServer2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-server-2" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><rect x={3} y={4} width={18} height={8} rx={3} /><rect x={3} y={12} width={18} height={8} rx={3} /><line x1={7} y1={8} x2={7} y2={8.01} /><line x1={7} y1={16} x2={7} y2={16.01} /><path d="M11 8h6" /><path d="M11 16h6" /></svg>; +} + +export default IconServer2;
\ No newline at end of file diff --git a/icons-react/icons-js/telescope.js b/icons-react/icons-js/telescope.js new file mode 100644 index 00000000..ac808e01 --- /dev/null +++ b/icons-react/icons-js/telescope.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTelescope({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-telescope" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M6 21l6 -5l6 5" /><path d="M12 13v8" /><path d="M3.294 13.678l.166 .281c.52 .88 1.624 1.265 2.605 .91l14.242 -5.165a1.023 1.023 0 0 0 .565 -1.456l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-12.694 7.618c-1.02 .613 -1.357 1.897 -.76 2.905z" /><path d="M14 5l3 5.5" /></svg>; +} + +export default IconTelescope;
\ No newline at end of file diff --git a/icons-react/icons-js/test-pipe.js b/icons-react/icons-js/test-pipe.js index 01a687ed..693481a7 100644 --- a/icons-react/icons-js/test-pipe.js +++ b/icons-react/icons-js/test-pipe.js @@ -6,7 +6,7 @@ function IconTestPipe({ stroke = 2, ...props }) { - return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-test-pipe" 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 4l3 3l-12.35 12.35a1.5 1.5 0 0 1 -3 -3l12.35 -12.35" /><line x1={10} y1={10} x2={16} y2={10} /><path d="M19 15l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6" /></svg>; + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-test-pipe" 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 8.04l-12.122 12.124a2.857 2.857 0 1 1 -4.041 -4.04l12.122 -12.124" /><path d="M7 13h8" /><path d="M19 15l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6z" /><path d="M15 3l6 6" /></svg>; } export default IconTestPipe;
\ No newline at end of file diff --git a/icons-react/icons-js/tie.js b/icons-react/icons-js/tie.js new file mode 100644 index 00000000..63ee05bc --- /dev/null +++ b/icons-react/icons-js/tie.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTie({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-tie" 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 22l4 -4l-2.5 -11l.993 -2.649a1 1 0 0 0 -.936 -1.351h-3.114a1 1 0 0 0 -.936 1.351l.993 2.649l-2.5 11l4 4z" /><path d="M10.5 7h3l5 5.5" /></svg>; +} + +export default IconTie;
\ No newline at end of file diff --git a/icons-react/icons-js/zoom-code.js b/icons-react/icons-js/zoom-code.js new file mode 100644 index 00000000..728ab685 --- /dev/null +++ b/icons-react/icons-js/zoom-code.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconZoomCode({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-zoom-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" /><circle cx={10} cy={10} r={7} /><path d="M21 21l-6 -6" /><path d="M8 8l-2 2l2 2" /><path d="M12 8l2 2l-2 2" /></svg>; +} + +export default IconZoomCode;
\ No newline at end of file diff --git a/icons-react/icons-js/zoom-exclamation.js b/icons-react/icons-js/zoom-exclamation.js new file mode 100644 index 00000000..63be048f --- /dev/null +++ b/icons-react/icons-js/zoom-exclamation.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconZoomExclamation({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-zoom-exclamation" 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={10} cy={10} r={7} /><path d="M21 21l-6 -6" /><path d="M10 13v.01" /><path d="M10 7v3" /></svg>; +} + +export default IconZoomExclamation;
\ No newline at end of file diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts index 6fd80fe9..c0726d8a 100644 --- a/icons-react/index.d.ts +++ b/icons-react/index.d.ts @@ -204,10 +204,12 @@ export const IconBallFootball: TablerIcon; export const IconBallTennis: TablerIcon; export const IconBallVolleyball: TablerIcon; export const IconBallon: TablerIcon; +export const IconBallpen: TablerIcon; export const IconBan: TablerIcon; export const IconBandage: TablerIcon; export const IconBarbell: TablerIcon; export const IconBarcode: TablerIcon; +export const IconBarell: TablerIcon; export const IconBarrierBlock: TablerIcon; export const IconBaseline: TablerIcon; export const IconBasket: TablerIcon; @@ -241,6 +243,7 @@ export const IconBiohazard: TablerIcon; export const IconBlockquote: TablerIcon; export const IconBluetoothConnected: TablerIcon; export const IconBluetoothOff: TablerIcon; +export const IconBluetoothX: TablerIcon; export const IconBluetooth: TablerIcon; export const IconBlur: TablerIcon; export const IconBold: TablerIcon; @@ -248,6 +251,8 @@ export const IconBoltOff: TablerIcon; export const IconBolt: TablerIcon; export const IconBone: TablerIcon; export const IconBook2: TablerIcon; +export const IconBookDownload: TablerIcon; +export const IconBookUpload: TablerIcon; export const IconBook: TablerIcon; export const IconBookmarkOff: TablerIcon; export const IconBookmark: TablerIcon; @@ -338,6 +343,7 @@ export const IconBrandLinkedin: TablerIcon; export const IconBrandLoom: TablerIcon; export const IconBrandMastercard: TablerIcon; export const IconBrandMedium: TablerIcon; +export const IconBrandMercedes: TablerIcon; export const IconBrandMessenger: TablerIcon; export const IconBrandMeta: TablerIcon; export const IconBrandNetbeans: TablerIcon; @@ -415,6 +421,7 @@ export const IconBuildingCastle: TablerIcon; export const IconBuildingChurch: TablerIcon; export const IconBuildingCommunity: TablerIcon; export const IconBuildingCottage: TablerIcon; +export const IconBuildingFactory2: TablerIcon; export const IconBuildingFactory: TablerIcon; export const IconBuildingFortress: TablerIcon; export const IconBuildingHospital: TablerIcon; @@ -464,7 +471,14 @@ export const IconCashBanknote: TablerIcon; export const IconCash: TablerIcon; export const IconCast: TablerIcon; export const IconCe: TablerIcon; +export const IconCellSignal1: TablerIcon; +export const IconCellSignal2: TablerIcon; +export const IconCellSignal3: TablerIcon; +export const IconCellSignal4: TablerIcon; +export const IconCellSignal5: TablerIcon; +export const IconCellSignalOff: TablerIcon; export const IconCell: TablerIcon; +export const IconCertificate2: TablerIcon; export const IconCertificate: TablerIcon; export const IconChargingPile: TablerIcon; export const IconChartArcs3: TablerIcon; @@ -491,6 +505,7 @@ export const IconChartPie: TablerIcon; export const IconChartRadar: TablerIcon; export const IconCheck: TablerIcon; export const IconCheckbox: TablerIcon; +export const IconChecklist: TablerIcon; export const IconChecks: TablerIcon; export const IconCheckupList: TablerIcon; export const IconCheese: TablerIcon; @@ -543,6 +558,7 @@ export const IconClick: TablerIcon; export const IconClipboardCheck: TablerIcon; export const IconClipboardList: TablerIcon; export const IconClipboardPlus: TablerIcon; +export const IconClipboardText: TablerIcon; export const IconClipboardX: TablerIcon; export const IconClipboard: TablerIcon; export const IconClock: TablerIcon; @@ -597,6 +613,7 @@ export const IconCornerUpLeftDouble: TablerIcon; export const IconCornerUpLeft: TablerIcon; export const IconCornerUpRightDouble: TablerIcon; export const IconCornerUpRight: TablerIcon; +export const IconCpu2: TablerIcon; export const IconCpu: TablerIcon; export const IconCrane: TablerIcon; export const IconCreativeCommons: TablerIcon; @@ -612,7 +629,7 @@ export const IconCup: TablerIcon; export const IconCurling: TablerIcon; export const IconCurlyLoop: TablerIcon; export const IconCurrencyBahraini: TablerIcon; -export const IconCurrencyBath: TablerIcon; +export const IconCurrencyBaht: TablerIcon; export const IconCurrencyBitcoin: TablerIcon; export const IconCurrencyCent: TablerIcon; export const IconCurrencyDinar: TablerIcon; @@ -692,6 +709,12 @@ export const IconDevices: TablerIcon; export const IconDialpad: TablerIcon; export const IconDiamond: TablerIcon; export const IconDiamonds: TablerIcon; +export const IconDice1: TablerIcon; +export const IconDice2: TablerIcon; +export const IconDice3: TablerIcon; +export const IconDice4: TablerIcon; +export const IconDice5: TablerIcon; +export const IconDice6: TablerIcon; export const IconDice: TablerIcon; export const IconDimensions: TablerIcon; export const IconDirectionHorizontal: TablerIcon; @@ -886,6 +909,7 @@ export const IconH6: TablerIcon; export const IconHammer: TablerIcon; export const IconHandClick: TablerIcon; export const IconHandFinger: TablerIcon; +export const IconHandGrab: TablerIcon; export const IconHandLittleFinger: TablerIcon; export const IconHandMiddleFinger: TablerIcon; export const IconHandMove: TablerIcon; @@ -919,10 +943,13 @@ export const IconHistory: TablerIcon; export const IconHome2: TablerIcon; export const IconHome: TablerIcon; export const IconHotelService: TablerIcon; +export const IconHourglassHigh: TablerIcon; +export const IconHourglassLow: TablerIcon; export const IconHourglass: TablerIcon; export const IconIceCream2: TablerIcon; export const IconIceCream: TablerIcon; export const IconIceSkating: TablerIcon; +export const IconIdBadge2: TablerIcon; export const IconIdBadge: TablerIcon; export const IconId: TablerIcon; export const IconInbox: TablerIcon; @@ -1076,6 +1103,7 @@ export const IconMedicineSyrup: TablerIcon; export const IconMenu2: TablerIcon; export const IconMenu: TablerIcon; export const IconMessage2Code: TablerIcon; +export const IconMessage2Share: TablerIcon; export const IconMessage2: TablerIcon; export const IconMessageCircle2: TablerIcon; export const IconMessageCircleOff: TablerIcon; @@ -1086,6 +1114,7 @@ export const IconMessageLanguage: TablerIcon; export const IconMessageOff: TablerIcon; export const IconMessagePlus: TablerIcon; export const IconMessageReport: TablerIcon; +export const IconMessageShare: TablerIcon; export const IconMessage: TablerIcon; export const IconMessagesOff: TablerIcon; export const IconMessages: TablerIcon; @@ -1093,7 +1122,7 @@ export const IconMicrophone2: TablerIcon; export const IconMicrophoneOff: TablerIcon; export const IconMicrophone: TablerIcon; export const IconMicroscope: TablerIcon; -export const IconMiliratyAward: TablerIcon; +export const IconMilitaryAward: TablerIcon; export const IconMilitaryRank: TablerIcon; export const IconMilk: TablerIcon; export const IconMinimize: TablerIcon; @@ -1161,6 +1190,8 @@ export const IconOvalVertical: TablerIcon; export const IconOval: TablerIcon; export const IconOverline: TablerIcon; export const IconPackage: TablerIcon; +export const IconPackgeExport: TablerIcon; +export const IconPackgeImport: TablerIcon; export const IconPacman: TablerIcon; export const IconPageBreak: TablerIcon; export const IconPaint: TablerIcon; @@ -1329,6 +1360,7 @@ export const IconSend: TablerIcon; export const IconSeparatorHorizontal: TablerIcon; export const IconSeparatorVertical: TablerIcon; export const IconSeparator: TablerIcon; +export const IconServer2: TablerIcon; export const IconServer: TablerIcon; export const IconServicemark: TablerIcon; export const IconSettingsAutomation: TablerIcon; @@ -1465,6 +1497,7 @@ export const IconTallymark4: TablerIcon; export const IconTallymarks: TablerIcon; export const IconTank: TablerIcon; export const IconTarget: TablerIcon; +export const IconTelescope: TablerIcon; export const IconTemperatureCelsius: TablerIcon; export const IconTemperatureFahrenheit: TablerIcon; export const IconTemperatureMinus: TablerIcon; @@ -1484,6 +1517,7 @@ export const IconThermometer: TablerIcon; export const IconThumbDown: TablerIcon; export const IconThumbUp: TablerIcon; export const IconTicket: TablerIcon; +export const IconTie: TablerIcon; export const IconTiltShift: TablerIcon; export const IconTimeline: TablerIcon; export const IconTir: TablerIcon; @@ -1613,6 +1647,8 @@ export const IconZodiacTaurus: TablerIcon; export const IconZodiacVirgo: TablerIcon; export const IconZoomCancel: TablerIcon; export const IconZoomCheck: TablerIcon; +export const IconZoomCode: TablerIcon; +export const IconZoomExclamation: TablerIcon; export const IconZoomIn: TablerIcon; export const IconZoomMoney: TablerIcon; export const IconZoomOut: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js index 97d4a489..fe157eb0 100644 --- a/icons-react/index.js +++ b/icons-react/index.js @@ -198,10 +198,12 @@ export { default as IconBallFootball } from './icons-js/ball-football.js'; export { default as IconBallTennis } from './icons-js/ball-tennis.js'; export { default as IconBallVolleyball } from './icons-js/ball-volleyball.js'; export { default as IconBallon } from './icons-js/ballon.js'; +export { default as IconBallpen } from './icons-js/ballpen.js'; 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 IconBarell } from './icons-js/barell.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'; @@ -235,6 +237,7 @@ export { default as IconBiohazard } from './icons-js/biohazard.js'; export { default as IconBlockquote } from './icons-js/blockquote.js'; export { default as IconBluetoothConnected } from './icons-js/bluetooth-connected.js'; export { default as IconBluetoothOff } from './icons-js/bluetooth-off.js'; +export { default as IconBluetoothX } from './icons-js/bluetooth-x.js'; export { default as IconBluetooth } from './icons-js/bluetooth.js'; export { default as IconBlur } from './icons-js/blur.js'; export { default as IconBold } from './icons-js/bold.js'; @@ -242,6 +245,8 @@ export { default as IconBoltOff } from './icons-js/bolt-off.js'; export { default as IconBolt } from './icons-js/bolt.js'; export { default as IconBone } from './icons-js/bone.js'; export { default as IconBook2 } from './icons-js/book-2.js'; +export { default as IconBookDownload } from './icons-js/book-download.js'; +export { default as IconBookUpload } from './icons-js/book-upload.js'; export { default as IconBook } from './icons-js/book.js'; export { default as IconBookmarkOff } from './icons-js/bookmark-off.js'; export { default as IconBookmark } from './icons-js/bookmark.js'; @@ -332,6 +337,7 @@ export { default as IconBrandLinkedin } from './icons-js/brand-linkedin.js'; export { default as IconBrandLoom } from './icons-js/brand-loom.js'; export { default as IconBrandMastercard } from './icons-js/brand-mastercard.js'; export { default as IconBrandMedium } from './icons-js/brand-medium.js'; +export { default as IconBrandMercedes } from './icons-js/brand-mercedes.js'; export { default as IconBrandMessenger } from './icons-js/brand-messenger.js'; export { default as IconBrandMeta } from './icons-js/brand-meta.js'; export { default as IconBrandNetbeans } from './icons-js/brand-netbeans.js'; @@ -409,6 +415,7 @@ export { default as IconBuildingCastle } from './icons-js/building-castle.js'; export { default as IconBuildingChurch } from './icons-js/building-church.js'; export { default as IconBuildingCommunity } from './icons-js/building-community.js'; export { default as IconBuildingCottage } from './icons-js/building-cottage.js'; +export { default as IconBuildingFactory2 } from './icons-js/building-factory-2.js'; export { default as IconBuildingFactory } from './icons-js/building-factory.js'; export { default as IconBuildingFortress } from './icons-js/building-fortress.js'; export { default as IconBuildingHospital } from './icons-js/building-hospital.js'; @@ -458,7 +465,14 @@ export { default as IconCashBanknote } from './icons-js/cash-banknote.js'; export { default as IconCash } from './icons-js/cash.js'; export { default as IconCast } from './icons-js/cast.js'; export { default as IconCe } from './icons-js/ce.js'; +export { default as IconCellSignal1 } from './icons-js/cell-signal-1.js'; +export { default as IconCellSignal2 } from './icons-js/cell-signal-2.js'; +export { default as IconCellSignal3 } from './icons-js/cell-signal-3.js'; +export { default as IconCellSignal4 } from './icons-js/cell-signal-4.js'; +export { default as IconCellSignal5 } from './icons-js/cell-signal-5.js'; +export { default as IconCellSignalOff } from './icons-js/cell-signal-off.js'; export { default as IconCell } from './icons-js/cell.js'; +export { default as IconCertificate2 } from './icons-js/certificate-2.js'; export { default as IconCertificate } from './icons-js/certificate.js'; export { default as IconChargingPile } from './icons-js/charging-pile.js'; export { default as IconChartArcs3 } from './icons-js/chart-arcs-3.js'; @@ -485,6 +499,7 @@ export { default as IconChartPie } from './icons-js/chart-pie.js'; export { default as IconChartRadar } from './icons-js/chart-radar.js'; export { default as IconCheck } from './icons-js/check.js'; export { default as IconCheckbox } from './icons-js/checkbox.js'; +export { default as IconChecklist } from './icons-js/checklist.js'; export { default as IconChecks } from './icons-js/checks.js'; export { default as IconCheckupList } from './icons-js/checkup-list.js'; export { default as IconCheese } from './icons-js/cheese.js'; @@ -537,6 +552,7 @@ export { default as IconClick } from './icons-js/click.js'; export { default as IconClipboardCheck } from './icons-js/clipboard-check.js'; export { default as IconClipboardList } from './icons-js/clipboard-list.js'; export { default as IconClipboardPlus } from './icons-js/clipboard-plus.js'; +export { default as IconClipboardText } from './icons-js/clipboard-text.js'; export { default as IconClipboardX } from './icons-js/clipboard-x.js'; export { default as IconClipboard } from './icons-js/clipboard.js'; export { default as IconClock } from './icons-js/clock.js'; @@ -591,6 +607,7 @@ export { default as IconCornerUpLeftDouble } from './icons-js/corner-up-left-dou export { default as IconCornerUpLeft } from './icons-js/corner-up-left.js'; export { default as IconCornerUpRightDouble } from './icons-js/corner-up-right-double.js'; export { default as IconCornerUpRight } from './icons-js/corner-up-right.js'; +export { default as IconCpu2 } from './icons-js/cpu-2.js'; export { default as IconCpu } from './icons-js/cpu.js'; export { default as IconCrane } from './icons-js/crane.js'; export { default as IconCreativeCommons } from './icons-js/creative-commons.js'; @@ -606,7 +623,7 @@ export { default as IconCup } from './icons-js/cup.js'; export { default as IconCurling } from './icons-js/curling.js'; export { default as IconCurlyLoop } from './icons-js/curly-loop.js'; export { default as IconCurrencyBahraini } from './icons-js/currency-bahraini.js'; -export { default as IconCurrencyBath } from './icons-js/currency-bath.js'; +export { default as IconCurrencyBaht } from './icons-js/currency-baht.js'; export { default as IconCurrencyBitcoin } from './icons-js/currency-bitcoin.js'; export { default as IconCurrencyCent } from './icons-js/currency-cent.js'; export { default as IconCurrencyDinar } from './icons-js/currency-dinar.js'; @@ -686,6 +703,12 @@ export { default as IconDevices } from './icons-js/devices.js'; export { default as IconDialpad } from './icons-js/dialpad.js'; export { default as IconDiamond } from './icons-js/diamond.js'; export { default as IconDiamonds } from './icons-js/diamonds.js'; +export { default as IconDice1 } from './icons-js/dice-1.js'; +export { default as IconDice2 } from './icons-js/dice-2.js'; +export { default as IconDice3 } from './icons-js/dice-3.js'; +export { default as IconDice4 } from './icons-js/dice-4.js'; +export { default as IconDice5 } from './icons-js/dice-5.js'; +export { default as IconDice6 } from './icons-js/dice-6.js'; export { default as IconDice } from './icons-js/dice.js'; export { default as IconDimensions } from './icons-js/dimensions.js'; export { default as IconDirectionHorizontal } from './icons-js/direction-horizontal.js'; @@ -880,6 +903,7 @@ export { default as IconH6 } from './icons-js/h-6.js'; export { default as IconHammer } from './icons-js/hammer.js'; export { default as IconHandClick } from './icons-js/hand-click.js'; export { default as IconHandFinger } from './icons-js/hand-finger.js'; +export { default as IconHandGrab } from './icons-js/hand-grab.js'; export { default as IconHandLittleFinger } from './icons-js/hand-little-finger.js'; export { default as IconHandMiddleFinger } from './icons-js/hand-middle-finger.js'; export { default as IconHandMove } from './icons-js/hand-move.js'; @@ -913,10 +937,13 @@ export { default as IconHistory } from './icons-js/history.js'; export { default as IconHome2 } from './icons-js/home-2.js'; export { default as IconHome } from './icons-js/home.js'; export { default as IconHotelService } from './icons-js/hotel-service.js'; +export { default as IconHourglassHigh } from './icons-js/hourglass-high.js'; +export { default as IconHourglassLow } from './icons-js/hourglass-low.js'; export { default as IconHourglass } from './icons-js/hourglass.js'; export { default as IconIceCream2 } from './icons-js/ice-cream-2.js'; export { default as IconIceCream } from './icons-js/ice-cream.js'; export { default as IconIceSkating } from './icons-js/ice-skating.js'; +export { default as IconIdBadge2 } from './icons-js/id-badge-2.js'; export { default as IconIdBadge } from './icons-js/id-badge.js'; export { default as IconId } from './icons-js/id.js'; export { default as IconInbox } from './icons-js/inbox.js'; @@ -1070,6 +1097,7 @@ 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 IconMessage2Share } from './icons-js/message-2-share.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'; @@ -1080,6 +1108,7 @@ 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'; export { default as IconMessageReport } from './icons-js/message-report.js'; +export { default as IconMessageShare } from './icons-js/message-share.js'; export { default as IconMessage } from './icons-js/message.js'; export { default as IconMessagesOff } from './icons-js/messages-off.js'; export { default as IconMessages } from './icons-js/messages.js'; @@ -1087,7 +1116,7 @@ export { default as IconMicrophone2 } from './icons-js/microphone-2.js'; export { default as IconMicrophoneOff } from './icons-js/microphone-off.js'; export { default as IconMicrophone } from './icons-js/microphone.js'; export { default as IconMicroscope } from './icons-js/microscope.js'; -export { default as IconMiliratyAward } from './icons-js/miliraty-award.js'; +export { default as IconMilitaryAward } from './icons-js/military-award.js'; export { default as IconMilitaryRank } from './icons-js/military-rank.js'; export { default as IconMilk } from './icons-js/milk.js'; export { default as IconMinimize } from './icons-js/minimize.js'; @@ -1155,6 +1184,8 @@ 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 IconPackgeExport } from './icons-js/packge-export.js'; +export { default as IconPackgeImport } from './icons-js/packge-import.js'; export { default as IconPacman } from './icons-js/pacman.js'; export { default as IconPageBreak } from './icons-js/page-break.js'; export { default as IconPaint } from './icons-js/paint.js'; @@ -1323,6 +1354,7 @@ export { default as IconSend } from './icons-js/send.js'; export { default as IconSeparatorHorizontal } from './icons-js/separator-horizontal.js'; export { default as IconSeparatorVertical } from './icons-js/separator-vertical.js'; export { default as IconSeparator } from './icons-js/separator.js'; +export { default as IconServer2 } from './icons-js/server-2.js'; export { default as IconServer } from './icons-js/server.js'; export { default as IconServicemark } from './icons-js/servicemark.js'; export { default as IconSettingsAutomation } from './icons-js/settings-automation.js'; @@ -1459,6 +1491,7 @@ export { default as IconTallymark4 } from './icons-js/tallymark-4.js'; export { default as IconTallymarks } from './icons-js/tallymarks.js'; export { default as IconTank } from './icons-js/tank.js'; export { default as IconTarget } from './icons-js/target.js'; +export { default as IconTelescope } from './icons-js/telescope.js'; export { default as IconTemperatureCelsius } from './icons-js/temperature-celsius.js'; export { default as IconTemperatureFahrenheit } from './icons-js/temperature-fahrenheit.js'; export { default as IconTemperatureMinus } from './icons-js/temperature-minus.js'; @@ -1478,6 +1511,7 @@ export { default as IconThermometer } from './icons-js/thermometer.js'; 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 IconTie } from './icons-js/tie.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'; @@ -1607,6 +1641,8 @@ export { default as IconZodiacTaurus } from './icons-js/zodiac-taurus.js'; export { default as IconZodiacVirgo } from './icons-js/zodiac-virgo.js'; export { default as IconZoomCancel } from './icons-js/zoom-cancel.js'; export { default as IconZoomCheck } from './icons-js/zoom-check.js'; +export { default as IconZoomCode } from './icons-js/zoom-code.js'; +export { default as IconZoomExclamation } from './icons-js/zoom-exclamation.js'; export { default as IconZoomIn } from './icons-js/zoom-in.js'; export { default as IconZoomMoney } from './icons-js/zoom-money.js'; export { default as IconZoomOut } from './icons-js/zoom-out.js'; |