From 207c62c8d927b1f67414c82f31ff6ece7d6e5a6b Mon Sep 17 00:00:00 2001 From: codecalm Date: Tue, 18 Jan 2022 17:47:52 +0100 Subject: Release 1.53.0 --- icons-react/icons-js/api-app.js | 12 ++++++++++++ icons-react/icons-js/api.js | 12 ++++++++++++ icons-react/icons-js/arrows-cross.js | 12 ++++++++++++ icons-react/icons-js/arrows-shuffle-2.js | 12 ++++++++++++ icons-react/icons-js/arrows-shuffle.js | 12 ++++++++++++ icons-react/icons-js/brand-lastfm.js | 12 ++++++++++++ icons-react/icons-js/brand-tripadvisor.js | 12 ++++++++++++ icons-react/icons-js/c-sharp.js | 12 ++++++++++++ icons-react/icons-js/layout-sidebar-left-collapse.js | 12 ++++++++++++ icons-react/icons-js/layout-sidebar-left-expand.js | 12 ++++++++++++ icons-react/icons-js/layout-sidebar-right-collapse.js | 12 ++++++++++++ icons-react/icons-js/layout-sidebar-right-expand.js | 12 ++++++++++++ icons-react/icons-js/playlist-add.js | 12 ++++++++++++ icons-react/icons-js/playlist-x.js | 12 ++++++++++++ icons-react/icons-js/plug-connected.js | 12 ++++++++++++ icons-react/icons-js/plug.js | 2 +- icons-react/icons-js/robot.js | 12 ++++++++++++ icons-react/icons-js/usb.js | 12 ++++++++++++ icons-react/icons-js/vinyl.js | 12 ++++++++++++ 19 files changed, 217 insertions(+), 1 deletion(-) create mode 100644 icons-react/icons-js/api-app.js create mode 100644 icons-react/icons-js/api.js create mode 100644 icons-react/icons-js/arrows-cross.js create mode 100644 icons-react/icons-js/arrows-shuffle-2.js create mode 100644 icons-react/icons-js/arrows-shuffle.js create mode 100644 icons-react/icons-js/brand-lastfm.js create mode 100644 icons-react/icons-js/brand-tripadvisor.js create mode 100644 icons-react/icons-js/c-sharp.js create mode 100644 icons-react/icons-js/layout-sidebar-left-collapse.js create mode 100644 icons-react/icons-js/layout-sidebar-left-expand.js create mode 100644 icons-react/icons-js/layout-sidebar-right-collapse.js create mode 100644 icons-react/icons-js/layout-sidebar-right-expand.js create mode 100644 icons-react/icons-js/playlist-add.js create mode 100644 icons-react/icons-js/playlist-x.js create mode 100644 icons-react/icons-js/plug-connected.js create mode 100644 icons-react/icons-js/robot.js create mode 100644 icons-react/icons-js/usb.js create mode 100644 icons-react/icons-js/vinyl.js (limited to 'icons-react/icons-js') diff --git a/icons-react/icons-js/api-app.js b/icons-react/icons-js/api-app.js new file mode 100644 index 00000000..c66fd2fa --- /dev/null +++ b/icons-react/icons-js/api-app.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconApiApp({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconApiApp; \ No newline at end of file diff --git a/icons-react/icons-js/api.js b/icons-react/icons-js/api.js new file mode 100644 index 00000000..8110618e --- /dev/null +++ b/icons-react/icons-js/api.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconApi({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconApi; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-cross.js b/icons-react/icons-js/arrows-cross.js new file mode 100644 index 00000000..ff80df35 --- /dev/null +++ b/icons-react/icons-js/arrows-cross.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowsCross({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconArrowsCross; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-shuffle-2.js b/icons-react/icons-js/arrows-shuffle-2.js new file mode 100644 index 00000000..94936ba1 --- /dev/null +++ b/icons-react/icons-js/arrows-shuffle-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowsShuffle2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconArrowsShuffle2; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-shuffle.js b/icons-react/icons-js/arrows-shuffle.js new file mode 100644 index 00000000..4a1a2a0a --- /dev/null +++ b/icons-react/icons-js/arrows-shuffle.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowsShuffle({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconArrowsShuffle; \ No newline at end of file diff --git a/icons-react/icons-js/brand-lastfm.js b/icons-react/icons-js/brand-lastfm.js new file mode 100644 index 00000000..9387dceb --- /dev/null +++ b/icons-react/icons-js/brand-lastfm.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandLastfm({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBrandLastfm; \ No newline at end of file diff --git a/icons-react/icons-js/brand-tripadvisor.js b/icons-react/icons-js/brand-tripadvisor.js new file mode 100644 index 00000000..ff17fd19 --- /dev/null +++ b/icons-react/icons-js/brand-tripadvisor.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandTripadvisor({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBrandTripadvisor; \ No newline at end of file diff --git a/icons-react/icons-js/c-sharp.js b/icons-react/icons-js/c-sharp.js new file mode 100644 index 00000000..3348a56a --- /dev/null +++ b/icons-react/icons-js/c-sharp.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCSharp({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconCSharp; \ No newline at end of file diff --git a/icons-react/icons-js/layout-sidebar-left-collapse.js b/icons-react/icons-js/layout-sidebar-left-collapse.js new file mode 100644 index 00000000..c94dff61 --- /dev/null +++ b/icons-react/icons-js/layout-sidebar-left-collapse.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLayoutSidebarLeftCollapse({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconLayoutSidebarLeftCollapse; \ No newline at end of file diff --git a/icons-react/icons-js/layout-sidebar-left-expand.js b/icons-react/icons-js/layout-sidebar-left-expand.js new file mode 100644 index 00000000..e5e52518 --- /dev/null +++ b/icons-react/icons-js/layout-sidebar-left-expand.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLayoutSidebarLeftExpand({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconLayoutSidebarLeftExpand; \ No newline at end of file diff --git a/icons-react/icons-js/layout-sidebar-right-collapse.js b/icons-react/icons-js/layout-sidebar-right-collapse.js new file mode 100644 index 00000000..e7963c7b --- /dev/null +++ b/icons-react/icons-js/layout-sidebar-right-collapse.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLayoutSidebarRightCollapse({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconLayoutSidebarRightCollapse; \ No newline at end of file diff --git a/icons-react/icons-js/layout-sidebar-right-expand.js b/icons-react/icons-js/layout-sidebar-right-expand.js new file mode 100644 index 00000000..cca3ce9f --- /dev/null +++ b/icons-react/icons-js/layout-sidebar-right-expand.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLayoutSidebarRightExpand({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconLayoutSidebarRightExpand; \ No newline at end of file diff --git a/icons-react/icons-js/playlist-add.js b/icons-react/icons-js/playlist-add.js new file mode 100644 index 00000000..c7a95ddc --- /dev/null +++ b/icons-react/icons-js/playlist-add.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPlaylistAdd({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconPlaylistAdd; \ No newline at end of file diff --git a/icons-react/icons-js/playlist-x.js b/icons-react/icons-js/playlist-x.js new file mode 100644 index 00000000..2f20ef9f --- /dev/null +++ b/icons-react/icons-js/playlist-x.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPlaylistX({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconPlaylistX; \ No newline at end of file diff --git a/icons-react/icons-js/plug-connected.js b/icons-react/icons-js/plug-connected.js new file mode 100644 index 00000000..2515fe3b --- /dev/null +++ b/icons-react/icons-js/plug-connected.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPlugConnected({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconPlugConnected; \ No newline at end of file diff --git a/icons-react/icons-js/plug.js b/icons-react/icons-js/plug.js index b4fe7466..8f1d9547 100644 --- a/icons-react/icons-js/plug.js +++ b/icons-react/icons-js/plug.js @@ -6,7 +6,7 @@ function IconPlug({ stroke = 2, ...props }) { - return ; + return ; } export default IconPlug; \ No newline at end of file diff --git a/icons-react/icons-js/robot.js b/icons-react/icons-js/robot.js new file mode 100644 index 00000000..823e2ccf --- /dev/null +++ b/icons-react/icons-js/robot.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRobot({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconRobot; \ No newline at end of file diff --git a/icons-react/icons-js/usb.js b/icons-react/icons-js/usb.js new file mode 100644 index 00000000..fdea6ff3 --- /dev/null +++ b/icons-react/icons-js/usb.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconUsb({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconUsb; \ No newline at end of file diff --git a/icons-react/icons-js/vinyl.js b/icons-react/icons-js/vinyl.js new file mode 100644 index 00000000..e6131a08 --- /dev/null +++ b/icons-react/icons-js/vinyl.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconVinyl({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconVinyl; \ No newline at end of file -- cgit v1.2.1