From 56b147e939648ca2a61aff34ba112c39fc1f784a Mon Sep 17 00:00:00 2001 From: codecalm Date: Wed, 16 Mar 2022 12:55:37 +0100 Subject: Release 1.56.0 --- icons-react/icons-js/file-3d.js | 12 ++++++++++++ icons-react/icons-js/file-arrow-left.js | 12 ++++++++++++ icons-react/icons-js/file-arrow-right.js | 12 ++++++++++++ icons-react/icons-js/file-barcode.js | 12 ++++++++++++ icons-react/icons-js/file-chart.js | 12 ++++++++++++ icons-react/icons-js/file-database.js | 12 ++++++++++++ icons-react/icons-js/file-dots.js | 12 ++++++++++++ icons-react/icons-js/file-download.js | 2 +- icons-react/icons-js/file-pencil.js | 12 ++++++++++++ icons-react/icons-js/file-power.js | 12 ++++++++++++ icons-react/icons-js/file-rss.js | 12 ++++++++++++ icons-react/icons-js/file-scissors.js | 12 ++++++++++++ icons-react/icons-js/file-signal.js | 12 ++++++++++++ icons-react/icons-js/file-spreadsheet.js | 12 ++++++++++++ icons-react/icons-js/file-star.js | 12 ++++++++++++ icons-react/icons-js/file-time.js | 12 ++++++++++++ icons-react/icons-js/file-typography.js | 12 ++++++++++++ icons-react/icons-js/file-unknown.js | 12 ++++++++++++ icons-react/icons-js/file-upload.js | 2 +- icons-react/icons-js/file-vector.js | 12 ++++++++++++ 20 files changed, 218 insertions(+), 2 deletions(-) create mode 100644 icons-react/icons-js/file-3d.js create mode 100644 icons-react/icons-js/file-arrow-left.js create mode 100644 icons-react/icons-js/file-arrow-right.js create mode 100644 icons-react/icons-js/file-barcode.js create mode 100644 icons-react/icons-js/file-chart.js create mode 100644 icons-react/icons-js/file-database.js create mode 100644 icons-react/icons-js/file-dots.js create mode 100644 icons-react/icons-js/file-pencil.js create mode 100644 icons-react/icons-js/file-power.js create mode 100644 icons-react/icons-js/file-rss.js create mode 100644 icons-react/icons-js/file-scissors.js create mode 100644 icons-react/icons-js/file-signal.js create mode 100644 icons-react/icons-js/file-spreadsheet.js create mode 100644 icons-react/icons-js/file-star.js create mode 100644 icons-react/icons-js/file-time.js create mode 100644 icons-react/icons-js/file-typography.js create mode 100644 icons-react/icons-js/file-unknown.js create mode 100644 icons-react/icons-js/file-vector.js (limited to 'icons-react/icons-js') 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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; + return ; } 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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; + return ; } 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 ; +} + +export default IconFileVector; \ No newline at end of file -- cgit v1.2.1