aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2022-03-16 12:55:37 +0100
committercodecalm <codecalm@gmail.com>2022-03-16 12:55:37 +0100
commit56b147e939648ca2a61aff34ba112c39fc1f784a (patch)
tree01dd2d0bfb35ed16e158a0df61f43b840b56cf14 /icons-react/icons-js
parentdependencies update (diff)
downloadtabler-icons-56b147e939648ca2a61aff34ba112c39fc1f784a.tar.xz
Release 1.56.0v1.56.0
Diffstat (limited to 'icons-react/icons-js')
-rw-r--r--icons-react/icons-js/file-3d.js12
-rw-r--r--icons-react/icons-js/file-arrow-left.js12
-rw-r--r--icons-react/icons-js/file-arrow-right.js12
-rw-r--r--icons-react/icons-js/file-barcode.js12
-rw-r--r--icons-react/icons-js/file-chart.js12
-rw-r--r--icons-react/icons-js/file-database.js12
-rw-r--r--icons-react/icons-js/file-dots.js12
-rw-r--r--icons-react/icons-js/file-download.js2
-rw-r--r--icons-react/icons-js/file-pencil.js12
-rw-r--r--icons-react/icons-js/file-power.js12
-rw-r--r--icons-react/icons-js/file-rss.js12
-rw-r--r--icons-react/icons-js/file-scissors.js12
-rw-r--r--icons-react/icons-js/file-signal.js12
-rw-r--r--icons-react/icons-js/file-spreadsheet.js12
-rw-r--r--icons-react/icons-js/file-star.js12
-rw-r--r--icons-react/icons-js/file-time.js12
-rw-r--r--icons-react/icons-js/file-typography.js12
-rw-r--r--icons-react/icons-js/file-unknown.js12
-rw-r--r--icons-react/icons-js/file-upload.js2
-rw-r--r--icons-react/icons-js/file-vector.js12
20 files changed, 218 insertions, 2 deletions
diff --git a/icons-react/icons-js/file-3d.js b/icons-react/icons-js/file-3d.js
new file mode 100644
index 00000000..ffefd49e
--- /dev/null
+++ b/icons-react/icons-js/file-3d.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFile3d({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-3d" 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="M12 13.5l4 -1.5" /><path d="M8 11.846l4 1.654v4.5l4 -1.846v-4.308l-4 -1.846z" /><path d="M8 12v4.2l4 1.8" /></svg>;
+}
+
+export default IconFile3d; \ No newline at end of file
diff --git a/icons-react/icons-js/file-arrow-left.js b/icons-react/icons-js/file-arrow-left.js
new file mode 100644
index 00000000..a88b4882
--- /dev/null
+++ b/icons-react/icons-js/file-arrow-left.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileArrowLeft({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-arrow-left" 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="M15 15h-6" /><path d="M11.5 17.5l-2.5 -2.5l2.5 -2.5" /></svg>;
+}
+
+export default IconFileArrowLeft; \ No newline at end of file
diff --git a/icons-react/icons-js/file-arrow-right.js b/icons-react/icons-js/file-arrow-right.js
new file mode 100644
index 00000000..f89d8be5
--- /dev/null
+++ b/icons-react/icons-js/file-arrow-right.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileArrowRight({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-arrow-right" 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 15h6" /><path d="M12.5 17.5l2.5 -2.5l-2.5 -2.5" /></svg>;
+}
+
+export default IconFileArrowRight; \ No newline at end of file
diff --git a/icons-react/icons-js/file-barcode.js b/icons-react/icons-js/file-barcode.js
new file mode 100644
index 00000000..4add511e
--- /dev/null
+++ b/icons-react/icons-js/file-barcode.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileBarcode({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-barcode" 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="M8 13h1v3h-1z" /><path d="M12 13v3" /><path d="M15 13h1v3h-1z" /></svg>;
+}
+
+export default IconFileBarcode; \ No newline at end of file
diff --git a/icons-react/icons-js/file-chart.js b/icons-react/icons-js/file-chart.js
new file mode 100644
index 00000000..274f5d23
--- /dev/null
+++ b/icons-react/icons-js/file-chart.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileChart({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-chart" 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="M12 10v4h4" /><circle cx={12} cy={14} r={4} /></svg>;
+}
+
+export default IconFileChart; \ No newline at end of file
diff --git a/icons-react/icons-js/file-database.js b/icons-react/icons-js/file-database.js
new file mode 100644
index 00000000..f5fcf8ca
--- /dev/null
+++ b/icons-react/icons-js/file-database.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileDatabase({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-database" 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.75} rx={4} ry={1.75} /><path d="M8 12.5v3.75c0 .966 1.79 1.75 4 1.75s4 -.784 4 -1.75v-3.75" /><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 IconFileDatabase; \ No newline at end of file
diff --git a/icons-react/icons-js/file-dots.js b/icons-react/icons-js/file-dots.js
new file mode 100644
index 00000000..377b1e4e
--- /dev/null
+++ b/icons-react/icons-js/file-dots.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileDots({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-dots" 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 14v.01" /><path d="M12 14v.01" /><path d="M15 14v.01" /></svg>;
+}
+
+export default IconFileDots; \ No newline at end of file
diff --git a/icons-react/icons-js/file-download.js b/icons-react/icons-js/file-download.js
index 7248303e..df68e21c 100644
--- a/icons-react/icons-js/file-download.js
+++ b/icons-react/icons-js/file-download.js
@@ -6,7 +6,7 @@ function IconFileDownload({
stroke = 2,
...props
}) {
- return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-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="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" /><line x1={12} y1={11} x2={12} y2={17} /><polyline points="9 14 12 17 15 14" /></svg>;
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-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="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="M12 17v-6" /><path d="M9.5 14.5l2.5 2.5l2.5 -2.5" /></svg>;
}
export default IconFileDownload; \ No newline at end of file
diff --git a/icons-react/icons-js/file-pencil.js b/icons-react/icons-js/file-pencil.js
new file mode 100644
index 00000000..7c2f9911
--- /dev/null
+++ b/icons-react/icons-js/file-pencil.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFilePencil({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-pencil" 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="M10 18l5 -5a1.414 1.414 0 0 0 -2 -2l-5 5v2h2z" /></svg>;
+}
+
+export default IconFilePencil; \ No newline at end of file
diff --git a/icons-react/icons-js/file-power.js b/icons-react/icons-js/file-power.js
new file mode 100644
index 00000000..12d80940
--- /dev/null
+++ b/icons-react/icons-js/file-power.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFilePower({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-power" 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="M12 11l-2 3h4l-2 3" /></svg>;
+}
+
+export default IconFilePower; \ No newline at end of file
diff --git a/icons-react/icons-js/file-rss.js b/icons-react/icons-js/file-rss.js
new file mode 100644
index 00000000..f555aa4b
--- /dev/null
+++ b/icons-react/icons-js/file-rss.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileRss({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-rss" 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="M12 17a3 3 0 0 0 -3 -3" /><path d="M15 17a6 6 0 0 0 -6 -6" /><path d="M9 17h.01" /></svg>;
+}
+
+export default IconFileRss; \ No newline at end of file
diff --git a/icons-react/icons-js/file-scissors.js b/icons-react/icons-js/file-scissors.js
new file mode 100644
index 00000000..eeaf62f4
--- /dev/null
+++ b/icons-react/icons-js/file-scissors.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileScissors({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-scissors" 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" /><circle cx={15} cy={17} r={1} /><circle cx={9} cy={17} r={1} /><path d="M9 17l6 -6" /><path d="M15 17l-6 -6" /></svg>;
+}
+
+export default IconFileScissors; \ No newline at end of file
diff --git a/icons-react/icons-js/file-signal.js b/icons-react/icons-js/file-signal.js
new file mode 100644
index 00000000..e8473911
--- /dev/null
+++ b/icons-react/icons-js/file-signal.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileSignal({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-signal" 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="M12 14v.01" /><path d="M9.525 11.525a3.5 3.5 0 0 0 0 4.95m4.95 0a3.5 3.5 0 0 0 0 -4.95" /></svg>;
+}
+
+export default IconFileSignal; \ No newline at end of file
diff --git a/icons-react/icons-js/file-spreadsheet.js b/icons-react/icons-js/file-spreadsheet.js
new file mode 100644
index 00000000..4936d21e
--- /dev/null
+++ b/icons-react/icons-js/file-spreadsheet.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileSpreadsheet({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-spreadsheet" 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="M8 11h8v7h-8z" /><path d="M8 15h8" /><path d="M11 11v7" /></svg>;
+}
+
+export default IconFileSpreadsheet; \ No newline at end of file
diff --git a/icons-react/icons-js/file-star.js b/icons-react/icons-js/file-star.js
new file mode 100644
index 00000000..a9a05ea4
--- /dev/null
+++ b/icons-react/icons-js/file-star.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileStar({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-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="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.8 16.817l-2.172 1.138a0.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a0.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a0.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a0.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a0.39 .39 0 0 1 -.567 .411l-2.172 -1.138z" /></svg>;
+}
+
+export default IconFileStar; \ No newline at end of file
diff --git a/icons-react/icons-js/file-time.js b/icons-react/icons-js/file-time.js
new file mode 100644
index 00000000..41910ed7
--- /dev/null
+++ b/icons-react/icons-js/file-time.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileTime({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-time" 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" /><circle cx={12} cy={14} r={4} /><path d="M12 12.496v1.504l1 1" /></svg>;
+}
+
+export default IconFileTime; \ No newline at end of file
diff --git a/icons-react/icons-js/file-typography.js b/icons-react/icons-js/file-typography.js
new file mode 100644
index 00000000..43082137
--- /dev/null
+++ b/icons-react/icons-js/file-typography.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileTypography({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-typography" 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 18h2" /><path d="M12 18v-7" /><path d="M9 12v-1h6v1" /></svg>;
+}
+
+export default IconFileTypography; \ No newline at end of file
diff --git a/icons-react/icons-js/file-unknown.js b/icons-react/icons-js/file-unknown.js
new file mode 100644
index 00000000..a5660950
--- /dev/null
+++ b/icons-react/icons-js/file-unknown.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileUnknown({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-unknown" 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="M12 17v.01" /><path d="M12 14a1.5 1.5 0 1 0 -1.14 -2.474" /></svg>;
+}
+
+export default IconFileUnknown; \ No newline at end of file
diff --git a/icons-react/icons-js/file-upload.js b/icons-react/icons-js/file-upload.js
index d1bb266a..977513bd 100644
--- a/icons-react/icons-js/file-upload.js
+++ b/icons-react/icons-js/file-upload.js
@@ -6,7 +6,7 @@ function IconFileUpload({
stroke = 2,
...props
}) {
- return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-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 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" /><line x1={12} y1={11} x2={12} y2={17} /><polyline points="9 14 12 11 15 14" /></svg>;
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-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 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="M12 11v6" /><path d="M9.5 13.5l2.5 -2.5l2.5 2.5" /></svg>;
}
export default IconFileUpload; \ No newline at end of file
diff --git a/icons-react/icons-js/file-vector.js b/icons-react/icons-js/file-vector.js
new file mode 100644
index 00000000..9c6a72b9
--- /dev/null
+++ b/icons-react/icons-js/file-vector.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFileVector({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-vector" 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" /><circle cx={9.5} cy={16.5} r={1.5} /><circle cx={14.5} cy={12.5} r={1.5} /><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.5 15a2.5 2.5 0 0 1 2.5 -2.5h1" /></svg>;
+}
+
+export default IconFileVector; \ No newline at end of file