From 6678c10014de83e7052669f2bb4d5ae5529fd736 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 9 Jul 2022 17:39:44 +0200 Subject: Release 1.73.0 --- icons-react/icons-js/ampersand.js | 12 ++++++++++++ icons-react/icons-js/arrow-guide.js | 12 ++++++++++++ icons-react/icons-js/arrow-roundabout-left.js | 12 ++++++++++++ icons-react/icons-js/arrow-roundabout-right.js | 12 ++++++++++++ icons-react/icons-js/arrows-move-horizontal.js | 12 ++++++++++++ icons-react/icons-js/arrows-move-vertical.js | 12 ++++++++++++ icons-react/icons-js/arrows-move.js | 12 ++++++++++++ icons-react/icons-js/brand-amazon.js | 12 ++++++++++++ icons-react/icons-js/brand-appgallery.js | 12 ++++++++++++ icons-react/icons-js/brand-google-one.js | 12 ++++++++++++ icons-react/icons-js/device-camera-phone.js | 12 ++++++++++++ icons-react/icons-js/stack-pop.js | 12 ++++++++++++ icons-react/icons-js/stack-push.js | 12 ++++++++++++ icons-react/icons-js/sun-high.js | 12 ++++++++++++ icons-react/icons-js/sun-low.js | 12 ++++++++++++ icons-react/icons-js/sun-wind.js | 12 ++++++++++++ icons-react/icons-js/sunglasses.js | 12 ++++++++++++ icons-react/icons-js/sunset-2.js | 12 ++++++++++++ 18 files changed, 216 insertions(+) create mode 100644 icons-react/icons-js/ampersand.js create mode 100644 icons-react/icons-js/arrow-guide.js create mode 100644 icons-react/icons-js/arrow-roundabout-left.js create mode 100644 icons-react/icons-js/arrow-roundabout-right.js create mode 100644 icons-react/icons-js/arrows-move-horizontal.js create mode 100644 icons-react/icons-js/arrows-move-vertical.js create mode 100644 icons-react/icons-js/arrows-move.js create mode 100644 icons-react/icons-js/brand-amazon.js create mode 100644 icons-react/icons-js/brand-appgallery.js create mode 100644 icons-react/icons-js/brand-google-one.js create mode 100644 icons-react/icons-js/device-camera-phone.js create mode 100644 icons-react/icons-js/stack-pop.js create mode 100644 icons-react/icons-js/stack-push.js create mode 100644 icons-react/icons-js/sun-high.js create mode 100644 icons-react/icons-js/sun-low.js create mode 100644 icons-react/icons-js/sun-wind.js create mode 100644 icons-react/icons-js/sunglasses.js create mode 100644 icons-react/icons-js/sunset-2.js (limited to 'icons-react/icons-js') diff --git a/icons-react/icons-js/ampersand.js b/icons-react/icons-js/ampersand.js new file mode 100644 index 00000000..3c5a0db0 --- /dev/null +++ b/icons-react/icons-js/ampersand.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconAmpersand({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconAmpersand; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-guide.js b/icons-react/icons-js/arrow-guide.js new file mode 100644 index 00000000..2cc45e8e --- /dev/null +++ b/icons-react/icons-js/arrow-guide.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowGuide({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconArrowGuide; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-roundabout-left.js b/icons-react/icons-js/arrow-roundabout-left.js new file mode 100644 index 00000000..8061a8f3 --- /dev/null +++ b/icons-react/icons-js/arrow-roundabout-left.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowRoundaboutLeft({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconArrowRoundaboutLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-roundabout-right.js b/icons-react/icons-js/arrow-roundabout-right.js new file mode 100644 index 00000000..40322634 --- /dev/null +++ b/icons-react/icons-js/arrow-roundabout-right.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowRoundaboutRight({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconArrowRoundaboutRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-move-horizontal.js b/icons-react/icons-js/arrows-move-horizontal.js new file mode 100644 index 00000000..70e1b1ac --- /dev/null +++ b/icons-react/icons-js/arrows-move-horizontal.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowsMoveHorizontal({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconArrowsMoveHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-move-vertical.js b/icons-react/icons-js/arrows-move-vertical.js new file mode 100644 index 00000000..a24fd8c2 --- /dev/null +++ b/icons-react/icons-js/arrows-move-vertical.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowsMoveVertical({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconArrowsMoveVertical; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-move.js b/icons-react/icons-js/arrows-move.js new file mode 100644 index 00000000..f5926458 --- /dev/null +++ b/icons-react/icons-js/arrows-move.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowsMove({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconArrowsMove; \ No newline at end of file diff --git a/icons-react/icons-js/brand-amazon.js b/icons-react/icons-js/brand-amazon.js new file mode 100644 index 00000000..a14ea62f --- /dev/null +++ b/icons-react/icons-js/brand-amazon.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandAmazon({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBrandAmazon; \ No newline at end of file diff --git a/icons-react/icons-js/brand-appgallery.js b/icons-react/icons-js/brand-appgallery.js new file mode 100644 index 00000000..9390984a --- /dev/null +++ b/icons-react/icons-js/brand-appgallery.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandAppgallery({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBrandAppgallery; \ No newline at end of file diff --git a/icons-react/icons-js/brand-google-one.js b/icons-react/icons-js/brand-google-one.js new file mode 100644 index 00000000..55baf641 --- /dev/null +++ b/icons-react/icons-js/brand-google-one.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandGoogleOne({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBrandGoogleOne; \ No newline at end of file diff --git a/icons-react/icons-js/device-camera-phone.js b/icons-react/icons-js/device-camera-phone.js new file mode 100644 index 00000000..7524b1d8 --- /dev/null +++ b/icons-react/icons-js/device-camera-phone.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDeviceCameraPhone({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconDeviceCameraPhone; \ No newline at end of file diff --git a/icons-react/icons-js/stack-pop.js b/icons-react/icons-js/stack-pop.js new file mode 100644 index 00000000..80c358b4 --- /dev/null +++ b/icons-react/icons-js/stack-pop.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconStackPop({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconStackPop; \ No newline at end of file diff --git a/icons-react/icons-js/stack-push.js b/icons-react/icons-js/stack-push.js new file mode 100644 index 00000000..fa2bea20 --- /dev/null +++ b/icons-react/icons-js/stack-push.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconStackPush({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconStackPush; \ No newline at end of file diff --git a/icons-react/icons-js/sun-high.js b/icons-react/icons-js/sun-high.js new file mode 100644 index 00000000..a9c5db5b --- /dev/null +++ b/icons-react/icons-js/sun-high.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSunHigh({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconSunHigh; \ No newline at end of file diff --git a/icons-react/icons-js/sun-low.js b/icons-react/icons-js/sun-low.js new file mode 100644 index 00000000..69619e43 --- /dev/null +++ b/icons-react/icons-js/sun-low.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSunLow({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconSunLow; \ No newline at end of file diff --git a/icons-react/icons-js/sun-wind.js b/icons-react/icons-js/sun-wind.js new file mode 100644 index 00000000..0f0ed16d --- /dev/null +++ b/icons-react/icons-js/sun-wind.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSunWind({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconSunWind; \ No newline at end of file diff --git a/icons-react/icons-js/sunglasses.js b/icons-react/icons-js/sunglasses.js new file mode 100644 index 00000000..10ba1918 --- /dev/null +++ b/icons-react/icons-js/sunglasses.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSunglasses({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconSunglasses; \ No newline at end of file diff --git a/icons-react/icons-js/sunset-2.js b/icons-react/icons-js/sunset-2.js new file mode 100644 index 00000000..36238e64 --- /dev/null +++ b/icons-react/icons-js/sunset-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSunset2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconSunset2; \ No newline at end of file -- cgit v1.2.1