From 7173695acc0d75b498ede15cdc935d567a240f21 Mon Sep 17 00:00:00 2001 From: codecalm Date: Tue, 29 Sep 2020 11:44:57 +0200 Subject: Release 1.30.0 --- icons-react/icons-js/file-certificate.js | 2 +- icons-react/icons-js/file-dislike.js | 2 +- icons-react/icons-js/file-like.js | 2 +- icons-react/icons-js/file-symlink.js | 5 +++++ icons-react/icons-js/fold-down.js | 5 +++++ icons-react/icons-js/fold-up.js | 5 +++++ icons-react/icons-js/fold.js | 5 +++++ icons-react/icons-js/refresh-alert.js | 5 +++++ icons-react/icons-js/refresh.js | 2 +- icons-react/icons-js/shield-lock.js | 5 +++++ icons-react/icons-js/square-dot.js | 5 +++++ icons-react/icons-js/square-forbid-2.js | 5 +++++ icons-react/icons-js/square-forbid.js | 5 +++++ icons-react/index.d.ts | 9 +++++++++ icons-react/index.js | 9 +++++++++ 15 files changed, 67 insertions(+), 4 deletions(-) create mode 100644 icons-react/icons-js/file-symlink.js create mode 100644 icons-react/icons-js/fold-down.js create mode 100644 icons-react/icons-js/fold-up.js create mode 100644 icons-react/icons-js/fold.js create mode 100644 icons-react/icons-js/refresh-alert.js create mode 100644 icons-react/icons-js/shield-lock.js create mode 100644 icons-react/icons-js/square-dot.js create mode 100644 icons-react/icons-js/square-forbid-2.js create mode 100644 icons-react/icons-js/square-forbid.js (limited to 'icons-react') diff --git a/icons-react/icons-js/file-certificate.js b/icons-react/icons-js/file-certificate.js index a7f1065..1be30b1 100644 --- a/icons-react/icons-js/file-certificate.js +++ b/icons-react/icons-js/file-certificate.js @@ -1,5 +1,5 @@ import * as React from "react"; -const IconFileCertificate = (size = 24, color = "currentColor", stroke = 2, ...props) => ; +const IconFileCertificate = (size = 24, color = "currentColor", stroke = 2, ...props) => ; export default IconFileCertificate; \ No newline at end of file diff --git a/icons-react/icons-js/file-dislike.js b/icons-react/icons-js/file-dislike.js index 0b70e42..3713717 100644 --- a/icons-react/icons-js/file-dislike.js +++ b/icons-react/icons-js/file-dislike.js @@ -1,5 +1,5 @@ import * as React from "react"; -const IconFileDislike = (size = 24, color = "currentColor", stroke = 2, ...props) => ; +const IconFileDislike = (size = 24, color = "currentColor", stroke = 2, ...props) => ; export default IconFileDislike; \ No newline at end of file diff --git a/icons-react/icons-js/file-like.js b/icons-react/icons-js/file-like.js index 8dfc821..a48ac55 100644 --- a/icons-react/icons-js/file-like.js +++ b/icons-react/icons-js/file-like.js @@ -1,5 +1,5 @@ import * as React from "react"; -const IconFileLike = (size = 24, color = "currentColor", stroke = 2, ...props) => ; +const IconFileLike = (size = 24, color = "currentColor", stroke = 2, ...props) => ; export default IconFileLike; \ No newline at end of file diff --git a/icons-react/icons-js/file-symlink.js b/icons-react/icons-js/file-symlink.js new file mode 100644 index 0000000..b2ea13c --- /dev/null +++ b/icons-react/icons-js/file-symlink.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFileSymlink = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFileSymlink; \ No newline at end of file diff --git a/icons-react/icons-js/fold-down.js b/icons-react/icons-js/fold-down.js new file mode 100644 index 0000000..8e1be60 --- /dev/null +++ b/icons-react/icons-js/fold-down.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFoldDown = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFoldDown; \ No newline at end of file diff --git a/icons-react/icons-js/fold-up.js b/icons-react/icons-js/fold-up.js new file mode 100644 index 0000000..7fd4e32 --- /dev/null +++ b/icons-react/icons-js/fold-up.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFoldUp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFoldUp; \ No newline at end of file diff --git a/icons-react/icons-js/fold.js b/icons-react/icons-js/fold.js new file mode 100644 index 0000000..dcfcb5e --- /dev/null +++ b/icons-react/icons-js/fold.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFold = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFold; \ No newline at end of file diff --git a/icons-react/icons-js/refresh-alert.js b/icons-react/icons-js/refresh-alert.js new file mode 100644 index 0000000..6ee18ec --- /dev/null +++ b/icons-react/icons-js/refresh-alert.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRefreshAlert = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRefreshAlert; \ No newline at end of file diff --git a/icons-react/icons-js/refresh.js b/icons-react/icons-js/refresh.js index e656f48..478b75c 100644 --- a/icons-react/icons-js/refresh.js +++ b/icons-react/icons-js/refresh.js @@ -1,5 +1,5 @@ import * as React from "react"; -const IconRefresh = (size = 24, color = "currentColor", stroke = 2, ...props) => ; +const IconRefresh = (size = 24, color = "currentColor", stroke = 2, ...props) => ; export default IconRefresh; \ No newline at end of file diff --git a/icons-react/icons-js/shield-lock.js b/icons-react/icons-js/shield-lock.js new file mode 100644 index 0000000..503a223 --- /dev/null +++ b/icons-react/icons-js/shield-lock.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconShieldLock = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconShieldLock; \ No newline at end of file diff --git a/icons-react/icons-js/square-dot.js b/icons-react/icons-js/square-dot.js new file mode 100644 index 0000000..48bd655 --- /dev/null +++ b/icons-react/icons-js/square-dot.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSquareDot = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSquareDot; \ No newline at end of file diff --git a/icons-react/icons-js/square-forbid-2.js b/icons-react/icons-js/square-forbid-2.js new file mode 100644 index 0000000..e9f8b77 --- /dev/null +++ b/icons-react/icons-js/square-forbid-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSquareForbid2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSquareForbid2; \ No newline at end of file diff --git a/icons-react/icons-js/square-forbid.js b/icons-react/icons-js/square-forbid.js new file mode 100644 index 0000000..6a9f117 --- /dev/null +++ b/icons-react/icons-js/square-forbid.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSquareForbid = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSquareForbid; \ No newline at end of file diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts index 8f73af5..84b8c43 100644 --- a/icons-react/index.d.ts +++ b/icons-react/index.d.ts @@ -362,6 +362,7 @@ export const IconFileOff: TablerIcon; export const IconFilePhone: TablerIcon; export const IconFilePlus: TablerIcon; export const IconFileShredder: TablerIcon; +export const IconFileSymlink: TablerIcon; export const IconFileText: TablerIcon; export const IconFileUpload: TablerIcon; export const IconFileX: TablerIcon; @@ -382,6 +383,9 @@ export const IconFloatNone: TablerIcon; export const IconFloatRight: TablerIcon; export const IconFocus2: TablerIcon; export const IconFocus: TablerIcon; +export const IconFoldDown: TablerIcon; +export const IconFoldUp: TablerIcon; +export const IconFold: TablerIcon; export const IconFolderMinus: TablerIcon; export const IconFolderOff: TablerIcon; export const IconFolderPlus: TablerIcon; @@ -632,6 +636,7 @@ export const IconRecordMail: TablerIcon; export const IconRectangleVertical: TablerIcon; export const IconRectangle: TablerIcon; export const IconRecycle: TablerIcon; +export const IconRefreshAlert: TablerIcon; export const IconRefresh: TablerIcon; export const IconRegistered: TablerIcon; export const IconRepeatOnce: TablerIcon; @@ -672,6 +677,7 @@ export const IconSettings: TablerIcon; export const IconShape: TablerIcon; export const IconShare: TablerIcon; export const IconShieldCheck: TablerIcon; +export const IconShieldLock: TablerIcon; export const IconShieldOff: TablerIcon; export const IconShieldX: TablerIcon; export const IconShield: TablerIcon; @@ -691,6 +697,9 @@ export const IconSortAscending: TablerIcon; export const IconSortDescending: TablerIcon; export const IconSpace: TablerIcon; export const IconSquareCheck: TablerIcon; +export const IconSquareDot: TablerIcon; +export const IconSquareForbid2: TablerIcon; +export const IconSquareForbid: TablerIcon; export const IconSquareMinus: TablerIcon; export const IconSquarePlus: TablerIcon; export const IconSquareRotated: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js index abdfd77..e68b3a4 100644 --- a/icons-react/index.js +++ b/icons-react/index.js @@ -356,6 +356,7 @@ 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 IconFileShredder } from './icons-js/file-shredder.js'; +export { default as IconFileSymlink } from './icons-js/file-symlink.js'; export { default as IconFileText } from './icons-js/file-text.js'; export { default as IconFileUpload } from './icons-js/file-upload.js'; export { default as IconFileX } from './icons-js/file-x.js'; @@ -376,6 +377,9 @@ export { default as IconFloatNone } from './icons-js/float-none.js'; export { default as IconFloatRight } from './icons-js/float-right.js'; export { default as IconFocus2 } from './icons-js/focus-2.js'; export { default as IconFocus } from './icons-js/focus.js'; +export { default as IconFoldDown } from './icons-js/fold-down.js'; +export { default as IconFoldUp } from './icons-js/fold-up.js'; +export { default as IconFold } from './icons-js/fold.js'; export { default as IconFolderMinus } from './icons-js/folder-minus.js'; export { default as IconFolderOff } from './icons-js/folder-off.js'; export { default as IconFolderPlus } from './icons-js/folder-plus.js'; @@ -626,6 +630,7 @@ 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'; export { default as IconRecycle } from './icons-js/recycle.js'; +export { default as IconRefreshAlert } from './icons-js/refresh-alert.js'; export { default as IconRefresh } from './icons-js/refresh.js'; export { default as IconRegistered } from './icons-js/registered.js'; export { default as IconRepeatOnce } from './icons-js/repeat-once.js'; @@ -666,6 +671,7 @@ export { default as IconSettings } from './icons-js/settings.js'; export { default as IconShape } from './icons-js/shape.js'; export { default as IconShare } from './icons-js/share.js'; export { default as IconShieldCheck } from './icons-js/shield-check.js'; +export { default as IconShieldLock } from './icons-js/shield-lock.js'; export { default as IconShieldOff } from './icons-js/shield-off.js'; export { default as IconShieldX } from './icons-js/shield-x.js'; export { default as IconShield } from './icons-js/shield.js'; @@ -685,6 +691,9 @@ export { default as IconSortAscending } from './icons-js/sort-ascending.js'; export { default as IconSortDescending } from './icons-js/sort-descending.js'; export { default as IconSpace } from './icons-js/space.js'; export { default as IconSquareCheck } from './icons-js/square-check.js'; +export { default as IconSquareDot } from './icons-js/square-dot.js'; +export { default as IconSquareForbid2 } from './icons-js/square-forbid-2.js'; +export { default as IconSquareForbid } from './icons-js/square-forbid.js'; export { default as IconSquareMinus } from './icons-js/square-minus.js'; export { default as IconSquarePlus } from './icons-js/square-plus.js'; export { default as IconSquareRotated } from './icons-js/square-rotated.js'; -- cgit v1.2.1