aboutsummaryrefslogtreecommitdiff
path: root/icons-react
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2020-12-11 13:42:20 +0100
committercodecalm <codecalm@gmail.com>2020-12-11 13:42:20 +0100
commita3e21c1343ff6a3f5ca5ab6f2973761f350ffe25 (patch)
treec7bfc0a64cc4ff2bfcbdb81aa8d845f870bea85f /icons-react
parent4 new icons: `receipt-2`, `receipt-off`, `receipt-refund`, `receipt` (diff)
downloadtabler-icons-a3e21c1343ff6a3f5ca5ab6f2973761f350ffe25.tar.xz
Release 1.38.0v1.38.0
Diffstat (limited to 'icons-react')
-rw-r--r--icons-react/icons-js/credit-card-off.js2
-rw-r--r--icons-react/icons-js/file-info.js12
-rw-r--r--icons-react/icons-js/file-report.js12
-rw-r--r--icons-react/icons-js/files-off.js12
-rw-r--r--icons-react/icons-js/files.js12
-rw-r--r--icons-react/icons-js/layout-grid-add.js2
-rw-r--r--icons-react/icons-js/number-0.js12
-rw-r--r--icons-react/icons-js/number-1.js12
-rw-r--r--icons-react/icons-js/number-2.js12
-rw-r--r--icons-react/icons-js/number-3.js12
-rw-r--r--icons-react/icons-js/number-4.js12
-rw-r--r--icons-react/icons-js/number-5.js12
-rw-r--r--icons-react/icons-js/number-6.js12
-rw-r--r--icons-react/icons-js/number-7.js12
-rw-r--r--icons-react/icons-js/number-8.js12
-rw-r--r--icons-react/icons-js/number-9.js12
-rw-r--r--icons-react/icons-js/receipt-2.js12
-rw-r--r--icons-react/icons-js/receipt-off.js12
-rw-r--r--icons-react/icons-js/receipt-refund.js12
-rw-r--r--icons-react/icons-js/receipt.js12
-rw-r--r--icons-react/index.d.ts18
-rw-r--r--icons-react/index.js18
22 files changed, 254 insertions, 2 deletions
diff --git a/icons-react/icons-js/credit-card-off.js b/icons-react/icons-js/credit-card-off.js
index 8981d618..a51f8d7c 100644
--- a/icons-react/icons-js/credit-card-off.js
+++ b/icons-react/icons-js/credit-card-off.js
@@ -6,7 +6,7 @@ function IconCreditCardOff({
stroke = 2,
...props
}) {
- return <svg className="icon icon-tabler icon-tabler-credit-card-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" /><line x1={3} y1={3} x2={21} y2={21} /><path d="" /><path d="M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87" /><line x1={3} y1={11} x2={11} y2={11} /><line x1={15} y1={11} x2={21} y2={11} /><line x1={7} y1={15} x2={7.01} y2={15} /><line x1={11} y1={15} x2={13} y2={15} /></svg>;
+ return <svg className="icon icon-tabler icon-tabler-credit-card-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" /><line x1={3} y1={3} x2={21} y2={21} /><path d="M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87" /><path d="M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87" /><line x1={3} y1={11} x2={11} y2={11} /><line x1={15} y1={11} x2={21} y2={11} /><line x1={7} y1={15} x2={7.01} y2={15} /><line x1={11} y1={15} x2={13} y2={15} /></svg>;
}
export default IconCreditCardOff; \ No newline at end of file
diff --git a/icons-react/icons-js/file-info.js b/icons-react/icons-js/file-info.js
new file mode 100644
index 00000000..2225b52c
--- /dev/null
+++ b/icons-react/icons-js/file-info.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileInfo({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-file-info" 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="M11 14h1v4h1" /><path d="M12 11h.01" /></svg>;
+}
+
+export default IconFileInfo; \ No newline at end of file
diff --git a/icons-react/icons-js/file-report.js b/icons-react/icons-js/file-report.js
new file mode 100644
index 00000000..f60041a3
--- /dev/null
+++ b/icons-react/icons-js/file-report.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileReport({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-file-report" 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={17} cy={17} r={4} /><path d="M17 13v4h4" /><path d="M12 3v4a1 1 0 0 0 1 1h4" /><path d="M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2m0 3v4" /></svg>;
+}
+
+export default IconFileReport; \ No newline at end of file
diff --git a/icons-react/icons-js/files-off.js b/icons-react/icons-js/files-off.js
new file mode 100644
index 00000000..103cadb5
--- /dev/null
+++ b/icons-react/icons-js/files-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFilesOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-files-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="M15 3v4a1 1 0 0 0 1 1h4" /><path d="M17 17h-6a2 2 0 0 1 -2 -2v-6m0 -4a2 2 0 0 1 2 -2h4l5 5v7c0 .294 -.063 .572 -.177 .823" /><path d="M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2" /><line x1={3} y1={3} x2={21} y2={21} /></svg>;
+}
+
+export default IconFilesOff; \ No newline at end of file
diff --git a/icons-react/icons-js/files.js b/icons-react/icons-js/files.js
new file mode 100644
index 00000000..9fd440bb
--- /dev/null
+++ b/icons-react/icons-js/files.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFiles({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-files" 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="M15 3v4a1 1 0 0 0 1 1h4" /><path d="M18 17h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h4l5 5v7a2 2 0 0 1 -2 2z" /><path d="M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2" /></svg>;
+}
+
+export default IconFiles; \ No newline at end of file
diff --git a/icons-react/icons-js/layout-grid-add.js b/icons-react/icons-js/layout-grid-add.js
index a17f363f..ba0cadb3 100644
--- a/icons-react/icons-js/layout-grid-add.js
+++ b/icons-react/icons-js/layout-grid-add.js
@@ -6,7 +6,7 @@ function IconLayoutGridAdd({
stroke = 2,
...props
}) {
- return <svg className="icon icon-tabler icon-tabler-layout-grid-add" 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={6} height={6} rx={1} /><rect x={14} y={4} width={6} height={6} rx={1} /><rect x={4} y={14} width={6} height={6} rx={1} /><rect x={14} y={14} width={6} height={6} rx={1} /></svg>;
+ return <svg className="icon icon-tabler icon-tabler-layout-grid-add" 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={6} height={6} rx={1} /><rect x={14} y={4} width={6} height={6} rx={1} /><rect x={4} y={14} width={6} height={6} rx={1} /><path d="M14 17h6" /><path d="M17 14v6" /></svg>;
}
export default IconLayoutGridAdd; \ No newline at end of file
diff --git a/icons-react/icons-js/number-0.js b/icons-react/icons-js/number-0.js
new file mode 100644
index 00000000..6c15ba0f
--- /dev/null
+++ b/icons-react/icons-js/number-0.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconNumber0({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-number-0" 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 16v-8" /><path d="M12 20a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4z" /></svg>;
+}
+
+export default IconNumber0; \ No newline at end of file
diff --git a/icons-react/icons-js/number-1.js b/icons-react/icons-js/number-1.js
new file mode 100644
index 00000000..20dec997
--- /dev/null
+++ b/icons-react/icons-js/number-1.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconNumber1({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-number-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="M13 20v-16l-5 5" /></svg>;
+}
+
+export default IconNumber1; \ No newline at end of file
diff --git a/icons-react/icons-js/number-2.js b/icons-react/icons-js/number-2.js
new file mode 100644
index 00000000..08b3523d
--- /dev/null
+++ b/icons-react/icons-js/number-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconNumber2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-number-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="M8 8a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 9.185h8" /></svg>;
+}
+
+export default IconNumber2; \ No newline at end of file
diff --git a/icons-react/icons-js/number-3.js b/icons-react/icons-js/number-3.js
new file mode 100644
index 00000000..4ca4f476
--- /dev/null
+++ b/icons-react/icons-js/number-3.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconNumber3({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-number-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="M12 12a4 4 0 1 0 -4 -4" /><path d="M8 16a4 4 0 1 0 4 -4" /></svg>;
+}
+
+export default IconNumber3; \ No newline at end of file
diff --git a/icons-react/icons-js/number-4.js b/icons-react/icons-js/number-4.js
new file mode 100644
index 00000000..f8ecf16a
--- /dev/null
+++ b/icons-react/icons-js/number-4.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconNumber4({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-number-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="M15 20v-15l-8 11h10" /></svg>;
+}
+
+export default IconNumber4; \ No newline at end of file
diff --git a/icons-react/icons-js/number-5.js b/icons-react/icons-js/number-5.js
new file mode 100644
index 00000000..805e2b9a
--- /dev/null
+++ b/icons-react/icons-js/number-5.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconNumber5({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-number-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="M8 20h4a4 4 0 1 0 0 -8h-4v-8h8" /></svg>;
+}
+
+export default IconNumber5; \ No newline at end of file
diff --git a/icons-react/icons-js/number-6.js b/icons-react/icons-js/number-6.js
new file mode 100644
index 00000000..13e22d59
--- /dev/null
+++ b/icons-react/icons-js/number-6.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconNumber6({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-number-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" /><path d="M8 16a4 4 0 1 0 8 0v-1a4 4 0 1 0 -8 0" /><path d="M16 8a4 4 0 1 0 -8 0v8" /></svg>;
+}
+
+export default IconNumber6; \ No newline at end of file
diff --git a/icons-react/icons-js/number-7.js b/icons-react/icons-js/number-7.js
new file mode 100644
index 00000000..5a2b9f11
--- /dev/null
+++ b/icons-react/icons-js/number-7.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconNumber7({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-number-7" 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 4h8l-4 16" /></svg>;
+}
+
+export default IconNumber7; \ No newline at end of file
diff --git a/icons-react/icons-js/number-8.js b/icons-react/icons-js/number-8.js
new file mode 100644
index 00000000..4c66dd05
--- /dev/null
+++ b/icons-react/icons-js/number-8.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconNumber8({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-number-8" 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={8} r={4} /><circle cx={12} cy={16} r={4} /></svg>;
+}
+
+export default IconNumber8; \ No newline at end of file
diff --git a/icons-react/icons-js/number-9.js b/icons-react/icons-js/number-9.js
new file mode 100644
index 00000000..7684cf0f
--- /dev/null
+++ b/icons-react/icons-js/number-9.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconNumber9({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-number-9" 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 8a4 4 0 1 0 -8 0v1a4 4 0 1 0 8 0" /><path d="M8 16a4 4 0 1 0 8 0v-8" /></svg>;
+}
+
+export default IconNumber9; \ No newline at end of file
diff --git a/icons-react/icons-js/receipt-2.js b/icons-react/icons-js/receipt-2.js
new file mode 100644
index 00000000..26c5d75b
--- /dev/null
+++ b/icons-react/icons-js/receipt-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconReceipt2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-receipt-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="M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2" /><path d="M14 8h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1.5m0 -9v1.5" /></svg>;
+}
+
+export default IconReceipt2; \ No newline at end of file
diff --git a/icons-react/icons-js/receipt-off.js b/icons-react/icons-js/receipt-off.js
new file mode 100644
index 00000000..abd91cf2
--- /dev/null
+++ b/icons-react/icons-js/receipt-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconReceiptOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-receipt-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="M5 21v-16m2 -2h10a2 2 0 0 1 2 2v10m0 4.01v1.99l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2" /><line x1={11} y1={7} x2={15} y2={7} /><line x1={9} y1={11} x2={11} y2={11} /><line x1={13} y1={15} x2={15} y2={15} /><line x1={15} y1={11} x2={15} y2={11.01} /><line x1={3} y1={3} x2={21} y2={21} /></svg>;
+}
+
+export default IconReceiptOff; \ No newline at end of file
diff --git a/icons-react/icons-js/receipt-refund.js b/icons-react/icons-js/receipt-refund.js
new file mode 100644
index 00000000..7e7d0656
--- /dev/null
+++ b/icons-react/icons-js/receipt-refund.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconReceiptRefund({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-receipt-refund" 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 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2" /><path d="M15 14v-2a2 2 0 0 0 -2 -2h-4l2 -2m0 4l-2 -2" /></svg>;
+}
+
+export default IconReceiptRefund; \ No newline at end of file
diff --git a/icons-react/icons-js/receipt.js b/icons-react/icons-js/receipt.js
new file mode 100644
index 00000000..58a5d235
--- /dev/null
+++ b/icons-react/icons-js/receipt.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconReceipt({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-receipt" 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 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m4 -14h6m-6 4h6m-2 4h2" /></svg>;
+}
+
+export default IconReceipt; \ No newline at end of file
diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts
index 1ff1aebf..d709677c 100644
--- a/icons-react/index.d.ts
+++ b/icons-react/index.d.ts
@@ -450,6 +450,7 @@ export const IconFileDownload: TablerIcon;
export const IconFileExport: TablerIcon;
export const IconFileHorizontal: TablerIcon;
export const IconFileImport: TablerIcon;
+export const IconFileInfo: TablerIcon;
export const IconFileInvoice: TablerIcon;
export const IconFileLike: TablerIcon;
export const IconFileMinus: TablerIcon;
@@ -457,6 +458,7 @@ export const IconFileMusic: TablerIcon;
export const IconFileOff: TablerIcon;
export const IconFilePhone: TablerIcon;
export const IconFilePlus: TablerIcon;
+export const IconFileReport: TablerIcon;
export const IconFileSearch: TablerIcon;
export const IconFileShredder: TablerIcon;
export const IconFileSymlink: TablerIcon;
@@ -465,6 +467,8 @@ export const IconFileUpload: TablerIcon;
export const IconFileX: TablerIcon;
export const IconFileZip: TablerIcon;
export const IconFile: TablerIcon;
+export const IconFilesOff: TablerIcon;
+export const IconFiles: TablerIcon;
export const IconFilterOff: TablerIcon;
export const IconFilter: TablerIcon;
export const IconFingerprint: TablerIcon;
@@ -681,6 +685,16 @@ export const IconNote: TablerIcon;
export const IconNotebook: TablerIcon;
export const IconNotes: TablerIcon;
export const IconNotification: TablerIcon;
+export const IconNumber0: TablerIcon;
+export const IconNumber1: TablerIcon;
+export const IconNumber2: TablerIcon;
+export const IconNumber3: TablerIcon;
+export const IconNumber4: TablerIcon;
+export const IconNumber5: TablerIcon;
+export const IconNumber6: TablerIcon;
+export const IconNumber7: TablerIcon;
+export const IconNumber8: TablerIcon;
+export const IconNumber9: TablerIcon;
export const IconOctagon: TablerIcon;
export const IconOmega: TablerIcon;
export const IconOutlet: TablerIcon;
@@ -746,7 +760,11 @@ export const IconQrcode: TablerIcon;
export const IconQuestionMark: TablerIcon;
export const IconRadioactive: TablerIcon;
export const IconRainbow: TablerIcon;
+export const IconReceipt2: TablerIcon;
+export const IconReceiptOff: TablerIcon;
+export const IconReceiptRefund: TablerIcon;
export const IconReceiptTax: TablerIcon;
+export const IconReceipt: TablerIcon;
export const IconRecordMail: TablerIcon;
export const IconRectangleVertical: TablerIcon;
export const IconRectangle: TablerIcon;
diff --git a/icons-react/index.js b/icons-react/index.js
index 5ed56e76..3695be9c 100644
--- a/icons-react/index.js
+++ b/icons-react/index.js
@@ -444,6 +444,7 @@ export { default as IconFileDownload } from './icons-js/file-download.js';
export { default as IconFileExport } from './icons-js/file-export.js';
export { default as IconFileHorizontal } from './icons-js/file-horizontal.js';
export { default as IconFileImport } from './icons-js/file-import.js';
+export { default as IconFileInfo } from './icons-js/file-info.js';
export { default as IconFileInvoice } from './icons-js/file-invoice.js';
export { default as IconFileLike } from './icons-js/file-like.js';
export { default as IconFileMinus } from './icons-js/file-minus.js';
@@ -451,6 +452,7 @@ export { default as IconFileMusic } from './icons-js/file-music.js';
export { default as IconFileOff } from './icons-js/file-off.js';
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 IconFileShredder } from './icons-js/file-shredder.js';
export { default as IconFileSymlink } from './icons-js/file-symlink.js';
@@ -459,6 +461,8 @@ export { default as IconFileUpload } from './icons-js/file-upload.js';
export { default as IconFileX } from './icons-js/file-x.js';
export { default as IconFileZip } from './icons-js/file-zip.js';
export { default as IconFile } from './icons-js/file.js';
+export { default as IconFilesOff } from './icons-js/files-off.js';
+export { default as IconFiles } from './icons-js/files.js';
export { default as IconFilterOff } from './icons-js/filter-off.js';
export { default as IconFilter } from './icons-js/filter.js';
export { default as IconFingerprint } from './icons-js/fingerprint.js';
@@ -675,6 +679,16 @@ 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';
export { default as IconNotification } from './icons-js/notification.js';
+export { default as IconNumber0 } from './icons-js/number-0.js';
+export { default as IconNumber1 } from './icons-js/number-1.js';
+export { default as IconNumber2 } from './icons-js/number-2.js';
+export { default as IconNumber3 } from './icons-js/number-3.js';
+export { default as IconNumber4 } from './icons-js/number-4.js';
+export { default as IconNumber5 } from './icons-js/number-5.js';
+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 IconOctagon } from './icons-js/octagon.js';
export { default as IconOmega } from './icons-js/omega.js';
export { default as IconOutlet } from './icons-js/outlet.js';
@@ -740,7 +754,11 @@ export { default as IconQrcode } from './icons-js/qrcode.js';
export { default as IconQuestionMark } from './icons-js/question-mark.js';
export { default as IconRadioactive } from './icons-js/radioactive.js';
export { default as IconRainbow } from './icons-js/rainbow.js';
+export { default as IconReceipt2 } from './icons-js/receipt-2.js';
+export { default as IconReceiptOff } from './icons-js/receipt-off.js';
+export { default as IconReceiptRefund } from './icons-js/receipt-refund.js';
export { default as IconReceiptTax } from './icons-js/receipt-tax.js';
+export { default as IconReceipt } from './icons-js/receipt.js';
export { default as IconRecordMail } from './icons-js/record-mail.js';
export { default as IconRectangleVertical } from './icons-js/rectangle-vertical.js';
export { default as IconRectangle } from './icons-js/rectangle.js';