From b83de256dc115bc9f84537c19430d5987b5194ed Mon Sep 17 00:00:00 2001 From: codecalm Date: Thu, 11 Aug 2022 12:30:41 +0200 Subject: Release 1.81.0 --- icons-react/icons-js/arrow-move-down.js | 12 ++++++++++++ icons-react/icons-js/arrow-move-left.js | 12 ++++++++++++ icons-react/icons-js/arrow-move-right.js | 12 ++++++++++++ icons-react/icons-js/arrow-move-up.js | 12 ++++++++++++ icons-react/icons-js/coin-bitcoin.js | 12 ++++++++++++ icons-react/icons-js/coin-euro.js | 12 ++++++++++++ icons-react/icons-js/coin-pound.js | 12 ++++++++++++ icons-react/icons-js/coin-rupee.js | 12 ++++++++++++ icons-react/icons-js/coin-yen.js | 12 ++++++++++++ icons-react/icons-js/coin-yuan.js | 12 ++++++++++++ icons-react/icons-js/coin.js | 2 +- icons-react/icons-js/location-broken.js | 12 ++++++++++++ icons-react/icons-js/mood-look-left.js | 12 ++++++++++++ icons-react/icons-js/mood-look-right.js | 12 ++++++++++++ icons-react/icons-js/mood-sing.js | 12 ++++++++++++ icons-react/icons-js/navigation.js | 12 ++++++++++++ icons-react/icons-js/packages.js | 12 ++++++++++++ icons-react/icons-js/tower-off.js | 12 ++++++++++++ icons-react/icons-js/tower.js | 12 ++++++++++++ 19 files changed, 217 insertions(+), 1 deletion(-) create mode 100644 icons-react/icons-js/arrow-move-down.js create mode 100644 icons-react/icons-js/arrow-move-left.js create mode 100644 icons-react/icons-js/arrow-move-right.js create mode 100644 icons-react/icons-js/arrow-move-up.js create mode 100644 icons-react/icons-js/coin-bitcoin.js create mode 100644 icons-react/icons-js/coin-euro.js create mode 100644 icons-react/icons-js/coin-pound.js create mode 100644 icons-react/icons-js/coin-rupee.js create mode 100644 icons-react/icons-js/coin-yen.js create mode 100644 icons-react/icons-js/coin-yuan.js create mode 100644 icons-react/icons-js/location-broken.js create mode 100644 icons-react/icons-js/mood-look-left.js create mode 100644 icons-react/icons-js/mood-look-right.js create mode 100644 icons-react/icons-js/mood-sing.js create mode 100644 icons-react/icons-js/navigation.js create mode 100644 icons-react/icons-js/packages.js create mode 100644 icons-react/icons-js/tower-off.js create mode 100644 icons-react/icons-js/tower.js (limited to 'icons-react/icons-js') diff --git a/icons-react/icons-js/arrow-move-down.js b/icons-react/icons-js/arrow-move-down.js new file mode 100644 index 00000000..6d884c53 --- /dev/null +++ b/icons-react/icons-js/arrow-move-down.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowMoveDown({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconArrowMoveDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-move-left.js b/icons-react/icons-js/arrow-move-left.js new file mode 100644 index 00000000..c69ed964 --- /dev/null +++ b/icons-react/icons-js/arrow-move-left.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowMoveLeft({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconArrowMoveLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-move-right.js b/icons-react/icons-js/arrow-move-right.js new file mode 100644 index 00000000..e7a7f3e2 --- /dev/null +++ b/icons-react/icons-js/arrow-move-right.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowMoveRight({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconArrowMoveRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-move-up.js b/icons-react/icons-js/arrow-move-up.js new file mode 100644 index 00000000..0a37cb0a --- /dev/null +++ b/icons-react/icons-js/arrow-move-up.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowMoveUp({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconArrowMoveUp; \ No newline at end of file diff --git a/icons-react/icons-js/coin-bitcoin.js b/icons-react/icons-js/coin-bitcoin.js new file mode 100644 index 00000000..09e8f82e --- /dev/null +++ b/icons-react/icons-js/coin-bitcoin.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCoinBitcoin({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconCoinBitcoin; \ No newline at end of file diff --git a/icons-react/icons-js/coin-euro.js b/icons-react/icons-js/coin-euro.js new file mode 100644 index 00000000..186f8cfa --- /dev/null +++ b/icons-react/icons-js/coin-euro.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCoinEuro({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconCoinEuro; \ No newline at end of file diff --git a/icons-react/icons-js/coin-pound.js b/icons-react/icons-js/coin-pound.js new file mode 100644 index 00000000..e3b0b4dc --- /dev/null +++ b/icons-react/icons-js/coin-pound.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCoinPound({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconCoinPound; \ No newline at end of file diff --git a/icons-react/icons-js/coin-rupee.js b/icons-react/icons-js/coin-rupee.js new file mode 100644 index 00000000..173529af --- /dev/null +++ b/icons-react/icons-js/coin-rupee.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCoinRupee({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconCoinRupee; \ No newline at end of file diff --git a/icons-react/icons-js/coin-yen.js b/icons-react/icons-js/coin-yen.js new file mode 100644 index 00000000..4b689f26 --- /dev/null +++ b/icons-react/icons-js/coin-yen.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCoinYen({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconCoinYen; \ No newline at end of file diff --git a/icons-react/icons-js/coin-yuan.js b/icons-react/icons-js/coin-yuan.js new file mode 100644 index 00000000..cc8d1b42 --- /dev/null +++ b/icons-react/icons-js/coin-yuan.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCoinYuan({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconCoinYuan; \ No newline at end of file diff --git a/icons-react/icons-js/coin.js b/icons-react/icons-js/coin.js index fc7114ba..1898c4d2 100644 --- a/icons-react/icons-js/coin.js +++ b/icons-react/icons-js/coin.js @@ -6,7 +6,7 @@ function IconCoin({ stroke = 2, ...props }) { - return ; + return ; } export default IconCoin; \ No newline at end of file diff --git a/icons-react/icons-js/location-broken.js b/icons-react/icons-js/location-broken.js new file mode 100644 index 00000000..1407f0bd --- /dev/null +++ b/icons-react/icons-js/location-broken.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLocationBroken({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconLocationBroken; \ No newline at end of file diff --git a/icons-react/icons-js/mood-look-left.js b/icons-react/icons-js/mood-look-left.js new file mode 100644 index 00000000..579c2233 --- /dev/null +++ b/icons-react/icons-js/mood-look-left.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodLookLeft({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconMoodLookLeft; \ No newline at end of file diff --git a/icons-react/icons-js/mood-look-right.js b/icons-react/icons-js/mood-look-right.js new file mode 100644 index 00000000..f47ad2fa --- /dev/null +++ b/icons-react/icons-js/mood-look-right.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodLookRight({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconMoodLookRight; \ No newline at end of file diff --git a/icons-react/icons-js/mood-sing.js b/icons-react/icons-js/mood-sing.js new file mode 100644 index 00000000..47fbd0b5 --- /dev/null +++ b/icons-react/icons-js/mood-sing.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodSing({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconMoodSing; \ No newline at end of file diff --git a/icons-react/icons-js/navigation.js b/icons-react/icons-js/navigation.js new file mode 100644 index 00000000..73c11a48 --- /dev/null +++ b/icons-react/icons-js/navigation.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNavigation({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconNavigation; \ No newline at end of file diff --git a/icons-react/icons-js/packages.js b/icons-react/icons-js/packages.js new file mode 100644 index 00000000..b3f85a2a --- /dev/null +++ b/icons-react/icons-js/packages.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPackages({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconPackages; \ No newline at end of file diff --git a/icons-react/icons-js/tower-off.js b/icons-react/icons-js/tower-off.js new file mode 100644 index 00000000..5cbc5283 --- /dev/null +++ b/icons-react/icons-js/tower-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTowerOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconTowerOff; \ No newline at end of file diff --git a/icons-react/icons-js/tower.js b/icons-react/icons-js/tower.js new file mode 100644 index 00000000..84ff5ccb --- /dev/null +++ b/icons-react/icons-js/tower.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTower({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconTower; \ No newline at end of file -- cgit v1.2.1