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 ++++++++++++ icons-react/index.d.ts | 18 ++++++++++++++++++ icons-react/index.js | 18 ++++++++++++++++++ 21 files changed, 253 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') 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 diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts index 05b338c4..11502421 100644 --- a/icons-react/index.d.ts +++ b/icons-react/index.d.ts @@ -129,6 +129,10 @@ export const IconArrowMergeBoth: TablerIcon; export const IconArrowMergeLeft: TablerIcon; export const IconArrowMergeRight: TablerIcon; export const IconArrowMerge: TablerIcon; +export const IconArrowMoveDown: TablerIcon; +export const IconArrowMoveLeft: TablerIcon; +export const IconArrowMoveRight: TablerIcon; +export const IconArrowMoveUp: TablerIcon; export const IconArrowNarrowDown: TablerIcon; export const IconArrowNarrowLeft: TablerIcon; export const IconArrowNarrowRight: TablerIcon; @@ -750,7 +754,13 @@ export const IconCodePlus: TablerIcon; export const IconCode: TablerIcon; export const IconCoffeeOff: TablerIcon; export const IconCoffee: TablerIcon; +export const IconCoinBitcoin: TablerIcon; +export const IconCoinEuro: TablerIcon; export const IconCoinOff: TablerIcon; +export const IconCoinPound: TablerIcon; +export const IconCoinRupee: TablerIcon; +export const IconCoinYen: TablerIcon; +export const IconCoinYuan: TablerIcon; export const IconCoin: TablerIcon; export const IconColorPickerOff: TablerIcon; export const IconColorPicker: TablerIcon; @@ -1383,6 +1393,7 @@ export const IconLiveView: TablerIcon; export const IconLoader2: TablerIcon; export const IconLoaderQuarter: TablerIcon; export const IconLoader: TablerIcon; +export const IconLocationBroken: TablerIcon; export const IconLocationOff: TablerIcon; export const IconLocation: TablerIcon; export const IconLockAccess: TablerIcon; @@ -1490,10 +1501,13 @@ export const IconMoodCry: TablerIcon; export const IconMoodEmpty: TablerIcon; export const IconMoodHappy: TablerIcon; export const IconMoodKid: TablerIcon; +export const IconMoodLookLeft: TablerIcon; +export const IconMoodLookRight: TablerIcon; export const IconMoodNervous: TablerIcon; export const IconMoodNeutral: TablerIcon; export const IconMoodOff: TablerIcon; export const IconMoodSad: TablerIcon; +export const IconMoodSing: TablerIcon; export const IconMoodSmile: TablerIcon; export const IconMoodSuprised: TablerIcon; export const IconMoodTongue: TablerIcon; @@ -1518,6 +1532,7 @@ export const IconMultiplier2x: TablerIcon; export const IconMushroom: TablerIcon; export const IconMusicOff: TablerIcon; export const IconMusic: TablerIcon; +export const IconNavigation: TablerIcon; export const IconNetwork: TablerIcon; export const IconNewSection: TablerIcon; export const IconNewsOff: TablerIcon; @@ -1560,6 +1575,7 @@ export const IconOval: TablerIcon; export const IconOverline: TablerIcon; export const IconPackageOff: TablerIcon; export const IconPackage: TablerIcon; +export const IconPackages: TablerIcon; export const IconPackgeExport: TablerIcon; export const IconPackgeImport: TablerIcon; export const IconPacman: TablerIcon; @@ -2033,6 +2049,8 @@ export const IconToolsOff: TablerIcon; export const IconTools: TablerIcon; export const IconTornado: TablerIcon; export const IconTournament: TablerIcon; +export const IconTowerOff: TablerIcon; +export const IconTower: TablerIcon; export const IconTrack: TablerIcon; export const IconTractor: TablerIcon; export const IconTrademark: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js index 2a6c5924..4f3024b6 100644 --- a/icons-react/index.js +++ b/icons-react/index.js @@ -123,6 +123,10 @@ export { default as IconArrowMergeBoth } from './icons-js/arrow-merge-both.js'; export { default as IconArrowMergeLeft } from './icons-js/arrow-merge-left.js'; export { default as IconArrowMergeRight } from './icons-js/arrow-merge-right.js'; export { default as IconArrowMerge } from './icons-js/arrow-merge.js'; +export { default as IconArrowMoveDown } from './icons-js/arrow-move-down.js'; +export { default as IconArrowMoveLeft } from './icons-js/arrow-move-left.js'; +export { default as IconArrowMoveRight } from './icons-js/arrow-move-right.js'; +export { default as IconArrowMoveUp } from './icons-js/arrow-move-up.js'; export { default as IconArrowNarrowDown } from './icons-js/arrow-narrow-down.js'; export { default as IconArrowNarrowLeft } from './icons-js/arrow-narrow-left.js'; export { default as IconArrowNarrowRight } from './icons-js/arrow-narrow-right.js'; @@ -744,7 +748,13 @@ export { default as IconCodePlus } from './icons-js/code-plus.js'; export { default as IconCode } from './icons-js/code.js'; export { default as IconCoffeeOff } from './icons-js/coffee-off.js'; export { default as IconCoffee } from './icons-js/coffee.js'; +export { default as IconCoinBitcoin } from './icons-js/coin-bitcoin.js'; +export { default as IconCoinEuro } from './icons-js/coin-euro.js'; export { default as IconCoinOff } from './icons-js/coin-off.js'; +export { default as IconCoinPound } from './icons-js/coin-pound.js'; +export { default as IconCoinRupee } from './icons-js/coin-rupee.js'; +export { default as IconCoinYen } from './icons-js/coin-yen.js'; +export { default as IconCoinYuan } from './icons-js/coin-yuan.js'; export { default as IconCoin } from './icons-js/coin.js'; export { default as IconColorPickerOff } from './icons-js/color-picker-off.js'; export { default as IconColorPicker } from './icons-js/color-picker.js'; @@ -1377,6 +1387,7 @@ export { default as IconLiveView } from './icons-js/live-view.js'; export { default as IconLoader2 } from './icons-js/loader-2.js'; export { default as IconLoaderQuarter } from './icons-js/loader-quarter.js'; export { default as IconLoader } from './icons-js/loader.js'; +export { default as IconLocationBroken } from './icons-js/location-broken.js'; export { default as IconLocationOff } from './icons-js/location-off.js'; export { default as IconLocation } from './icons-js/location.js'; export { default as IconLockAccess } from './icons-js/lock-access.js'; @@ -1484,10 +1495,13 @@ export { default as IconMoodCry } from './icons-js/mood-cry.js'; export { default as IconMoodEmpty } from './icons-js/mood-empty.js'; export { default as IconMoodHappy } from './icons-js/mood-happy.js'; export { default as IconMoodKid } from './icons-js/mood-kid.js'; +export { default as IconMoodLookLeft } from './icons-js/mood-look-left.js'; +export { default as IconMoodLookRight } from './icons-js/mood-look-right.js'; export { default as IconMoodNervous } from './icons-js/mood-nervous.js'; export { default as IconMoodNeutral } from './icons-js/mood-neutral.js'; export { default as IconMoodOff } from './icons-js/mood-off.js'; export { default as IconMoodSad } from './icons-js/mood-sad.js'; +export { default as IconMoodSing } from './icons-js/mood-sing.js'; export { default as IconMoodSmile } from './icons-js/mood-smile.js'; export { default as IconMoodSuprised } from './icons-js/mood-suprised.js'; export { default as IconMoodTongue } from './icons-js/mood-tongue.js'; @@ -1512,6 +1526,7 @@ export { default as IconMultiplier2x } from './icons-js/multiplier-2x.js'; export { default as IconMushroom } from './icons-js/mushroom.js'; export { default as IconMusicOff } from './icons-js/music-off.js'; export { default as IconMusic } from './icons-js/music.js'; +export { default as IconNavigation } from './icons-js/navigation.js'; export { default as IconNetwork } from './icons-js/network.js'; export { default as IconNewSection } from './icons-js/new-section.js'; export { default as IconNewsOff } from './icons-js/news-off.js'; @@ -1554,6 +1569,7 @@ export { default as IconOval } from './icons-js/oval.js'; export { default as IconOverline } from './icons-js/overline.js'; export { default as IconPackageOff } from './icons-js/package-off.js'; export { default as IconPackage } from './icons-js/package.js'; +export { default as IconPackages } from './icons-js/packages.js'; export { default as IconPackgeExport } from './icons-js/packge-export.js'; export { default as IconPackgeImport } from './icons-js/packge-import.js'; export { default as IconPacman } from './icons-js/pacman.js'; @@ -2027,6 +2043,8 @@ export { default as IconToolsOff } from './icons-js/tools-off.js'; export { default as IconTools } from './icons-js/tools.js'; export { default as IconTornado } from './icons-js/tornado.js'; export { default as IconTournament } from './icons-js/tournament.js'; +export { default as IconTowerOff } from './icons-js/tower-off.js'; +export { default as IconTower } from './icons-js/tower.js'; export { default as IconTrack } from './icons-js/track.js'; export { default as IconTractor } from './icons-js/tractor.js'; export { default as IconTrademark } from './icons-js/trademark.js'; -- cgit v1.2.1