From e73228c7f9356a9b8783f0b883c5a1c0c316adbc Mon Sep 17 00:00:00 2001 From: codecalm Date: Wed, 23 Mar 2022 19:21:14 +0100 Subject: Release 1.58.0 --- icons-react/icons-js/abacus.js | 12 ++++++++++++ icons-react/icons-js/baby-carriage.js | 12 ++++++++++++ icons-react/icons-js/bell-school.js | 12 ++++++++++++ icons-react/icons-js/cell.js | 12 ++++++++++++ icons-react/icons-js/device-heart-monitor.js | 12 ++++++++++++ icons-react/icons-js/device-laptop-off.js | 12 ++++++++++++ icons-react/icons-js/device-mobile-off.js | 12 ++++++++++++ icons-react/icons-js/device-tablet-off.js | 12 ++++++++++++ icons-react/icons-js/device-tv-off.js | 12 ++++++++++++ icons-react/icons-js/device-watch-off.js | 12 ++++++++++++ icons-react/icons-js/devices-off.js | 12 ++++++++++++ icons-react/icons-js/dialpad.js | 12 ++++++++++++ icons-react/icons-js/directions.js | 2 +- icons-react/icons-js/fidget-spinner.js | 12 ++++++++++++ icons-react/icons-js/mail-fast.js | 12 ++++++++++++ icons-react/icons-js/pennant-2.js | 12 ++++++++++++ icons-react/icons-js/sign-left.js | 12 ++++++++++++ icons-react/icons-js/sign-right.js | 12 ++++++++++++ icons-react/icons-js/windsock.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/abacus.js create mode 100644 icons-react/icons-js/baby-carriage.js create mode 100644 icons-react/icons-js/bell-school.js create mode 100644 icons-react/icons-js/cell.js create mode 100644 icons-react/icons-js/device-heart-monitor.js create mode 100644 icons-react/icons-js/device-laptop-off.js create mode 100644 icons-react/icons-js/device-mobile-off.js create mode 100644 icons-react/icons-js/device-tablet-off.js create mode 100644 icons-react/icons-js/device-tv-off.js create mode 100644 icons-react/icons-js/device-watch-off.js create mode 100644 icons-react/icons-js/devices-off.js create mode 100644 icons-react/icons-js/dialpad.js create mode 100644 icons-react/icons-js/fidget-spinner.js create mode 100644 icons-react/icons-js/mail-fast.js create mode 100644 icons-react/icons-js/pennant-2.js create mode 100644 icons-react/icons-js/sign-left.js create mode 100644 icons-react/icons-js/sign-right.js create mode 100644 icons-react/icons-js/windsock.js (limited to 'icons-react') diff --git a/icons-react/icons-js/abacus.js b/icons-react/icons-js/abacus.js new file mode 100644 index 00000000..38fc6735 --- /dev/null +++ b/icons-react/icons-js/abacus.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconAbacus({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconAbacus; \ No newline at end of file diff --git a/icons-react/icons-js/baby-carriage.js b/icons-react/icons-js/baby-carriage.js new file mode 100644 index 00000000..7fb61700 --- /dev/null +++ b/icons-react/icons-js/baby-carriage.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBabyCarriage({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBabyCarriage; \ No newline at end of file diff --git a/icons-react/icons-js/bell-school.js b/icons-react/icons-js/bell-school.js new file mode 100644 index 00000000..0a53c393 --- /dev/null +++ b/icons-react/icons-js/bell-school.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBellSchool({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBellSchool; \ No newline at end of file diff --git a/icons-react/icons-js/cell.js b/icons-react/icons-js/cell.js new file mode 100644 index 00000000..cc020d5a --- /dev/null +++ b/icons-react/icons-js/cell.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCell({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconCell; \ No newline at end of file diff --git a/icons-react/icons-js/device-heart-monitor.js b/icons-react/icons-js/device-heart-monitor.js new file mode 100644 index 00000000..1932a366 --- /dev/null +++ b/icons-react/icons-js/device-heart-monitor.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDeviceHeartMonitor({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconDeviceHeartMonitor; \ No newline at end of file diff --git a/icons-react/icons-js/device-laptop-off.js b/icons-react/icons-js/device-laptop-off.js new file mode 100644 index 00000000..1781df4c --- /dev/null +++ b/icons-react/icons-js/device-laptop-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDeviceLaptopOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconDeviceLaptopOff; \ No newline at end of file diff --git a/icons-react/icons-js/device-mobile-off.js b/icons-react/icons-js/device-mobile-off.js new file mode 100644 index 00000000..191ac02b --- /dev/null +++ b/icons-react/icons-js/device-mobile-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDeviceMobileOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconDeviceMobileOff; \ No newline at end of file diff --git a/icons-react/icons-js/device-tablet-off.js b/icons-react/icons-js/device-tablet-off.js new file mode 100644 index 00000000..02e6dfe1 --- /dev/null +++ b/icons-react/icons-js/device-tablet-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDeviceTabletOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconDeviceTabletOff; \ No newline at end of file diff --git a/icons-react/icons-js/device-tv-off.js b/icons-react/icons-js/device-tv-off.js new file mode 100644 index 00000000..59cb0468 --- /dev/null +++ b/icons-react/icons-js/device-tv-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDeviceTvOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconDeviceTvOff; \ No newline at end of file diff --git a/icons-react/icons-js/device-watch-off.js b/icons-react/icons-js/device-watch-off.js new file mode 100644 index 00000000..5604f5df --- /dev/null +++ b/icons-react/icons-js/device-watch-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDeviceWatchOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconDeviceWatchOff; \ No newline at end of file diff --git a/icons-react/icons-js/devices-off.js b/icons-react/icons-js/devices-off.js new file mode 100644 index 00000000..dec4e94e --- /dev/null +++ b/icons-react/icons-js/devices-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDevicesOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconDevicesOff; \ No newline at end of file diff --git a/icons-react/icons-js/dialpad.js b/icons-react/icons-js/dialpad.js new file mode 100644 index 00000000..41868167 --- /dev/null +++ b/icons-react/icons-js/dialpad.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDialpad({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconDialpad; \ No newline at end of file diff --git a/icons-react/icons-js/directions.js b/icons-react/icons-js/directions.js index 10480d05..31ff16d7 100644 --- a/icons-react/icons-js/directions.js +++ b/icons-react/icons-js/directions.js @@ -6,7 +6,7 @@ function IconDirections({ stroke = 2, ...props }) { - return ; + return ; } export default IconDirections; \ No newline at end of file diff --git a/icons-react/icons-js/fidget-spinner.js b/icons-react/icons-js/fidget-spinner.js new file mode 100644 index 00000000..5db2040c --- /dev/null +++ b/icons-react/icons-js/fidget-spinner.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFidgetSpinner({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconFidgetSpinner; \ No newline at end of file diff --git a/icons-react/icons-js/mail-fast.js b/icons-react/icons-js/mail-fast.js new file mode 100644 index 00000000..055d2d27 --- /dev/null +++ b/icons-react/icons-js/mail-fast.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMailFast({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconMailFast; \ No newline at end of file diff --git a/icons-react/icons-js/pennant-2.js b/icons-react/icons-js/pennant-2.js new file mode 100644 index 00000000..686cc634 --- /dev/null +++ b/icons-react/icons-js/pennant-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPennant2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconPennant2; \ No newline at end of file diff --git a/icons-react/icons-js/sign-left.js b/icons-react/icons-js/sign-left.js new file mode 100644 index 00000000..94793161 --- /dev/null +++ b/icons-react/icons-js/sign-left.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSignLeft({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconSignLeft; \ No newline at end of file diff --git a/icons-react/icons-js/sign-right.js b/icons-react/icons-js/sign-right.js new file mode 100644 index 00000000..d389abe9 --- /dev/null +++ b/icons-react/icons-js/sign-right.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSignRight({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconSignRight; \ No newline at end of file diff --git a/icons-react/icons-js/windsock.js b/icons-react/icons-js/windsock.js new file mode 100644 index 00000000..f2b4d9d9 --- /dev/null +++ b/icons-react/icons-js/windsock.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconWindsock({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconWindsock; \ No newline at end of file diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts index 22689f5b..6fd80fe9 100644 --- a/icons-react/index.d.ts +++ b/icons-react/index.d.ts @@ -8,6 +8,7 @@ export const Icon2fa: TablerIcon; export const Icon3dCubeSphere: TablerIcon; export const Icon3dRotate: TablerIcon; export const IconAB: TablerIcon; +export const IconAbacus: TablerIcon; export const IconAccessPointOff: TablerIcon; export const IconAccessPoint: TablerIcon; export const IconAccessible: TablerIcon; @@ -188,6 +189,7 @@ export const IconAward: TablerIcon; export const IconAxe: TablerIcon; export const IconAxisX: TablerIcon; export const IconAxisY: TablerIcon; +export const IconBabyCarriage: TablerIcon; export const IconBackhoe: TablerIcon; export const IconBackpack: TablerIcon; export const IconBackspace: TablerIcon; @@ -228,6 +230,7 @@ export const IconBellOff: TablerIcon; export const IconBellPlus: TablerIcon; export const IconBellRinging2: TablerIcon; export const IconBellRinging: TablerIcon; +export const IconBellSchool: TablerIcon; export const IconBellX: TablerIcon; export const IconBellZ: TablerIcon; export const IconBell: TablerIcon; @@ -461,6 +464,7 @@ export const IconCashBanknote: TablerIcon; export const IconCash: TablerIcon; export const IconCast: TablerIcon; export const IconCe: TablerIcon; +export const IconCell: TablerIcon; export const IconCertificate: TablerIcon; export const IconChargingPile: TablerIcon; export const IconChartArcs3: TablerIcon; @@ -663,21 +667,29 @@ export const IconDeviceDesktopOff: TablerIcon; export const IconDeviceDesktop: TablerIcon; export const IconDeviceFloppy: TablerIcon; export const IconDeviceGamepad: TablerIcon; +export const IconDeviceHeartMonitor: TablerIcon; +export const IconDeviceLaptopOff: TablerIcon; export const IconDeviceLaptop: TablerIcon; export const IconDeviceMobileMessage: TablerIcon; +export const IconDeviceMobileOff: TablerIcon; export const IconDeviceMobileRotated: TablerIcon; export const IconDeviceMobileVibration: TablerIcon; export const IconDeviceMobile: TablerIcon; export const IconDeviceNintendo: TablerIcon; export const IconDeviceSpeaker: TablerIcon; +export const IconDeviceTabletOff: TablerIcon; export const IconDeviceTablet: TablerIcon; +export const IconDeviceTvOff: TablerIcon; export const IconDeviceTv: TablerIcon; +export const IconDeviceWatchOff: TablerIcon; export const IconDeviceWatchStats2: TablerIcon; export const IconDeviceWatchStats: TablerIcon; export const IconDeviceWatch: TablerIcon; export const IconDevices2: TablerIcon; +export const IconDevicesOff: TablerIcon; export const IconDevicesPc: TablerIcon; export const IconDevices: TablerIcon; +export const IconDialpad: TablerIcon; export const IconDiamond: TablerIcon; export const IconDiamonds: TablerIcon; export const IconDice: TablerIcon; @@ -743,6 +755,7 @@ export const IconFaceMask: TablerIcon; export const IconFall: TablerIcon; export const IconFeather: TablerIcon; export const IconFence: TablerIcon; +export const IconFidgetSpinner: TablerIcon; export const IconFile3d: TablerIcon; export const IconFileAlert: TablerIcon; export const IconFileAnalytics: TablerIcon; @@ -1031,6 +1044,7 @@ export const IconLuggage: TablerIcon; export const IconLungs: TablerIcon; export const IconMacro: TablerIcon; export const IconMagnet: TablerIcon; +export const IconMailFast: TablerIcon; export const IconMailForward: TablerIcon; export const IconMailOpened: TablerIcon; export const IconMail: TablerIcon; @@ -1161,6 +1175,7 @@ export const IconParking: TablerIcon; export const IconPaw: TablerIcon; export const IconPeace: TablerIcon; export const IconPencil: TablerIcon; +export const IconPennant2: TablerIcon; export const IconPennant: TablerIcon; export const IconPentagon: TablerIcon; export const IconPepper: TablerIcon; @@ -1340,6 +1355,8 @@ export const IconShoppingCartPlus: TablerIcon; export const IconShoppingCartX: TablerIcon; export const IconShoppingCart: TablerIcon; export const IconShredder: TablerIcon; +export const IconSignLeft: TablerIcon; +export const IconSignRight: TablerIcon; export const IconSignature: TablerIcon; export const IconSitemap: TablerIcon; export const IconSkateboard: TablerIcon; @@ -1567,6 +1584,7 @@ export const IconWifi: TablerIcon; export const IconWind: TablerIcon; export const IconWindmill: TablerIcon; export const IconWindow: TablerIcon; +export const IconWindsock: TablerIcon; export const IconWiperWash: TablerIcon; export const IconWiper: TablerIcon; export const IconWoman: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js index 78012038..97d4a489 100644 --- a/icons-react/index.js +++ b/icons-react/index.js @@ -2,6 +2,7 @@ export { default as Icon2fa } from './icons-js/2fa.js'; export { default as Icon3dCubeSphere } from './icons-js/3d-cube-sphere.js'; export { default as Icon3dRotate } from './icons-js/3d-rotate.js'; export { default as IconAB } from './icons-js/a-b.js'; +export { default as IconAbacus } from './icons-js/abacus.js'; export { default as IconAccessPointOff } from './icons-js/access-point-off.js'; export { default as IconAccessPoint } from './icons-js/access-point.js'; export { default as IconAccessible } from './icons-js/accessible.js'; @@ -182,6 +183,7 @@ export { default as IconAward } from './icons-js/award.js'; export { default as IconAxe } from './icons-js/axe.js'; export { default as IconAxisX } from './icons-js/axis-x.js'; export { default as IconAxisY } from './icons-js/axis-y.js'; +export { default as IconBabyCarriage } from './icons-js/baby-carriage.js'; export { default as IconBackhoe } from './icons-js/backhoe.js'; export { default as IconBackpack } from './icons-js/backpack.js'; export { default as IconBackspace } from './icons-js/backspace.js'; @@ -222,6 +224,7 @@ export { default as IconBellOff } from './icons-js/bell-off.js'; export { default as IconBellPlus } from './icons-js/bell-plus.js'; export { default as IconBellRinging2 } from './icons-js/bell-ringing-2.js'; export { default as IconBellRinging } from './icons-js/bell-ringing.js'; +export { default as IconBellSchool } from './icons-js/bell-school.js'; export { default as IconBellX } from './icons-js/bell-x.js'; export { default as IconBellZ } from './icons-js/bell-z.js'; export { default as IconBell } from './icons-js/bell.js'; @@ -455,6 +458,7 @@ export { default as IconCashBanknote } from './icons-js/cash-banknote.js'; export { default as IconCash } from './icons-js/cash.js'; export { default as IconCast } from './icons-js/cast.js'; export { default as IconCe } from './icons-js/ce.js'; +export { default as IconCell } from './icons-js/cell.js'; export { default as IconCertificate } from './icons-js/certificate.js'; export { default as IconChargingPile } from './icons-js/charging-pile.js'; export { default as IconChartArcs3 } from './icons-js/chart-arcs-3.js'; @@ -657,21 +661,29 @@ export { default as IconDeviceDesktopOff } from './icons-js/device-desktop-off.j export { default as IconDeviceDesktop } from './icons-js/device-desktop.js'; export { default as IconDeviceFloppy } from './icons-js/device-floppy.js'; export { default as IconDeviceGamepad } from './icons-js/device-gamepad.js'; +export { default as IconDeviceHeartMonitor } from './icons-js/device-heart-monitor.js'; +export { default as IconDeviceLaptopOff } from './icons-js/device-laptop-off.js'; export { default as IconDeviceLaptop } from './icons-js/device-laptop.js'; export { default as IconDeviceMobileMessage } from './icons-js/device-mobile-message.js'; +export { default as IconDeviceMobileOff } from './icons-js/device-mobile-off.js'; export { default as IconDeviceMobileRotated } from './icons-js/device-mobile-rotated.js'; export { default as IconDeviceMobileVibration } from './icons-js/device-mobile-vibration.js'; export { default as IconDeviceMobile } from './icons-js/device-mobile.js'; export { default as IconDeviceNintendo } from './icons-js/device-nintendo.js'; export { default as IconDeviceSpeaker } from './icons-js/device-speaker.js'; +export { default as IconDeviceTabletOff } from './icons-js/device-tablet-off.js'; export { default as IconDeviceTablet } from './icons-js/device-tablet.js'; +export { default as IconDeviceTvOff } from './icons-js/device-tv-off.js'; export { default as IconDeviceTv } from './icons-js/device-tv.js'; +export { default as IconDeviceWatchOff } from './icons-js/device-watch-off.js'; export { default as IconDeviceWatchStats2 } from './icons-js/device-watch-stats-2.js'; export { default as IconDeviceWatchStats } from './icons-js/device-watch-stats.js'; export { default as IconDeviceWatch } from './icons-js/device-watch.js'; export { default as IconDevices2 } from './icons-js/devices-2.js'; +export { default as IconDevicesOff } from './icons-js/devices-off.js'; export { default as IconDevicesPc } from './icons-js/devices-pc.js'; export { default as IconDevices } from './icons-js/devices.js'; +export { default as IconDialpad } from './icons-js/dialpad.js'; export { default as IconDiamond } from './icons-js/diamond.js'; export { default as IconDiamonds } from './icons-js/diamonds.js'; export { default as IconDice } from './icons-js/dice.js'; @@ -737,6 +749,7 @@ export { default as IconFaceMask } from './icons-js/face-mask.js'; export { default as IconFall } from './icons-js/fall.js'; export { default as IconFeather } from './icons-js/feather.js'; export { default as IconFence } from './icons-js/fence.js'; +export { default as IconFidgetSpinner } from './icons-js/fidget-spinner.js'; export { default as IconFile3d } from './icons-js/file-3d.js'; export { default as IconFileAlert } from './icons-js/file-alert.js'; export { default as IconFileAnalytics } from './icons-js/file-analytics.js'; @@ -1025,6 +1038,7 @@ export { default as IconLuggage } from './icons-js/luggage.js'; export { default as IconLungs } from './icons-js/lungs.js'; export { default as IconMacro } from './icons-js/macro.js'; export { default as IconMagnet } from './icons-js/magnet.js'; +export { default as IconMailFast } from './icons-js/mail-fast.js'; export { default as IconMailForward } from './icons-js/mail-forward.js'; export { default as IconMailOpened } from './icons-js/mail-opened.js'; export { default as IconMail } from './icons-js/mail.js'; @@ -1155,6 +1169,7 @@ export { default as IconParking } from './icons-js/parking.js'; export { default as IconPaw } from './icons-js/paw.js'; export { default as IconPeace } from './icons-js/peace.js'; export { default as IconPencil } from './icons-js/pencil.js'; +export { default as IconPennant2 } from './icons-js/pennant-2.js'; export { default as IconPennant } from './icons-js/pennant.js'; export { default as IconPentagon } from './icons-js/pentagon.js'; export { default as IconPepper } from './icons-js/pepper.js'; @@ -1334,6 +1349,8 @@ export { default as IconShoppingCartPlus } from './icons-js/shopping-cart-plus.j export { default as IconShoppingCartX } from './icons-js/shopping-cart-x.js'; export { default as IconShoppingCart } from './icons-js/shopping-cart.js'; export { default as IconShredder } from './icons-js/shredder.js'; +export { default as IconSignLeft } from './icons-js/sign-left.js'; +export { default as IconSignRight } from './icons-js/sign-right.js'; export { default as IconSignature } from './icons-js/signature.js'; export { default as IconSitemap } from './icons-js/sitemap.js'; export { default as IconSkateboard } from './icons-js/skateboard.js'; @@ -1561,6 +1578,7 @@ export { default as IconWifi } from './icons-js/wifi.js'; export { default as IconWind } from './icons-js/wind.js'; export { default as IconWindmill } from './icons-js/windmill.js'; export { default as IconWindow } from './icons-js/window.js'; +export { default as IconWindsock } from './icons-js/windsock.js'; export { default as IconWiperWash } from './icons-js/wiper-wash.js'; export { default as IconWiper } from './icons-js/wiper.js'; export { default as IconWoman } from './icons-js/woman.js'; -- cgit v1.2.1