From e3aaadc0201945ea0b1159cc422b9517b84a54a4 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sun, 13 Mar 2022 00:17:30 +0100 Subject: Release 1.55.0 --- icons-react/icons-js/3d-rotate.js | 12 ++++++++++++ icons-react/icons-js/address-book.js | 12 ++++++++++++ icons-react/icons-js/album.js | 12 ++++++++++++ icons-react/icons-js/augmented-reality.js | 12 ++++++++++++ icons-react/icons-js/baseline.js | 12 ++++++++++++ icons-react/icons-js/dental.js | 12 ++++++++++++ icons-react/icons-js/device-nintendo.js | 12 ++++++++++++ icons-react/icons-js/error-404.js | 12 ++++++++++++ icons-react/icons-js/file-description.js | 12 ++++++++++++ icons-react/icons-js/file-settings.js | 12 ++++++++++++ icons-react/icons-js/focus-centered.js | 12 ++++++++++++ icons-react/icons-js/gizmo.js | 12 ++++++++++++ icons-react/icons-js/layout-dashboard.js | 12 ++++++++++++ icons-react/icons-js/oval-vertical.js | 12 ++++++++++++ icons-react/icons-js/oval.js | 12 ++++++++++++ icons-react/icons-js/paper-bag.js | 12 ++++++++++++ icons-react/icons-js/sword.js | 12 ++++++++++++ icons-react/icons-js/timeline.js | 12 ++++++++++++ 18 files changed, 216 insertions(+) create mode 100644 icons-react/icons-js/3d-rotate.js create mode 100644 icons-react/icons-js/address-book.js create mode 100644 icons-react/icons-js/album.js create mode 100644 icons-react/icons-js/augmented-reality.js create mode 100644 icons-react/icons-js/baseline.js create mode 100644 icons-react/icons-js/dental.js create mode 100644 icons-react/icons-js/device-nintendo.js create mode 100644 icons-react/icons-js/error-404.js create mode 100644 icons-react/icons-js/file-description.js create mode 100644 icons-react/icons-js/file-settings.js create mode 100644 icons-react/icons-js/focus-centered.js create mode 100644 icons-react/icons-js/gizmo.js create mode 100644 icons-react/icons-js/layout-dashboard.js create mode 100644 icons-react/icons-js/oval-vertical.js create mode 100644 icons-react/icons-js/oval.js create mode 100644 icons-react/icons-js/paper-bag.js create mode 100644 icons-react/icons-js/sword.js create mode 100644 icons-react/icons-js/timeline.js (limited to 'icons-react/icons-js') diff --git a/icons-react/icons-js/3d-rotate.js b/icons-react/icons-js/3d-rotate.js new file mode 100644 index 00000000..7068f288 --- /dev/null +++ b/icons-react/icons-js/3d-rotate.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function Icon3dRotate({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default Icon3dRotate; \ No newline at end of file diff --git a/icons-react/icons-js/address-book.js b/icons-react/icons-js/address-book.js new file mode 100644 index 00000000..f7ba862f --- /dev/null +++ b/icons-react/icons-js/address-book.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconAddressBook({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconAddressBook; \ No newline at end of file diff --git a/icons-react/icons-js/album.js b/icons-react/icons-js/album.js new file mode 100644 index 00000000..098453b0 --- /dev/null +++ b/icons-react/icons-js/album.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconAlbum({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconAlbum; \ No newline at end of file diff --git a/icons-react/icons-js/augmented-reality.js b/icons-react/icons-js/augmented-reality.js new file mode 100644 index 00000000..5533507b --- /dev/null +++ b/icons-react/icons-js/augmented-reality.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconAugmentedReality({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconAugmentedReality; \ No newline at end of file diff --git a/icons-react/icons-js/baseline.js b/icons-react/icons-js/baseline.js new file mode 100644 index 00000000..41859814 --- /dev/null +++ b/icons-react/icons-js/baseline.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBaseline({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBaseline; \ No newline at end of file diff --git a/icons-react/icons-js/dental.js b/icons-react/icons-js/dental.js new file mode 100644 index 00000000..c618e2e8 --- /dev/null +++ b/icons-react/icons-js/dental.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDental({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconDental; \ No newline at end of file diff --git a/icons-react/icons-js/device-nintendo.js b/icons-react/icons-js/device-nintendo.js new file mode 100644 index 00000000..5a9a6839 --- /dev/null +++ b/icons-react/icons-js/device-nintendo.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDeviceNintendo({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconDeviceNintendo; \ No newline at end of file diff --git a/icons-react/icons-js/error-404.js b/icons-react/icons-js/error-404.js new file mode 100644 index 00000000..8dc9c818 --- /dev/null +++ b/icons-react/icons-js/error-404.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconError404({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconError404; \ No newline at end of file diff --git a/icons-react/icons-js/file-description.js b/icons-react/icons-js/file-description.js new file mode 100644 index 00000000..55ac9ee9 --- /dev/null +++ b/icons-react/icons-js/file-description.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFileDescription({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconFileDescription; \ No newline at end of file diff --git a/icons-react/icons-js/file-settings.js b/icons-react/icons-js/file-settings.js new file mode 100644 index 00000000..a9de6792 --- /dev/null +++ b/icons-react/icons-js/file-settings.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFileSettings({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconFileSettings; \ No newline at end of file diff --git a/icons-react/icons-js/focus-centered.js b/icons-react/icons-js/focus-centered.js new file mode 100644 index 00000000..b2c33481 --- /dev/null +++ b/icons-react/icons-js/focus-centered.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFocusCentered({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconFocusCentered; \ No newline at end of file diff --git a/icons-react/icons-js/gizmo.js b/icons-react/icons-js/gizmo.js new file mode 100644 index 00000000..f53f87c5 --- /dev/null +++ b/icons-react/icons-js/gizmo.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGizmo({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGizmo; \ No newline at end of file diff --git a/icons-react/icons-js/layout-dashboard.js b/icons-react/icons-js/layout-dashboard.js new file mode 100644 index 00000000..48ff1d36 --- /dev/null +++ b/icons-react/icons-js/layout-dashboard.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLayoutDashboard({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconLayoutDashboard; \ No newline at end of file diff --git a/icons-react/icons-js/oval-vertical.js b/icons-react/icons-js/oval-vertical.js new file mode 100644 index 00000000..05915bf5 --- /dev/null +++ b/icons-react/icons-js/oval-vertical.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconOvalVertical({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconOvalVertical; \ No newline at end of file diff --git a/icons-react/icons-js/oval.js b/icons-react/icons-js/oval.js new file mode 100644 index 00000000..671884a2 --- /dev/null +++ b/icons-react/icons-js/oval.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconOval({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconOval; \ No newline at end of file diff --git a/icons-react/icons-js/paper-bag.js b/icons-react/icons-js/paper-bag.js new file mode 100644 index 00000000..ea4d3d8f --- /dev/null +++ b/icons-react/icons-js/paper-bag.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPaperBag({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconPaperBag; \ No newline at end of file diff --git a/icons-react/icons-js/sword.js b/icons-react/icons-js/sword.js new file mode 100644 index 00000000..a20827fa --- /dev/null +++ b/icons-react/icons-js/sword.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSword({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconSword; \ No newline at end of file diff --git a/icons-react/icons-js/timeline.js b/icons-react/icons-js/timeline.js new file mode 100644 index 00000000..1ddeed7d --- /dev/null +++ b/icons-react/icons-js/timeline.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTimeline({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconTimeline; \ No newline at end of file -- cgit v1.2.1