diff --git a/generator.js b/generator.js index 5a58213f5..cc7a39486 100644 --- a/generator.js +++ b/generator.js @@ -91,6 +91,8 @@ async function getSVGFile(icon, version) { .replace(/clip-rule/g, 'clipRule') .replace(/fill-rule/g, 'fillRule') .replace('>', '>{props.title && {props.title}}') + .replace(/style="enableBackground:(.*?);?"/g, 'enableBackground="$1"') + .replace(/style="fill:(.*?);?"/g, 'fill="$1"') } /** diff --git a/src/Icon123.tsx b/src/Icon123.tsx new file mode 100644 index 000000000..f6ab11cdf --- /dev/null +++ b/src/Icon123.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon123: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon123 as default } diff --git a/src/Icon18UpRating.tsx b/src/Icon18UpRating.tsx new file mode 100644 index 000000000..f45d1c34a --- /dev/null +++ b/src/Icon18UpRating.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon18UpRating: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { Icon18UpRating as default } diff --git a/src/IconAbc.tsx b/src/IconAbc.tsx new file mode 100644 index 000000000..8f8caab65 --- /dev/null +++ b/src/IconAbc.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAbc: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAbc as default } diff --git a/src/IconAccountBox.tsx b/src/IconAccountBox.tsx index a86a467e4..3171bfa89 100644 --- a/src/IconAccountBox.tsx +++ b/src/IconAccountBox.tsx @@ -2,10 +2,19 @@ import React from 'react' import { IconProps } from './types' const IconAccountBox: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + ) diff --git a/src/IconAccountCircle.tsx b/src/IconAccountCircle.tsx index ef5b9fec2..7309ff6a2 100644 --- a/src/IconAccountCircle.tsx +++ b/src/IconAccountCircle.tsx @@ -2,10 +2,19 @@ import React from 'react' import { IconProps } from './types' const IconAccountCircle: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + ) diff --git a/src/IconEmojiFlags.tsx b/src/IconAddCard.tsx similarity index 55% rename from src/IconEmojiFlags.tsx rename to src/IconAddCard.tsx index f7e022807..0460071ee 100644 --- a/src/IconEmojiFlags.tsx +++ b/src/IconAddCard.tsx @@ -1,7 +1,7 @@ import React from 'react' import { IconProps } from './types' -const IconEmojiFlags: React.FC = ({ ...props }) => ( +const IconAddCard: React.FC = ({ ...props }) => ( = ({ ...props }) => ( - - + ) -export { IconEmojiFlags as default } +export { IconAddCard as default } diff --git a/src/IconAddHome.tsx b/src/IconAddHome.tsx new file mode 100644 index 000000000..e25c0f678 --- /dev/null +++ b/src/IconAddHome.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddHome: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAddHome as default } diff --git a/src/IconAddHomeWork.tsx b/src/IconAddHomeWork.tsx new file mode 100644 index 000000000..30b7508fb --- /dev/null +++ b/src/IconAddHomeWork.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddHomeWork: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconAddHomeWork as default } diff --git a/src/IconAdfScanner.tsx b/src/IconAdfScanner.tsx new file mode 100644 index 000000000..6f85776d2 --- /dev/null +++ b/src/IconAdfScanner.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdfScanner: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAdfScanner as default } diff --git a/src/IconFacebook.tsx b/src/IconAirlineStops.tsx similarity index 51% rename from src/IconFacebook.tsx rename to src/IconAirlineStops.tsx index f14306306..d56d66ab2 100644 --- a/src/IconFacebook.tsx +++ b/src/IconAirlineStops.tsx @@ -1,7 +1,7 @@ import React from 'react' import { IconProps } from './types' -const IconFacebook: React.FC = ({ ...props }) => ( +const IconAirlineStops: React.FC = ({ ...props }) => ( = ({ ...props }) => ( > {props.title && {props.title}} - + ) -export { IconFacebook as default } +export { IconAirlineStops as default } diff --git a/src/IconAirlines.tsx b/src/IconAirlines.tsx new file mode 100644 index 000000000..f5dc8106c --- /dev/null +++ b/src/IconAirlines.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlines: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlines as default } diff --git a/src/IconAppShortcut.tsx b/src/IconAppShortcut.tsx new file mode 100644 index 000000000..2f1d06ba1 --- /dev/null +++ b/src/IconAppShortcut.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppShortcut: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAppShortcut as default } diff --git a/src/IconAppsOutage.tsx b/src/IconAppsOutage.tsx new file mode 100644 index 000000000..5d920d2b7 --- /dev/null +++ b/src/IconAppsOutage.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppsOutage: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAppsOutage as default } diff --git a/src/IconArrowCircleLeft.tsx b/src/IconArrowCircleLeft.tsx new file mode 100644 index 000000000..0fa96c99c --- /dev/null +++ b/src/IconArrowCircleLeft.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleLeft: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconArrowCircleLeft as default } diff --git a/src/IconArrowCircleRight.tsx b/src/IconArrowCircleRight.tsx new file mode 100644 index 000000000..70d770122 --- /dev/null +++ b/src/IconArrowCircleRight.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleRight: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconArrowCircleRight as default } diff --git a/src/IconArrowOutward.tsx b/src/IconArrowOutward.tsx new file mode 100644 index 000000000..406ab8ca9 --- /dev/null +++ b/src/IconArrowOutward.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowOutward: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconArrowOutward as default } diff --git a/src/IconAssistWalker.tsx b/src/IconAssistWalker.tsx new file mode 100644 index 000000000..be5c46730 --- /dev/null +++ b/src/IconAssistWalker.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistWalker: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAssistWalker as default } diff --git a/src/IconAssuredWorkload.tsx b/src/IconAssuredWorkload.tsx new file mode 100644 index 000000000..c44cc4ded --- /dev/null +++ b/src/IconAssuredWorkload.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssuredWorkload: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAssuredWorkload as default } diff --git a/src/IconAudioFile.tsx b/src/IconAudioFile.tsx new file mode 100644 index 000000000..d5c5a9351 --- /dev/null +++ b/src/IconAudioFile.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudioFile: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAudioFile as default } diff --git a/src/IconAutoMode.tsx b/src/IconAutoMode.tsx new file mode 100644 index 000000000..df9a78b63 --- /dev/null +++ b/src/IconAutoMode.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoMode: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAutoMode as default } diff --git a/src/IconBalance.tsx b/src/IconBalance.tsx new file mode 100644 index 000000000..d9f6e5430 --- /dev/null +++ b/src/IconBalance.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBalance: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBalance as default } diff --git a/src/IconBattery0Bar.tsx b/src/IconBattery0Bar.tsx new file mode 100644 index 000000000..c3bec2ac0 --- /dev/null +++ b/src/IconBattery0Bar.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery0Bar: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery0Bar as default } diff --git a/src/IconBattery1Bar.tsx b/src/IconBattery1Bar.tsx new file mode 100644 index 000000000..d4e90687f --- /dev/null +++ b/src/IconBattery1Bar.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery1Bar: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery1Bar as default } diff --git a/src/IconBattery2Bar.tsx b/src/IconBattery2Bar.tsx new file mode 100644 index 000000000..1fac3dea1 --- /dev/null +++ b/src/IconBattery2Bar.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery2Bar: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery2Bar as default } diff --git a/src/IconBattery3Bar.tsx b/src/IconBattery3Bar.tsx new file mode 100644 index 000000000..473a39483 --- /dev/null +++ b/src/IconBattery3Bar.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery3Bar: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery3Bar as default } diff --git a/src/IconBattery4Bar.tsx b/src/IconBattery4Bar.tsx new file mode 100644 index 000000000..eef87bbeb --- /dev/null +++ b/src/IconBattery4Bar.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery4Bar: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery4Bar as default } diff --git a/src/IconBattery5Bar.tsx b/src/IconBattery5Bar.tsx new file mode 100644 index 000000000..a9ae0ada3 --- /dev/null +++ b/src/IconBattery5Bar.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery5Bar: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery5Bar as default } diff --git a/src/IconBattery6Bar.tsx b/src/IconBattery6Bar.tsx new file mode 100644 index 000000000..6357e0a73 --- /dev/null +++ b/src/IconBattery6Bar.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery6Bar: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery6Bar as default } diff --git a/src/IconBedtimeOff.tsx b/src/IconBedtimeOff.tsx new file mode 100644 index 000000000..929da3665 --- /dev/null +++ b/src/IconBedtimeOff.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedtimeOff: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconBedtimeOff as default } diff --git a/src/IconBlind.tsx b/src/IconBlind.tsx new file mode 100644 index 000000000..e9a2df283 --- /dev/null +++ b/src/IconBlind.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlind: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBlind as default } diff --git a/src/IconBlinds.tsx b/src/IconBlinds.tsx new file mode 100644 index 000000000..57fcbd7a8 --- /dev/null +++ b/src/IconBlinds.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlinds: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBlinds as default } diff --git a/src/IconBlindsClosed.tsx b/src/IconBlindsClosed.tsx new file mode 100644 index 000000000..77eeb4480 --- /dev/null +++ b/src/IconBlindsClosed.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindsClosed: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBlindsClosed as default } diff --git a/src/IconBoy.tsx b/src/IconBoy.tsx new file mode 100644 index 000000000..4f52e3b08 --- /dev/null +++ b/src/IconBoy.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoy: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBoy as default } diff --git a/src/IconBroadcastOnHome.tsx b/src/IconBroadcastOnHome.tsx new file mode 100644 index 000000000..c6d3bede5 --- /dev/null +++ b/src/IconBroadcastOnHome.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBroadcastOnHome: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconBroadcastOnHome as default } diff --git a/src/IconBroadcastOnPersonal.tsx b/src/IconBroadcastOnPersonal.tsx new file mode 100644 index 000000000..001f25619 --- /dev/null +++ b/src/IconBroadcastOnPersonal.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBroadcastOnPersonal: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconBroadcastOnPersonal as default } diff --git a/src/IconBrowseGallery.tsx b/src/IconBrowseGallery.tsx new file mode 100644 index 000000000..e0a36f495 --- /dev/null +++ b/src/IconBrowseGallery.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowseGallery: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBrowseGallery as default } diff --git a/src/IconBrowserUpdated.tsx b/src/IconBrowserUpdated.tsx new file mode 100644 index 000000000..a3a2b1b8b --- /dev/null +++ b/src/IconBrowserUpdated.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowserUpdated: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrowserUpdated as default } diff --git a/src/IconCalendarMonth.tsx b/src/IconCalendarMonth.tsx new file mode 100644 index 000000000..51cfab29f --- /dev/null +++ b/src/IconCalendarMonth.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarMonth: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCalendarMonth as default } diff --git a/src/IconCandlestickChart.tsx b/src/IconCandlestickChart.tsx new file mode 100644 index 000000000..25f9f5460 --- /dev/null +++ b/src/IconCandlestickChart.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCandlestickChart: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconCandlestickChart as default } diff --git a/src/IconCarCrash.tsx b/src/IconCarCrash.tsx new file mode 100644 index 000000000..d855b8119 --- /dev/null +++ b/src/IconCarCrash.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarCrash: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCarCrash as default } diff --git a/src/IconCastle.tsx b/src/IconCastle.tsx new file mode 100644 index 000000000..695d8f54c --- /dev/null +++ b/src/IconCastle.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastle: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCastle as default } diff --git a/src/IconCellTower.tsx b/src/IconCellTower.tsx new file mode 100644 index 000000000..6a4ce649a --- /dev/null +++ b/src/IconCellTower.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellTower: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconCellTower as default } diff --git a/src/IconChurch.tsx b/src/IconChurch.tsx new file mode 100644 index 000000000..5aad008c1 --- /dev/null +++ b/src/IconChurch.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChurch: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconChurch as default } diff --git a/src/IconCloudSync.tsx b/src/IconCloudSync.tsx new file mode 100644 index 000000000..a2a2c679b --- /dev/null +++ b/src/IconCloudSync.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudSync: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCloudSync as default } diff --git a/src/IconCoPresent.tsx b/src/IconCoPresent.tsx new file mode 100644 index 000000000..58baaecde --- /dev/null +++ b/src/IconCoPresent.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoPresent: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconCoPresent as default } diff --git a/src/IconCommit.tsx b/src/IconCommit.tsx new file mode 100644 index 000000000..e166d4de4 --- /dev/null +++ b/src/IconCommit.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommit: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCommit as default } diff --git a/src/IconConnectingAirports.tsx b/src/IconConnectingAirports.tsx new file mode 100644 index 000000000..209ceedb5 --- /dev/null +++ b/src/IconConnectingAirports.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectingAirports: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconConnectingAirports as default } diff --git a/src/IconContactEmergency.tsx b/src/IconContactEmergency.tsx new file mode 100644 index 000000000..e69123de4 --- /dev/null +++ b/src/IconContactEmergency.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactEmergency: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconContactEmergency as default } diff --git a/src/IconContentPasteGo.tsx b/src/IconContentPasteGo.tsx new file mode 100644 index 000000000..3f4e6479b --- /dev/null +++ b/src/IconContentPasteGo.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteGo: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconContentPasteGo as default } diff --git a/src/IconContentPasteSearch.tsx b/src/IconContentPasteSearch.tsx new file mode 100644 index 000000000..bff2366f2 --- /dev/null +++ b/src/IconContentPasteSearch.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteSearch: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconContentPasteSearch as default } diff --git a/src/IconContrast.tsx b/src/IconContrast.tsx new file mode 100644 index 000000000..c94b0c2ed --- /dev/null +++ b/src/IconContrast.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrast: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconContrast as default } diff --git a/src/IconCookie.tsx b/src/IconCookie.tsx new file mode 100644 index 000000000..20f6803ae --- /dev/null +++ b/src/IconCookie.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCookie: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCookie as default } diff --git a/src/IconCrisisAlert.tsx b/src/IconCrisisAlert.tsx new file mode 100644 index 000000000..cb3c19855 --- /dev/null +++ b/src/IconCrisisAlert.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrisisAlert: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCrisisAlert as default } diff --git a/src/IconCss.tsx b/src/IconCss.tsx new file mode 100644 index 000000000..66f016422 --- /dev/null +++ b/src/IconCss.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCss: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCss as default } diff --git a/src/IconCurrencyBitcoin.tsx b/src/IconCurrencyBitcoin.tsx new file mode 100644 index 000000000..2afc79191 --- /dev/null +++ b/src/IconCurrencyBitcoin.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyBitcoin: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyBitcoin as default } diff --git a/src/IconCurrencyExchange.tsx b/src/IconCurrencyExchange.tsx new file mode 100644 index 000000000..1d829fba1 --- /dev/null +++ b/src/IconCurrencyExchange.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyExchange: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyExchange as default } diff --git a/src/IconCurrencyFranc.tsx b/src/IconCurrencyFranc.tsx new file mode 100644 index 000000000..e1da5ed5d --- /dev/null +++ b/src/IconCurrencyFranc.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyFranc: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyFranc as default } diff --git a/src/IconCurrencyLira.tsx b/src/IconCurrencyLira.tsx new file mode 100644 index 000000000..c1f75591a --- /dev/null +++ b/src/IconCurrencyLira.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyLira: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyLira as default } diff --git a/src/IconCurrencyPound.tsx b/src/IconCurrencyPound.tsx new file mode 100644 index 000000000..2ac585423 --- /dev/null +++ b/src/IconCurrencyPound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyPound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyPound as default } diff --git a/src/IconCurrencyRuble.tsx b/src/IconCurrencyRuble.tsx new file mode 100644 index 000000000..218f97ad7 --- /dev/null +++ b/src/IconCurrencyRuble.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRuble: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyRuble as default } diff --git a/src/IconCurrencyRupee.tsx b/src/IconCurrencyRupee.tsx new file mode 100644 index 000000000..79fc47afd --- /dev/null +++ b/src/IconCurrencyRupee.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRupee: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCurrencyRupee as default } diff --git a/src/IconCurrencyYen.tsx b/src/IconCurrencyYen.tsx new file mode 100644 index 000000000..c79036f9f --- /dev/null +++ b/src/IconCurrencyYen.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyYen: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyYen as default } diff --git a/src/IconCurrencyYuan.tsx b/src/IconCurrencyYuan.tsx new file mode 100644 index 000000000..de3e6b623 --- /dev/null +++ b/src/IconCurrencyYuan.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyYuan: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyYuan as default } diff --git a/src/IconCurtains.tsx b/src/IconCurtains.tsx new file mode 100644 index 000000000..510511813 --- /dev/null +++ b/src/IconCurtains.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurtains: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurtains as default } diff --git a/src/IconCurtainsClosed.tsx b/src/IconCurtainsClosed.tsx new file mode 100644 index 000000000..000b7ccb0 --- /dev/null +++ b/src/IconCurtainsClosed.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurtainsClosed: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurtainsClosed as default } diff --git a/src/IconCyclone.tsx b/src/IconCyclone.tsx new file mode 100644 index 000000000..5e9e6cc7e --- /dev/null +++ b/src/IconCyclone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCyclone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCyclone as default } diff --git a/src/IconDataArray.tsx b/src/IconDataArray.tsx new file mode 100644 index 000000000..b841df02d --- /dev/null +++ b/src/IconDataArray.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataArray: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDataArray as default } diff --git a/src/IconDataObject.tsx b/src/IconDataObject.tsx new file mode 100644 index 000000000..98f88e69d --- /dev/null +++ b/src/IconDataObject.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataObject: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDataObject as default } diff --git a/src/IconDataThresholding.tsx b/src/IconDataThresholding.tsx new file mode 100644 index 000000000..93df736bf --- /dev/null +++ b/src/IconDataThresholding.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataThresholding: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDataThresholding as default } diff --git a/src/IconDataset.tsx b/src/IconDataset.tsx new file mode 100644 index 000000000..d84cabdc5 --- /dev/null +++ b/src/IconDataset.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataset: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDataset as default } diff --git a/src/IconDatasetLinked.tsx b/src/IconDatasetLinked.tsx new file mode 100644 index 000000000..d2b201d0e --- /dev/null +++ b/src/IconDatasetLinked.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatasetLinked: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDatasetLinked as default } diff --git a/src/IconDeblur.tsx b/src/IconDeblur.tsx new file mode 100644 index 000000000..b0c716144 --- /dev/null +++ b/src/IconDeblur.tsx @@ -0,0 +1,35 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeblur: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDeblur as default } diff --git a/src/IconDensityLarge.tsx b/src/IconDensityLarge.tsx new file mode 100644 index 000000000..0377edd23 --- /dev/null +++ b/src/IconDensityLarge.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensityLarge: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDensityLarge as default } diff --git a/src/IconDensityMedium.tsx b/src/IconDensityMedium.tsx new file mode 100644 index 000000000..3c780fa6a --- /dev/null +++ b/src/IconDensityMedium.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensityMedium: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDensityMedium as default } diff --git a/src/IconDensitySmall.tsx b/src/IconDensitySmall.tsx new file mode 100644 index 000000000..3cd7e6912 --- /dev/null +++ b/src/IconDensitySmall.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensitySmall: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDensitySmall as default } diff --git a/src/IconDeselect.tsx b/src/IconDeselect.tsx new file mode 100644 index 000000000..45836c6f0 --- /dev/null +++ b/src/IconDeselect.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeselect: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDeselect as default } diff --git a/src/IconDesk.tsx b/src/IconDesk.tsx new file mode 100644 index 000000000..ce8d0f36a --- /dev/null +++ b/src/IconDesk.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesk: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDesk as default } diff --git a/src/IconDevicesFold.tsx b/src/IconDevicesFold.tsx new file mode 100644 index 000000000..4491b5e38 --- /dev/null +++ b/src/IconDevicesFold.tsx @@ -0,0 +1,46 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesFold: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDevicesFold as default } diff --git a/src/IconDiamond.tsx b/src/IconDiamond.tsx new file mode 100644 index 000000000..b34d09c27 --- /dev/null +++ b/src/IconDiamond.tsx @@ -0,0 +1,37 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiamond: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDiamond as default } diff --git a/src/IconDifference.tsx b/src/IconDifference.tsx new file mode 100644 index 000000000..a3a0fa453 --- /dev/null +++ b/src/IconDifference.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDifference: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDifference as default } diff --git a/src/IconDiscount.tsx b/src/IconDiscount.tsx new file mode 100644 index 000000000..2bcb722dd --- /dev/null +++ b/src/IconDiscount.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiscount: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconDiscount as default } diff --git a/src/IconDisplaySettings.tsx b/src/IconDisplaySettings.tsx new file mode 100644 index 000000000..bb61a08e5 --- /dev/null +++ b/src/IconDisplaySettings.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisplaySettings: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDisplaySettings as default } diff --git a/src/IconDiversity1.tsx b/src/IconDiversity1.tsx new file mode 100644 index 000000000..d6a2b2311 --- /dev/null +++ b/src/IconDiversity1.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity1: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconDiversity1 as default } diff --git a/src/IconDiversity2.tsx b/src/IconDiversity2.tsx new file mode 100644 index 000000000..cb13f7ddc --- /dev/null +++ b/src/IconDiversity2.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity2: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDiversity2 as default } diff --git a/src/IconDiversity3.tsx b/src/IconDiversity3.tsx new file mode 100644 index 000000000..a1a0ae2ad --- /dev/null +++ b/src/IconDiversity3.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity3: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDiversity3 as default } diff --git a/src/IconDomainAdd.tsx b/src/IconDomainAdd.tsx new file mode 100644 index 000000000..f13255522 --- /dev/null +++ b/src/IconDomainAdd.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainAdd: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDomainAdd as default } diff --git a/src/IconEgg.tsx b/src/IconEgg.tsx new file mode 100644 index 000000000..c1e585cda --- /dev/null +++ b/src/IconEgg.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEgg: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEgg as default } diff --git a/src/IconEggAlt.tsx b/src/IconEggAlt.tsx new file mode 100644 index 000000000..a6eb3363c --- /dev/null +++ b/src/IconEggAlt.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEggAlt: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEggAlt as default } diff --git a/src/IconElderlyWoman.tsx b/src/IconElderlyWoman.tsx new file mode 100644 index 000000000..8905a02b8 --- /dev/null +++ b/src/IconElderlyWoman.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElderlyWoman: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconElderlyWoman as default } diff --git a/src/IconElectricBolt.tsx b/src/IconElectricBolt.tsx new file mode 100644 index 000000000..9fb8e7986 --- /dev/null +++ b/src/IconElectricBolt.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricBolt: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconElectricBolt as default } diff --git a/src/IconElectricMeter.tsx b/src/IconElectricMeter.tsx new file mode 100644 index 000000000..ffb26918f --- /dev/null +++ b/src/IconElectricMeter.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricMeter: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconElectricMeter as default } diff --git a/src/IconEmergencyRecording.tsx b/src/IconEmergencyRecording.tsx new file mode 100644 index 000000000..b81e71afd --- /dev/null +++ b/src/IconEmergencyRecording.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyRecording: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconEmergencyRecording as default } diff --git a/src/IconEmergencyShare.tsx b/src/IconEmergencyShare.tsx new file mode 100644 index 000000000..bee20437f --- /dev/null +++ b/src/IconEmergencyShare.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyShare: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconEmergencyShare as default } diff --git a/src/IconEnergySavingsLeaf.tsx b/src/IconEnergySavingsLeaf.tsx new file mode 100644 index 000000000..138cc5059 --- /dev/null +++ b/src/IconEnergySavingsLeaf.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergySavingsLeaf: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEnergySavingsLeaf as default } diff --git a/src/IconEventRepeat.tsx b/src/IconEventRepeat.tsx new file mode 100644 index 000000000..60e4af1dd --- /dev/null +++ b/src/IconEventRepeat.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventRepeat: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconEventRepeat as default } diff --git a/src/IconExpandCircleDown.tsx b/src/IconExpandCircleDown.tsx new file mode 100644 index 000000000..d9d7ae922 --- /dev/null +++ b/src/IconExpandCircleDown.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandCircleDown: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExpandCircleDown as default } diff --git a/src/IconFace2.tsx b/src/IconFace2.tsx new file mode 100644 index 000000000..2e21d09ec --- /dev/null +++ b/src/IconFace2.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace2: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFace2 as default } diff --git a/src/IconFace3.tsx b/src/IconFace3.tsx new file mode 100644 index 000000000..2eb01a993 --- /dev/null +++ b/src/IconFace3.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace3: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFace3 as default } diff --git a/src/IconFace4.tsx b/src/IconFace4.tsx new file mode 100644 index 000000000..998a09adf --- /dev/null +++ b/src/IconFace4.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace4: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFace4 as default } diff --git a/src/IconFace5.tsx b/src/IconFace5.tsx new file mode 100644 index 000000000..d4f6a716c --- /dev/null +++ b/src/IconFace5.tsx @@ -0,0 +1,45 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace5: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconFace5 as default } diff --git a/src/IconFace6.tsx b/src/IconFace6.tsx new file mode 100644 index 000000000..944bdd427 --- /dev/null +++ b/src/IconFace6.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace6: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFace6 as default } diff --git a/src/IconFactory.tsx b/src/IconFactory.tsx new file mode 100644 index 000000000..4b271e653 --- /dev/null +++ b/src/IconFactory.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFactory: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFactory as default } diff --git a/src/IconFax.tsx b/src/IconFax.tsx new file mode 100644 index 000000000..b5335ac3e --- /dev/null +++ b/src/IconFax.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFax: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFax as default } diff --git a/src/IconFileOpen.tsx b/src/IconFileOpen.tsx new file mode 100644 index 000000000..ac429f1d8 --- /dev/null +++ b/src/IconFileOpen.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileOpen: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFileOpen as default } diff --git a/src/IconFilterAltOff.tsx b/src/IconFilterAltOff.tsx new file mode 100644 index 000000000..2f23812cc --- /dev/null +++ b/src/IconFilterAltOff.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterAltOff: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFilterAltOff as default } diff --git a/src/IconFilterListOff.tsx b/src/IconFilterListOff.tsx new file mode 100644 index 000000000..aced1a475 --- /dev/null +++ b/src/IconFilterListOff.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterListOff: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFilterListOff as default } diff --git a/src/IconFireHydrantAlt.tsx b/src/IconFireHydrantAlt.tsx new file mode 100644 index 000000000..754fc7624 --- /dev/null +++ b/src/IconFireHydrantAlt.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireHydrantAlt: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFireHydrantAlt as default } diff --git a/src/IconFireTruck.tsx b/src/IconFireTruck.tsx new file mode 100644 index 000000000..1cc9d53f3 --- /dev/null +++ b/src/IconFireTruck.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireTruck: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFireTruck as default } diff --git a/src/IconFitbit.tsx b/src/IconFitbit.tsx new file mode 100644 index 000000000..5e618d908 --- /dev/null +++ b/src/IconFitbit.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitbit: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFitbit as default } diff --git a/src/IconFlagCircle.tsx b/src/IconFlagCircle.tsx new file mode 100644 index 000000000..eb8db3be7 --- /dev/null +++ b/src/IconFlagCircle.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlagCircle: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconFlagCircle as default } diff --git a/src/IconFlightClass.tsx b/src/IconFlightClass.tsx new file mode 100644 index 000000000..2f95f91ce --- /dev/null +++ b/src/IconFlightClass.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightClass: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlightClass as default } diff --git a/src/IconFlood.tsx b/src/IconFlood.tsx new file mode 100644 index 000000000..fa20e1121 --- /dev/null +++ b/src/IconFlood.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlood: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFlood as default } diff --git a/src/IconFlourescent.tsx b/src/IconFluorescent.tsx similarity index 91% rename from src/IconFlourescent.tsx rename to src/IconFluorescent.tsx index 14f5a1531..97542df2d 100644 --- a/src/IconFlourescent.tsx +++ b/src/IconFluorescent.tsx @@ -1,7 +1,7 @@ import React from 'react' import { IconProps } from './types' -const IconFlourescent: React.FC = ({ ...props }) => ( +const IconFluorescent: React.FC = ({ ...props }) => ( = ({ ...props }) => ( ) -export { IconFlourescent as default } +export { IconFluorescent as default } diff --git a/src/IconFolderCopy.tsx b/src/IconFolderCopy.tsx new file mode 100644 index 000000000..03ffc9e0d --- /dev/null +++ b/src/IconFolderCopy.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderCopy: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFolderCopy as default } diff --git a/src/IconFolderDelete.tsx b/src/IconFolderDelete.tsx new file mode 100644 index 000000000..e4177700a --- /dev/null +++ b/src/IconFolderDelete.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderDelete: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFolderDelete as default } diff --git a/src/IconFolderOff.tsx b/src/IconFolderOff.tsx new file mode 100644 index 000000000..5dd432862 --- /dev/null +++ b/src/IconFolderOff.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOff: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFolderOff as default } diff --git a/src/IconFolderZip.tsx b/src/IconFolderZip.tsx new file mode 100644 index 000000000..abca481a6 --- /dev/null +++ b/src/IconFolderZip.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderZip: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFolderZip as default } diff --git a/src/IconForest.tsx b/src/IconForest.tsx new file mode 100644 index 000000000..d167eaf63 --- /dev/null +++ b/src/IconForest.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForest: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconForest as default } diff --git a/src/IconForkLeft.tsx b/src/IconForkLeft.tsx new file mode 100644 index 000000000..9ebe8426e --- /dev/null +++ b/src/IconForkLeft.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkLeft: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconForkLeft as default } diff --git a/src/IconForkRight.tsx b/src/IconForkRight.tsx new file mode 100644 index 000000000..5ad1a4fe8 --- /dev/null +++ b/src/IconForkRight.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkRight: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconForkRight as default } diff --git a/src/IconFormatColorText.tsx b/src/IconFormatColorText.tsx index 4e191c512..db7a7c86a 100644 --- a/src/IconFormatColorText.tsx +++ b/src/IconFormatColorText.tsx @@ -9,8 +9,12 @@ const IconFormatColorText: React.FC = ({ ...props }) => ( {...props} > {props.title && {props.title}} - - + + + + + + ) diff --git a/src/IconFormatOverline.tsx b/src/IconFormatOverline.tsx new file mode 100644 index 000000000..b02233484 --- /dev/null +++ b/src/IconFormatOverline.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatOverline: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFormatOverline as default } diff --git a/src/IconFort.tsx b/src/IconFort.tsx new file mode 100644 index 000000000..b00bd4d1f --- /dev/null +++ b/src/IconFort.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFort: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconFort as default } diff --git a/src/IconGasMeter.tsx b/src/IconGasMeter.tsx new file mode 100644 index 000000000..e46248776 --- /dev/null +++ b/src/IconGasMeter.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGasMeter: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGasMeter as default } diff --git a/src/IconGirl.tsx b/src/IconGirl.tsx new file mode 100644 index 000000000..ba2074f36 --- /dev/null +++ b/src/IconGirl.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGirl: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconGirl as default } diff --git a/src/IconGroupAdd.tsx b/src/IconGroupAdd.tsx index 3342d2d0b..75689cbfd 100644 --- a/src/IconGroupAdd.tsx +++ b/src/IconGroupAdd.tsx @@ -2,10 +2,26 @@ import React from 'react' import { IconProps } from './types' const IconGroupAdd: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + + + + + + + + ) diff --git a/src/IconGroups2.tsx b/src/IconGroups2.tsx new file mode 100644 index 000000000..76694bbba --- /dev/null +++ b/src/IconGroups2.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroups2: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconGroups2 as default } diff --git a/src/IconGroups3.tsx b/src/IconGroups3.tsx new file mode 100644 index 000000000..c7826816e --- /dev/null +++ b/src/IconGroups3.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroups3: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconGroups3 as default } diff --git a/src/IconHandshake.tsx b/src/IconHandshake.tsx new file mode 100644 index 000000000..464b9961b --- /dev/null +++ b/src/IconHandshake.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandshake: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHandshake as default } diff --git a/src/IconHeartBroken.tsx b/src/IconHeartBroken.tsx new file mode 100644 index 000000000..4bae0f5c2 --- /dev/null +++ b/src/IconHeartBroken.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartBroken: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHeartBroken as default } diff --git a/src/IconHeatPump.tsx b/src/IconHeatPump.tsx new file mode 100644 index 000000000..d1988f42d --- /dev/null +++ b/src/IconHeatPump.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeatPump: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHeatPump as default } diff --git a/src/IconHexagon.tsx b/src/IconHexagon.tsx new file mode 100644 index 000000000..b961aa552 --- /dev/null +++ b/src/IconHexagon.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHexagon: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHexagon as default } diff --git a/src/IconHive.tsx b/src/IconHive.tsx new file mode 100644 index 000000000..19af7015e --- /dev/null +++ b/src/IconHive.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHive: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconHive as default } diff --git a/src/IconHls.tsx b/src/IconHls.tsx new file mode 100644 index 000000000..561392e1b --- /dev/null +++ b/src/IconHls.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHls: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHls as default } diff --git a/src/IconHlsOff.tsx b/src/IconHlsOff.tsx new file mode 100644 index 000000000..b831d0499 --- /dev/null +++ b/src/IconHlsOff.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHlsOff: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHlsOff as default } diff --git a/src/IconHomeWork.tsx b/src/IconHomeWork.tsx index e0a6e7e03..e6a2b1a86 100644 --- a/src/IconHomeWork.tsx +++ b/src/IconHomeWork.tsx @@ -2,12 +2,22 @@ import React from 'react' import { IconProps } from './types' const IconHomeWork: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - - - + + + + + + + + + ) diff --git a/src/IconHtml.tsx b/src/IconHtml.tsx new file mode 100644 index 000000000..84c72769e --- /dev/null +++ b/src/IconHtml.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHtml: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHtml as default } diff --git a/src/IconHub.tsx b/src/IconHub.tsx new file mode 100644 index 000000000..9e19edbb7 --- /dev/null +++ b/src/IconHub.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHub: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHub as default } diff --git a/src/IconInsertPageBreak.tsx b/src/IconInsertPageBreak.tsx new file mode 100644 index 000000000..71b61578f --- /dev/null +++ b/src/IconInsertPageBreak.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertPageBreak: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconInsertPageBreak as default } diff --git a/src/IconInstallDesktop.tsx b/src/IconInstallDesktop.tsx new file mode 100644 index 000000000..f3a645ee3 --- /dev/null +++ b/src/IconInstallDesktop.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstallDesktop: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconInstallDesktop as default } diff --git a/src/IconInstallMobile.tsx b/src/IconInstallMobile.tsx new file mode 100644 index 000000000..b127c40e6 --- /dev/null +++ b/src/IconInstallMobile.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstallMobile: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconInstallMobile as default } diff --git a/src/IconInterests.tsx b/src/IconInterests.tsx new file mode 100644 index 000000000..0e9a6e3c1 --- /dev/null +++ b/src/IconInterests.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInterests: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInterests as default } diff --git a/src/IconInterpreterMode.tsx b/src/IconInterpreterMode.tsx new file mode 100644 index 000000000..4f931c079 --- /dev/null +++ b/src/IconInterpreterMode.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInterpreterMode: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInterpreterMode as default } diff --git a/src/IconJavascript.tsx b/src/IconJavascript.tsx new file mode 100644 index 000000000..4f28d4cee --- /dev/null +++ b/src/IconJavascript.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJavascript: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconJavascript as default } diff --git a/src/IconJoinFull.tsx b/src/IconJoinFull.tsx new file mode 100644 index 000000000..5fcdec495 --- /dev/null +++ b/src/IconJoinFull.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinFull: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconJoinFull as default } diff --git a/src/IconJoinInner.tsx b/src/IconJoinInner.tsx new file mode 100644 index 000000000..1a6d3cd44 --- /dev/null +++ b/src/IconJoinInner.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinInner: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconJoinInner as default } diff --git a/src/IconJoinLeft.tsx b/src/IconJoinLeft.tsx new file mode 100644 index 000000000..285233804 --- /dev/null +++ b/src/IconJoinLeft.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinLeft: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconJoinLeft as default } diff --git a/src/IconJoinRight.tsx b/src/IconJoinRight.tsx new file mode 100644 index 000000000..fd535bce5 --- /dev/null +++ b/src/IconJoinRight.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinRight: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconJoinRight as default } diff --git a/src/IconKebabDining.tsx b/src/IconKebabDining.tsx new file mode 100644 index 000000000..44ba3a582 --- /dev/null +++ b/src/IconKebabDining.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKebabDining: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKebabDining as default } diff --git a/src/IconKey.tsx b/src/IconKey.tsx new file mode 100644 index 000000000..0c5c240b6 --- /dev/null +++ b/src/IconKey.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKey: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconKey as default } diff --git a/src/IconKeyOff.tsx b/src/IconKeyOff.tsx new file mode 100644 index 000000000..088a34d92 --- /dev/null +++ b/src/IconKeyOff.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyOff: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconKeyOff as default } diff --git a/src/IconKeyboardCommandKey.tsx b/src/IconKeyboardCommandKey.tsx new file mode 100644 index 000000000..ae2aa2ca1 --- /dev/null +++ b/src/IconKeyboardCommandKey.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCommandKey: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconKeyboardCommandKey as default } diff --git a/src/IconKeyboardControlKey.tsx b/src/IconKeyboardControlKey.tsx new file mode 100644 index 000000000..7d5e4bb1f --- /dev/null +++ b/src/IconKeyboardControlKey.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardControlKey: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconKeyboardControlKey as default } diff --git a/src/IconKeyboardDoubleArrowDown.tsx b/src/IconKeyboardDoubleArrowDown.tsx new file mode 100644 index 000000000..bc8489cc2 --- /dev/null +++ b/src/IconKeyboardDoubleArrowDown.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowDown: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowDown as default } diff --git a/src/IconKeyboardDoubleArrowLeft.tsx b/src/IconKeyboardDoubleArrowLeft.tsx new file mode 100644 index 000000000..50fb439a4 --- /dev/null +++ b/src/IconKeyboardDoubleArrowLeft.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowLeft: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowLeft as default } diff --git a/src/IconKeyboardDoubleArrowRight.tsx b/src/IconKeyboardDoubleArrowRight.tsx new file mode 100644 index 000000000..55f38ec63 --- /dev/null +++ b/src/IconKeyboardDoubleArrowRight.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowRight: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowRight as default } diff --git a/src/IconKeyboardDoubleArrowUp.tsx b/src/IconKeyboardDoubleArrowUp.tsx new file mode 100644 index 000000000..fb7fb7626 --- /dev/null +++ b/src/IconKeyboardDoubleArrowUp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowUp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowUp as default } diff --git a/src/IconKeyboardOptionKey.tsx b/src/IconKeyboardOptionKey.tsx new file mode 100644 index 000000000..314e8f040 --- /dev/null +++ b/src/IconKeyboardOptionKey.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardOptionKey: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardOptionKey as default } diff --git a/src/IconLan.tsx b/src/IconLan.tsx new file mode 100644 index 000000000..24ca0c877 --- /dev/null +++ b/src/IconLan.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLan: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLan as default } diff --git a/src/IconLandslide.tsx b/src/IconLandslide.tsx new file mode 100644 index 000000000..95a275e25 --- /dev/null +++ b/src/IconLandslide.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandslide: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconLandslide as default } diff --git a/src/IconLightbulbCircle.tsx b/src/IconLightbulbCircle.tsx new file mode 100644 index 000000000..898d250fa --- /dev/null +++ b/src/IconLightbulbCircle.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightbulbCircle: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLightbulbCircle as default } diff --git a/src/IconLineAxis.tsx b/src/IconLineAxis.tsx new file mode 100644 index 000000000..36dafa32e --- /dev/null +++ b/src/IconLineAxis.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineAxis: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLineAxis as default } diff --git a/src/IconLocalFireDepartment.tsx b/src/IconLocalFireDepartment.tsx index 524ed65a0..6c400e0bc 100644 --- a/src/IconLocalFireDepartment.tsx +++ b/src/IconLocalFireDepartment.tsx @@ -10,10 +10,17 @@ const IconLocalFireDepartment: React.FC = ({ ...props }) => ( > {props.title && {props.title}} - + - + + + + + + + + ) diff --git a/src/IconLockPerson.tsx b/src/IconLockPerson.tsx new file mode 100644 index 000000000..33e94c84f --- /dev/null +++ b/src/IconLockPerson.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockPerson: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLockPerson as default } diff --git a/src/IconLockReset.tsx b/src/IconLockReset.tsx new file mode 100644 index 000000000..7765cbc0a --- /dev/null +++ b/src/IconLockReset.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockReset: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLockReset as default } diff --git a/src/IconLogoDev.tsx b/src/IconLogoDev.tsx new file mode 100644 index 000000000..36a539afd --- /dev/null +++ b/src/IconLogoDev.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLogoDev: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLogoDev as default } diff --git a/src/IconLyrics.tsx b/src/IconLyrics.tsx new file mode 100644 index 000000000..537000af4 --- /dev/null +++ b/src/IconLyrics.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLyrics: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLyrics as default } diff --git a/src/IconMacroOff.tsx b/src/IconMacroOff.tsx new file mode 100644 index 000000000..7e50a938f --- /dev/null +++ b/src/IconMacroOff.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMacroOff: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMacroOff as default } diff --git a/src/IconMailLock.tsx b/src/IconMailLock.tsx new file mode 100644 index 000000000..1237004bc --- /dev/null +++ b/src/IconMailLock.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailLock: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconMailLock as default } diff --git a/src/IconMan.tsx b/src/IconMan.tsx new file mode 100644 index 000000000..bb9a505a7 --- /dev/null +++ b/src/IconMan.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMan as default } diff --git a/src/IconMan2.tsx b/src/IconMan2.tsx new file mode 100644 index 000000000..b84c12039 --- /dev/null +++ b/src/IconMan2.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan2: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMan2 as default } diff --git a/src/IconMan3.tsx b/src/IconMan3.tsx new file mode 100644 index 000000000..69606e1da --- /dev/null +++ b/src/IconMan3.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan3: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMan3 as default } diff --git a/src/IconMan4.tsx b/src/IconMan4.tsx new file mode 100644 index 000000000..3c133f2a0 --- /dev/null +++ b/src/IconMan4.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan4: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMan4 as default } diff --git a/src/IconManageHistory.tsx b/src/IconManageHistory.tsx new file mode 100644 index 000000000..936ad9de4 --- /dev/null +++ b/src/IconManageHistory.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageHistory: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconManageHistory as default } diff --git a/src/IconMarkUnreadChatAlt.tsx b/src/IconMarkUnreadChatAlt.tsx new file mode 100644 index 000000000..0e83add78 --- /dev/null +++ b/src/IconMarkUnreadChatAlt.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkUnreadChatAlt: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMarkUnreadChatAlt as default } diff --git a/src/IconMedicalInformation.tsx b/src/IconMedicalInformation.tsx new file mode 100644 index 000000000..0e5e4e3b9 --- /dev/null +++ b/src/IconMedicalInformation.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalInformation: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMedicalInformation as default } diff --git a/src/IconMedicationLiquid.tsx b/src/IconMedicationLiquid.tsx new file mode 100644 index 000000000..d552fd448 --- /dev/null +++ b/src/IconMedicationLiquid.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicationLiquid: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMedicationLiquid as default } diff --git a/src/IconMerge.tsx b/src/IconMerge.tsx new file mode 100644 index 000000000..3d411c05f --- /dev/null +++ b/src/IconMerge.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMerge: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMerge as default } diff --git a/src/IconMinorCrash.tsx b/src/IconMinorCrash.tsx new file mode 100644 index 000000000..8fa1544f4 --- /dev/null +++ b/src/IconMinorCrash.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMinorCrash: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMinorCrash as default } diff --git a/src/IconModeFanOff.tsx b/src/IconModeFanOff.tsx new file mode 100644 index 000000000..8820bb2d8 --- /dev/null +++ b/src/IconModeFanOff.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeFanOff: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconModeFanOff as default } diff --git a/src/IconModeOfTravel.tsx b/src/IconModeOfTravel.tsx new file mode 100644 index 000000000..8697c2d3e --- /dev/null +++ b/src/IconModeOfTravel.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeOfTravel: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconModeOfTravel as default } diff --git a/src/IconMonitorHeart.tsx b/src/IconMonitorHeart.tsx new file mode 100644 index 000000000..12afb3349 --- /dev/null +++ b/src/IconMonitorHeart.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorHeart: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMonitorHeart as default } diff --git a/src/IconMosque.tsx b/src/IconMosque.tsx new file mode 100644 index 000000000..0d27f54b1 --- /dev/null +++ b/src/IconMosque.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMosque: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMosque as default } diff --git a/src/IconMoveDown.tsx b/src/IconMoveDown.tsx new file mode 100644 index 000000000..0ab978c3b --- /dev/null +++ b/src/IconMoveDown.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveDown: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMoveDown as default } diff --git a/src/IconMoveUp.tsx b/src/IconMoveUp.tsx new file mode 100644 index 000000000..399f8456d --- /dev/null +++ b/src/IconMoveUp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveUp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMoveUp as default } diff --git a/src/IconNestCamWiredStand.tsx b/src/IconNestCamWiredStand.tsx new file mode 100644 index 000000000..e756bfade --- /dev/null +++ b/src/IconNestCamWiredStand.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamWiredStand: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNestCamWiredStand as default } diff --git a/src/IconNetworkPing.tsx b/src/IconNetworkPing.tsx new file mode 100644 index 000000000..b31af0647 --- /dev/null +++ b/src/IconNetworkPing.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkPing: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkPing as default } diff --git a/src/IconNetworkWifi1Bar.tsx b/src/IconNetworkWifi1Bar.tsx new file mode 100644 index 000000000..d79ec3856 --- /dev/null +++ b/src/IconNetworkWifi1Bar.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi1Bar: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkWifi1Bar as default } diff --git a/src/IconNetworkWifi2Bar.tsx b/src/IconNetworkWifi2Bar.tsx new file mode 100644 index 000000000..be8b09bf3 --- /dev/null +++ b/src/IconNetworkWifi2Bar.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi2Bar: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkWifi2Bar as default } diff --git a/src/IconNetworkWifi3Bar.tsx b/src/IconNetworkWifi3Bar.tsx new file mode 100644 index 000000000..dc81c2637 --- /dev/null +++ b/src/IconNetworkWifi3Bar.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi3Bar: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkWifi3Bar as default } diff --git a/src/IconNewspaper.tsx b/src/IconNewspaper.tsx new file mode 100644 index 000000000..788e3e7d8 --- /dev/null +++ b/src/IconNewspaper.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewspaper: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNewspaper as default } diff --git a/src/IconNoAdultContent.tsx b/src/IconNoAdultContent.tsx new file mode 100644 index 000000000..3bb879089 --- /dev/null +++ b/src/IconNoAdultContent.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoAdultContent: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconNoAdultContent as default } diff --git a/src/IconNoCrash.tsx b/src/IconNoCrash.tsx new file mode 100644 index 000000000..16a130718 --- /dev/null +++ b/src/IconNoCrash.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoCrash: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNoCrash as default } diff --git a/src/IconNoiseAware.tsx b/src/IconNoiseAware.tsx new file mode 100644 index 000000000..fa83f5ccb --- /dev/null +++ b/src/IconNoiseAware.tsx @@ -0,0 +1,38 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseAware: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconNoiseAware as default } diff --git a/src/IconNoiseControlOff.tsx b/src/IconNoiseControlOff.tsx new file mode 100644 index 000000000..df185a9e4 --- /dev/null +++ b/src/IconNoiseControlOff.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseControlOff: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconNoiseControlOff as default } diff --git a/src/IconNumbers.tsx b/src/IconNumbers.tsx new file mode 100644 index 000000000..93f00ef13 --- /dev/null +++ b/src/IconNumbers.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNumbers: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNumbers as default } diff --git a/src/IconOilBarrel.tsx b/src/IconOilBarrel.tsx new file mode 100644 index 000000000..8c9a3136f --- /dev/null +++ b/src/IconOilBarrel.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOilBarrel: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconOilBarrel as default } diff --git a/src/IconOnDeviceTraining.tsx b/src/IconOnDeviceTraining.tsx new file mode 100644 index 000000000..06bf66745 --- /dev/null +++ b/src/IconOnDeviceTraining.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnDeviceTraining: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconOnDeviceTraining as default } diff --git a/src/IconOutput.tsx b/src/IconOutput.tsx new file mode 100644 index 000000000..40c775d5c --- /dev/null +++ b/src/IconOutput.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutput: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconOutput as default } diff --git a/src/IconPanToolAlt.tsx b/src/IconPanToolAlt.tsx new file mode 100644 index 000000000..3bc268fb3 --- /dev/null +++ b/src/IconPanToolAlt.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanToolAlt: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPanToolAlt as default } diff --git a/src/IconPentagon.tsx b/src/IconPentagon.tsx new file mode 100644 index 000000000..e697ef4f5 --- /dev/null +++ b/src/IconPentagon.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPentagon: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPentagon as default } diff --git a/src/IconPercent.tsx b/src/IconPercent.tsx new file mode 100644 index 000000000..2149488ba --- /dev/null +++ b/src/IconPercent.tsx @@ -0,0 +1,41 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPercent: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + +) + +export { IconPercent as default } diff --git a/src/IconPerson2.tsx b/src/IconPerson2.tsx new file mode 100644 index 000000000..3ea170f7a --- /dev/null +++ b/src/IconPerson2.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson2: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPerson2 as default } diff --git a/src/IconPerson3.tsx b/src/IconPerson3.tsx new file mode 100644 index 000000000..475bcf34c --- /dev/null +++ b/src/IconPerson3.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson3: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconPerson3 as default } diff --git a/src/IconPerson4.tsx b/src/IconPerson4.tsx new file mode 100644 index 000000000..415bac92d --- /dev/null +++ b/src/IconPerson4.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson4: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconPerson4 as default } diff --git a/src/IconPhishing.tsx b/src/IconPhishing.tsx new file mode 100644 index 000000000..87b72ec9a --- /dev/null +++ b/src/IconPhishing.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhishing: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhishing as default } diff --git a/src/IconPhoneLocked.tsx b/src/IconPhoneLocked.tsx index 607fb1afd..a4a13640b 100644 --- a/src/IconPhoneLocked.tsx +++ b/src/IconPhoneLocked.tsx @@ -2,10 +2,22 @@ import React from 'react' import { IconProps } from './types' const IconPhoneLocked: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + + + + ) diff --git a/src/IconPhotoAlbum.tsx b/src/IconPhotoAlbum.tsx index 4d6e4888c..3a4ed22a1 100644 --- a/src/IconPhotoAlbum.tsx +++ b/src/IconPhotoAlbum.tsx @@ -2,10 +2,15 @@ import React from 'react' import { IconProps } from './types' const IconPhotoAlbum: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + ) diff --git a/src/IconPhp.tsx b/src/IconPhp.tsx new file mode 100644 index 000000000..fc536fc4f --- /dev/null +++ b/src/IconPhp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhp as default } diff --git a/src/IconPinch.tsx b/src/IconPinch.tsx new file mode 100644 index 000000000..d124028ff --- /dev/null +++ b/src/IconPinch.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinch: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPinch as default } diff --git a/src/IconPix.tsx b/src/IconPix.tsx new file mode 100644 index 000000000..9279facf4 --- /dev/null +++ b/src/IconPix.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPix: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPix as default } diff --git a/src/IconPlaylistAddCheckCircle.tsx b/src/IconPlaylistAddCheckCircle.tsx new file mode 100644 index 000000000..fa425ad01 --- /dev/null +++ b/src/IconPlaylistAddCheckCircle.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCheckCircle: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlaylistAddCheckCircle as default } diff --git a/src/IconPlaylistAddCircle.tsx b/src/IconPlaylistAddCircle.tsx new file mode 100644 index 000000000..64257e962 --- /dev/null +++ b/src/IconPlaylistAddCircle.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCircle: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlaylistAddCircle as default } diff --git a/src/IconPlaylistRemove.tsx b/src/IconPlaylistRemove.tsx new file mode 100644 index 000000000..a95b97846 --- /dev/null +++ b/src/IconPlaylistRemove.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistRemove: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPlaylistRemove as default } diff --git a/src/IconPolyline.tsx b/src/IconPolyline.tsx new file mode 100644 index 000000000..cd20a04bb --- /dev/null +++ b/src/IconPolyline.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolyline: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPolyline as default } diff --git a/src/IconPropane.tsx b/src/IconPropane.tsx new file mode 100644 index 000000000..67a53a663 --- /dev/null +++ b/src/IconPropane.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPropane: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPropane as default } diff --git a/src/IconPropaneTank.tsx b/src/IconPropaneTank.tsx new file mode 100644 index 000000000..462d4b22f --- /dev/null +++ b/src/IconPropaneTank.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPropaneTank: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPropaneTank as default } diff --git a/src/IconPsychologyAlt.tsx b/src/IconPsychologyAlt.tsx new file mode 100644 index 000000000..708c59da0 --- /dev/null +++ b/src/IconPsychologyAlt.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychologyAlt: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPsychologyAlt as default } diff --git a/src/IconPunchClock.tsx b/src/IconPunchClock.tsx new file mode 100644 index 000000000..f89fb8bab --- /dev/null +++ b/src/IconPunchClock.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPunchClock: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPunchClock as default } diff --git a/src/IconQuestionMark.tsx b/src/IconQuestionMark.tsx new file mode 100644 index 000000000..62fadf8e8 --- /dev/null +++ b/src/IconQuestionMark.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuestionMark: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconQuestionMark as default } diff --git a/src/IconRampLeft.tsx b/src/IconRampLeft.tsx new file mode 100644 index 000000000..d23a7950a --- /dev/null +++ b/src/IconRampLeft.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRampLeft: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRampLeft as default } diff --git a/src/IconRampRight.tsx b/src/IconRampRight.tsx new file mode 100644 index 000000000..495056996 --- /dev/null +++ b/src/IconRampRight.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRampRight: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRampRight as default } diff --git a/src/IconRectangle.tsx b/src/IconRectangle.tsx new file mode 100644 index 000000000..1783e71d3 --- /dev/null +++ b/src/IconRectangle.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRectangle: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRectangle as default } diff --git a/src/IconRemoveRoad.tsx b/src/IconRemoveRoad.tsx new file mode 100644 index 000000000..d5a0f73bd --- /dev/null +++ b/src/IconRemoveRoad.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveRoad: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconRemoveRoad as default } diff --git a/src/IconRepartition.tsx b/src/IconRepartition.tsx new file mode 100644 index 000000000..24af9ae67 --- /dev/null +++ b/src/IconRepartition.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepartition: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRepartition as default } diff --git a/src/IconRocket.tsx b/src/IconRocket.tsx new file mode 100644 index 000000000..855bdd67a --- /dev/null +++ b/src/IconRocket.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRocket: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRocket as default } diff --git a/src/IconRocketLaunch.tsx b/src/IconRocketLaunch.tsx new file mode 100644 index 000000000..d81913ca1 --- /dev/null +++ b/src/IconRocketLaunch.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRocketLaunch: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRocketLaunch as default } diff --git a/src/IconRollerShades.tsx b/src/IconRollerShades.tsx new file mode 100644 index 000000000..3b2dfb4a5 --- /dev/null +++ b/src/IconRollerShades.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerShades: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRollerShades as default } diff --git a/src/IconRollerShadesClosed.tsx b/src/IconRollerShadesClosed.tsx new file mode 100644 index 000000000..a0a0af134 --- /dev/null +++ b/src/IconRollerShadesClosed.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerShadesClosed: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRollerShadesClosed as default } diff --git a/src/IconRollerSkating.tsx b/src/IconRollerSkating.tsx new file mode 100644 index 000000000..c3d4abfeb --- /dev/null +++ b/src/IconRollerSkating.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerSkating: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRollerSkating as default } diff --git a/src/IconRotate90DegreesCw.tsx b/src/IconRotate90DegreesCw.tsx new file mode 100644 index 000000000..a666126e6 --- /dev/null +++ b/src/IconRotate90DegreesCw.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotate90DegreesCw: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRotate90DegreesCw as default } diff --git a/src/IconRoundaboutLeft.tsx b/src/IconRoundaboutLeft.tsx new file mode 100644 index 000000000..032f51f88 --- /dev/null +++ b/src/IconRoundaboutLeft.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundaboutLeft: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRoundaboutLeft as default } diff --git a/src/IconRoundaboutRight.tsx b/src/IconRoundaboutRight.tsx new file mode 100644 index 000000000..54c838312 --- /dev/null +++ b/src/IconRoundaboutRight.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundaboutRight: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRoundaboutRight as default } diff --git a/src/IconRoute.tsx b/src/IconRoute.tsx new file mode 100644 index 000000000..21c1c49b1 --- /dev/null +++ b/src/IconRoute.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoute: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRoute as default } diff --git a/src/IconSafetyCheck.tsx b/src/IconSafetyCheck.tsx new file mode 100644 index 000000000..6e5239541 --- /dev/null +++ b/src/IconSafetyCheck.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyCheck: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSafetyCheck as default } diff --git a/src/IconSatelliteAlt.tsx b/src/IconSatelliteAlt.tsx new file mode 100644 index 000000000..d6a59a8d7 --- /dev/null +++ b/src/IconSatelliteAlt.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSatelliteAlt: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSatelliteAlt as default } diff --git a/src/IconSaveAs.tsx b/src/IconSaveAs.tsx new file mode 100644 index 000000000..36be98a0c --- /dev/null +++ b/src/IconSaveAs.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveAs: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSaveAs as default } diff --git a/src/IconScale.tsx b/src/IconScale.tsx new file mode 100644 index 000000000..3b45e4365 --- /dev/null +++ b/src/IconScale.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScale: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScale as default } diff --git a/src/IconScoreboard.tsx b/src/IconScoreboard.tsx new file mode 100644 index 000000000..276e79ab5 --- /dev/null +++ b/src/IconScoreboard.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScoreboard: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScoreboard as default } diff --git a/src/IconScreenRotationAlt.tsx b/src/IconScreenRotationAlt.tsx new file mode 100644 index 000000000..ccc85a78d --- /dev/null +++ b/src/IconScreenRotationAlt.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationAlt: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScreenRotationAlt as default } diff --git a/src/IconScreenshotMonitor.tsx b/src/IconScreenshotMonitor.tsx new file mode 100644 index 000000000..1ffe1cc92 --- /dev/null +++ b/src/IconScreenshotMonitor.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotMonitor: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconScreenshotMonitor as default } diff --git a/src/IconScubaDiving.tsx b/src/IconScubaDiving.tsx new file mode 100644 index 000000000..9ac777990 --- /dev/null +++ b/src/IconScubaDiving.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScubaDiving: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScubaDiving as default } diff --git a/src/IconSendTimeExtension.tsx b/src/IconSendTimeExtension.tsx new file mode 100644 index 000000000..f62c74b4a --- /dev/null +++ b/src/IconSendTimeExtension.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendTimeExtension: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSendTimeExtension as default } diff --git a/src/IconSensorOccupied.tsx b/src/IconSensorOccupied.tsx new file mode 100644 index 000000000..cd1420356 --- /dev/null +++ b/src/IconSensorOccupied.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorOccupied: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSensorOccupied as default } diff --git a/src/IconSevereCold.tsx b/src/IconSevereCold.tsx new file mode 100644 index 000000000..5c08c323b --- /dev/null +++ b/src/IconSevereCold.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSevereCold: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSevereCold as default } diff --git a/src/IconShapeLine.tsx b/src/IconShapeLine.tsx new file mode 100644 index 000000000..e44cbbdd2 --- /dev/null +++ b/src/IconShapeLine.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShapeLine: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconShapeLine as default } diff --git a/src/IconShieldMoon.tsx b/src/IconShieldMoon.tsx new file mode 100644 index 000000000..42e138b28 --- /dev/null +++ b/src/IconShieldMoon.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldMoon: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconShieldMoon as default } diff --git a/src/IconShoppingCartCheckout.tsx b/src/IconShoppingCartCheckout.tsx new file mode 100644 index 000000000..0b3a5d49e --- /dev/null +++ b/src/IconShoppingCartCheckout.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartCheckout: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconShoppingCartCheckout as default } diff --git a/src/IconSignLanguage.tsx b/src/IconSignLanguage.tsx new file mode 100644 index 000000000..fe0c023f4 --- /dev/null +++ b/src/IconSignLanguage.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignLanguage: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignLanguage as default } diff --git a/src/IconSignalCellularAlt1Bar.tsx b/src/IconSignalCellularAlt1Bar.tsx new file mode 100644 index 000000000..118ea83e3 --- /dev/null +++ b/src/IconSignalCellularAlt1Bar.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAlt1Bar: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalCellularAlt1Bar as default } diff --git a/src/IconSignalCellularAlt2Bar.tsx b/src/IconSignalCellularAlt2Bar.tsx new file mode 100644 index 000000000..8288d1ff3 --- /dev/null +++ b/src/IconSignalCellularAlt2Bar.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAlt2Bar: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSignalCellularAlt2Bar as default } diff --git a/src/IconSignpost.tsx b/src/IconSignpost.tsx new file mode 100644 index 000000000..82b334658 --- /dev/null +++ b/src/IconSignpost.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignpost: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSignpost as default } diff --git a/src/IconSolarPower.tsx b/src/IconSolarPower.tsx new file mode 100644 index 000000000..180095cde --- /dev/null +++ b/src/IconSolarPower.tsx @@ -0,0 +1,44 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSolarPower: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + +) + +export { IconSolarPower as default } diff --git a/src/IconSos.tsx b/src/IconSos.tsx new file mode 100644 index 000000000..5d873d483 --- /dev/null +++ b/src/IconSos.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSos: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSos as default } diff --git a/src/IconSoupKitchen.tsx b/src/IconSoupKitchen.tsx new file mode 100644 index 000000000..7715274fa --- /dev/null +++ b/src/IconSoupKitchen.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoupKitchen: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSoupKitchen as default } diff --git a/src/IconSouthAmerica.tsx b/src/IconSouthAmerica.tsx new file mode 100644 index 000000000..2699f6cd5 --- /dev/null +++ b/src/IconSouthAmerica.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthAmerica: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSouthAmerica as default } diff --git a/src/IconSpatialAudio.tsx b/src/IconSpatialAudio.tsx new file mode 100644 index 000000000..55ba924a3 --- /dev/null +++ b/src/IconSpatialAudio.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialAudio: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSpatialAudio as default } diff --git a/src/IconSpatialAudioOff.tsx b/src/IconSpatialAudioOff.tsx new file mode 100644 index 000000000..3ca610a74 --- /dev/null +++ b/src/IconSpatialAudioOff.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialAudioOff: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSpatialAudioOff as default } diff --git a/src/IconSpatialTracking.tsx b/src/IconSpatialTracking.tsx new file mode 100644 index 000000000..4a7ba5ddb --- /dev/null +++ b/src/IconSpatialTracking.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialTracking: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSpatialTracking as default } diff --git a/src/IconSpoke.tsx b/src/IconSpoke.tsx new file mode 100644 index 000000000..0e9e4bc0c --- /dev/null +++ b/src/IconSpoke.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpoke: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpoke as default } diff --git a/src/IconSportsGymnastics.tsx b/src/IconSportsGymnastics.tsx new file mode 100644 index 000000000..1f7ed8da8 --- /dev/null +++ b/src/IconSportsGymnastics.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsGymnastics: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSportsGymnastics as default } diff --git a/src/IconSportsMartialArts.tsx b/src/IconSportsMartialArts.tsx new file mode 100644 index 000000000..f6fc3512d --- /dev/null +++ b/src/IconSportsMartialArts.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMartialArts: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSportsMartialArts as default } diff --git a/src/IconSquare.tsx b/src/IconSquare.tsx new file mode 100644 index 000000000..9615da596 --- /dev/null +++ b/src/IconSquare.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSquare: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSquare as default } diff --git a/src/IconSsidChart.tsx b/src/IconSsidChart.tsx new file mode 100644 index 000000000..a916fb9f3 --- /dev/null +++ b/src/IconSsidChart.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSsidChart: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSsidChart as default } diff --git a/src/IconStackedBarChart.tsx b/src/IconStackedBarChart.tsx index 37e101423..74899763d 100644 --- a/src/IconStackedBarChart.tsx +++ b/src/IconStackedBarChart.tsx @@ -2,10 +2,26 @@ import React from 'react' import { IconProps } from './types' const IconStackedBarChart: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + + + + + + + + ) diff --git a/src/IconStadium.tsx b/src/IconStadium.tsx new file mode 100644 index 000000000..cffcd3d0f --- /dev/null +++ b/src/IconStadium.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStadium: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconStadium as default } diff --git a/src/IconStart.tsx b/src/IconStart.tsx new file mode 100644 index 000000000..6d4a2422f --- /dev/null +++ b/src/IconStart.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStart: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStart as default } diff --git a/src/IconStopCircle.tsx b/src/IconStopCircle.tsx index d48b4dc2e..19503315c 100644 --- a/src/IconStopCircle.tsx +++ b/src/IconStopCircle.tsx @@ -9,15 +9,8 @@ const IconStopCircle: React.FC = ({ ...props }) => ( {...props} > {props.title && {props.title}} - - - - - - + + ) diff --git a/src/IconStraight.tsx b/src/IconStraight.tsx new file mode 100644 index 000000000..633064065 --- /dev/null +++ b/src/IconStraight.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStraight: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconStraight as default } diff --git a/src/IconSwipeDown.tsx b/src/IconSwipeDown.tsx new file mode 100644 index 000000000..4cf095beb --- /dev/null +++ b/src/IconSwipeDown.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeDown: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeDown as default } diff --git a/src/IconSwipeDownAlt.tsx b/src/IconSwipeDownAlt.tsx new file mode 100644 index 000000000..081eaffb3 --- /dev/null +++ b/src/IconSwipeDownAlt.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeDownAlt: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeDownAlt as default } diff --git a/src/IconSwipeLeft.tsx b/src/IconSwipeLeft.tsx new file mode 100644 index 000000000..3be1f0ad1 --- /dev/null +++ b/src/IconSwipeLeft.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeLeft: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeLeft as default } diff --git a/src/IconSwipeLeftAlt.tsx b/src/IconSwipeLeftAlt.tsx new file mode 100644 index 000000000..5a6d7ecea --- /dev/null +++ b/src/IconSwipeLeftAlt.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeLeftAlt: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeLeftAlt as default } diff --git a/src/IconSwipeRight.tsx b/src/IconSwipeRight.tsx new file mode 100644 index 000000000..288c5d60b --- /dev/null +++ b/src/IconSwipeRight.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRight: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeRight as default } diff --git a/src/IconSwipeRightAlt.tsx b/src/IconSwipeRightAlt.tsx new file mode 100644 index 000000000..27fca3f8e --- /dev/null +++ b/src/IconSwipeRightAlt.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRightAlt: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeRightAlt as default } diff --git a/src/IconSwipeUp.tsx b/src/IconSwipeUp.tsx new file mode 100644 index 000000000..1da47f6bf --- /dev/null +++ b/src/IconSwipeUp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeUp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeUp as default } diff --git a/src/IconSwipeUpAlt.tsx b/src/IconSwipeUpAlt.tsx new file mode 100644 index 000000000..0bfd6ce13 --- /dev/null +++ b/src/IconSwipeUpAlt.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeUpAlt: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeUpAlt as default } diff --git a/src/IconSwipeVertical.tsx b/src/IconSwipeVertical.tsx new file mode 100644 index 000000000..c82fa28f7 --- /dev/null +++ b/src/IconSwipeVertical.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeVertical: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeVertical as default } diff --git a/src/IconSwitchAccessShortcut.tsx b/src/IconSwitchAccessShortcut.tsx new file mode 100644 index 000000000..5d5ed804a --- /dev/null +++ b/src/IconSwitchAccessShortcut.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessShortcut: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchAccessShortcut as default } diff --git a/src/IconSwitchAccessShortcutAdd.tsx b/src/IconSwitchAccessShortcutAdd.tsx new file mode 100644 index 000000000..617e47904 --- /dev/null +++ b/src/IconSwitchAccessShortcutAdd.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessShortcutAdd: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchAccessShortcutAdd as default } diff --git a/src/IconSynagogue.tsx b/src/IconSynagogue.tsx new file mode 100644 index 000000000..16f944e3a --- /dev/null +++ b/src/IconSynagogue.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSynagogue: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSynagogue as default } diff --git a/src/IconSyncAlt.tsx b/src/IconSyncAlt.tsx index 1184f1b7d..1c0fb12ef 100644 --- a/src/IconSyncAlt.tsx +++ b/src/IconSyncAlt.tsx @@ -10,13 +10,12 @@ const IconSyncAlt: React.FC = ({ ...props }) => ( > {props.title && {props.title}} - + - - - + + diff --git a/src/IconSyncLock.tsx b/src/IconSyncLock.tsx new file mode 100644 index 000000000..4f5f9db81 --- /dev/null +++ b/src/IconSyncLock.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncLock: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSyncLock as default } diff --git a/src/IconTableBar.tsx b/src/IconTableBar.tsx new file mode 100644 index 000000000..a32f118f9 --- /dev/null +++ b/src/IconTableBar.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableBar: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconTableBar as default } diff --git a/src/IconTableRestaurant.tsx b/src/IconTableRestaurant.tsx new file mode 100644 index 000000000..e40e3f098 --- /dev/null +++ b/src/IconTableRestaurant.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRestaurant: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconTableRestaurant as default } diff --git a/src/IconTempleBuddhist.tsx b/src/IconTempleBuddhist.tsx new file mode 100644 index 000000000..e5a2a2de2 --- /dev/null +++ b/src/IconTempleBuddhist.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempleBuddhist: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconTempleBuddhist as default } diff --git a/src/IconTempleHindu.tsx b/src/IconTempleHindu.tsx new file mode 100644 index 000000000..11c346b4f --- /dev/null +++ b/src/IconTempleHindu.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempleHindu: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconTempleHindu as default } diff --git a/src/IconTerminal.tsx b/src/IconTerminal.tsx new file mode 100644 index 000000000..db41a5344 --- /dev/null +++ b/src/IconTerminal.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTerminal: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTerminal as default } diff --git a/src/IconTextDecrease.tsx b/src/IconTextDecrease.tsx new file mode 100644 index 000000000..acab0d48e --- /dev/null +++ b/src/IconTextDecrease.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextDecrease: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextDecrease as default } diff --git a/src/IconTextIncrease.tsx b/src/IconTextIncrease.tsx new file mode 100644 index 000000000..6ef2950f5 --- /dev/null +++ b/src/IconTextIncrease.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextIncrease: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextIncrease as default } diff --git a/src/IconThunderstorm.tsx b/src/IconThunderstorm.tsx new file mode 100644 index 000000000..a63abb5d4 --- /dev/null +++ b/src/IconThunderstorm.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThunderstorm: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconThunderstorm as default } diff --git a/src/IconTimer.tsx b/src/IconTimer.tsx index 7b715dc85..8dcd0289c 100644 --- a/src/IconTimer.tsx +++ b/src/IconTimer.tsx @@ -2,10 +2,22 @@ import React from 'react' import { IconProps } from './types' const IconTimer: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + + + + ) diff --git a/src/IconTimerOff.tsx b/src/IconTimerOff.tsx index a1f3a0a0c..e60c9321e 100644 --- a/src/IconTimerOff.tsx +++ b/src/IconTimerOff.tsx @@ -2,13 +2,23 @@ import React from 'react' import { IconProps } from './types' const IconTimerOff: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + + + + + ) diff --git a/src/IconTireRepair.tsx b/src/IconTireRepair.tsx new file mode 100644 index 000000000..fe3c80cc5 --- /dev/null +++ b/src/IconTireRepair.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTireRepair: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTireRepair as default } diff --git a/src/IconToken.tsx b/src/IconToken.tsx new file mode 100644 index 000000000..cc032a68c --- /dev/null +++ b/src/IconToken.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToken: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconToken as default } diff --git a/src/IconTornado.tsx b/src/IconTornado.tsx new file mode 100644 index 000000000..338b37587 --- /dev/null +++ b/src/IconTornado.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTornado: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconTornado as default } diff --git a/src/IconTranscribe.tsx b/src/IconTranscribe.tsx new file mode 100644 index 000000000..3e16c63cc --- /dev/null +++ b/src/IconTranscribe.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTranscribe: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTranscribe as default } diff --git a/src/IconTroubleshoot.tsx b/src/IconTroubleshoot.tsx new file mode 100644 index 000000000..fef1a8861 --- /dev/null +++ b/src/IconTroubleshoot.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTroubleshoot: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTroubleshoot as default } diff --git a/src/IconTsunami.tsx b/src/IconTsunami.tsx new file mode 100644 index 000000000..d18b84c9c --- /dev/null +++ b/src/IconTsunami.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTsunami: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTsunami as default } diff --git a/src/IconTurnLeft.tsx b/src/IconTurnLeft.tsx new file mode 100644 index 000000000..846302978 --- /dev/null +++ b/src/IconTurnLeft.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnLeft: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnLeft as default } diff --git a/src/IconTurnRight.tsx b/src/IconTurnRight.tsx new file mode 100644 index 000000000..7e7c5ca23 --- /dev/null +++ b/src/IconTurnRight.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnRight: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnRight as default } diff --git a/src/IconTurnSharpLeft.tsx b/src/IconTurnSharpLeft.tsx new file mode 100644 index 000000000..cb52f68a3 --- /dev/null +++ b/src/IconTurnSharpLeft.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSharpLeft: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnSharpLeft as default } diff --git a/src/IconTurnSharpRight.tsx b/src/IconTurnSharpRight.tsx new file mode 100644 index 000000000..710d93ee0 --- /dev/null +++ b/src/IconTurnSharpRight.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSharpRight: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnSharpRight as default } diff --git a/src/IconTurnSlightLeft.tsx b/src/IconTurnSlightLeft.tsx new file mode 100644 index 000000000..a5dda6403 --- /dev/null +++ b/src/IconTurnSlightLeft.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSlightLeft: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnSlightLeft as default } diff --git a/src/IconTurnSlightRight.tsx b/src/IconTurnSlightRight.tsx new file mode 100644 index 000000000..0f7b50566 --- /dev/null +++ b/src/IconTurnSlightRight.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSlightRight: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnSlightRight as default } diff --git a/src/IconTypeSpecimen.tsx b/src/IconTypeSpecimen.tsx new file mode 100644 index 000000000..f29d1b1a1 --- /dev/null +++ b/src/IconTypeSpecimen.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTypeSpecimen: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconTypeSpecimen as default } diff --git a/src/IconUTurnLeft.tsx b/src/IconUTurnLeft.tsx new file mode 100644 index 000000000..2e7984800 --- /dev/null +++ b/src/IconUTurnLeft.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUTurnLeft: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconUTurnLeft as default } diff --git a/src/IconUTurnRight.tsx b/src/IconUTurnRight.tsx new file mode 100644 index 000000000..bacb00fbb --- /dev/null +++ b/src/IconUTurnRight.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUTurnRight: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconUTurnRight as default } diff --git a/src/IconUnfoldLessDouble.tsx b/src/IconUnfoldLessDouble.tsx new file mode 100644 index 000000000..28fd2ad43 --- /dev/null +++ b/src/IconUnfoldLessDouble.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldLessDouble: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconUnfoldLessDouble as default } diff --git a/src/IconUnfoldMoreDouble.tsx b/src/IconUnfoldMoreDouble.tsx new file mode 100644 index 000000000..59baf1fe4 --- /dev/null +++ b/src/IconUnfoldMoreDouble.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldMoreDouble: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconUnfoldMoreDouble as default } diff --git a/src/IconVaccines.tsx b/src/IconVaccines.tsx new file mode 100644 index 000000000..36f85298d --- /dev/null +++ b/src/IconVaccines.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVaccines: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVaccines as default } diff --git a/src/IconVapeFree.tsx b/src/IconVapeFree.tsx new file mode 100644 index 000000000..acd8823f9 --- /dev/null +++ b/src/IconVapeFree.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVapeFree: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVapeFree as default } diff --git a/src/IconVapingRooms.tsx b/src/IconVapingRooms.tsx new file mode 100644 index 000000000..eccd5b436 --- /dev/null +++ b/src/IconVapingRooms.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVapingRooms: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVapingRooms as default } diff --git a/src/IconVerticalShades.tsx b/src/IconVerticalShades.tsx new file mode 100644 index 000000000..41b04a187 --- /dev/null +++ b/src/IconVerticalShades.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalShades: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVerticalShades as default } diff --git a/src/IconVerticalShadesClosed.tsx b/src/IconVerticalShadesClosed.tsx new file mode 100644 index 000000000..6284154fe --- /dev/null +++ b/src/IconVerticalShadesClosed.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalShadesClosed: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVerticalShadesClosed as default } diff --git a/src/IconVideoChat.tsx b/src/IconVideoChat.tsx new file mode 100644 index 000000000..0dce98bf6 --- /dev/null +++ b/src/IconVideoChat.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoChat: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVideoChat as default } diff --git a/src/IconVideoFile.tsx b/src/IconVideoFile.tsx new file mode 100644 index 000000000..98353e238 --- /dev/null +++ b/src/IconVideoFile.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoFile: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVideoFile as default } diff --git a/src/IconViewAgenda.tsx b/src/IconViewAgenda.tsx index 3c358d22d..a1f579337 100644 --- a/src/IconViewAgenda.tsx +++ b/src/IconViewAgenda.tsx @@ -2,10 +2,22 @@ import React from 'react' import { IconProps } from './types' const IconViewAgenda: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + + + + ) diff --git a/src/IconViewComfy.tsx b/src/IconViewComfy.tsx index 7a9abce99..36f47c757 100644 --- a/src/IconViewComfy.tsx +++ b/src/IconViewComfy.tsx @@ -2,10 +2,19 @@ import React from 'react' import { IconProps } from './types' const IconViewComfy: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + ) diff --git a/src/IconViewComfyAlt.tsx b/src/IconViewComfyAlt.tsx new file mode 100644 index 000000000..8f01df494 --- /dev/null +++ b/src/IconViewComfyAlt.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewComfyAlt: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconViewComfyAlt as default } diff --git a/src/IconViewCompactAlt.tsx b/src/IconViewCompactAlt.tsx new file mode 100644 index 000000000..0f33e93af --- /dev/null +++ b/src/IconViewCompactAlt.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCompactAlt: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconViewCompactAlt as default } diff --git a/src/IconViewCozy.tsx b/src/IconViewCozy.tsx new file mode 100644 index 000000000..8b631af8f --- /dev/null +++ b/src/IconViewCozy.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCozy: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconViewCozy as default } diff --git a/src/IconViewKanban.tsx b/src/IconViewKanban.tsx new file mode 100644 index 000000000..5e421decb --- /dev/null +++ b/src/IconViewKanban.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewKanban: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconViewKanban as default } diff --git a/src/IconViewTimeline.tsx b/src/IconViewTimeline.tsx new file mode 100644 index 000000000..92e7bc77f --- /dev/null +++ b/src/IconViewTimeline.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewTimeline: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconViewTimeline as default } diff --git a/src/IconVoiceChat.tsx b/src/IconVoiceChat.tsx index 425ef07c9..f4da5cfe7 100644 --- a/src/IconVoiceChat.tsx +++ b/src/IconVoiceChat.tsx @@ -2,10 +2,26 @@ import React from 'react' import { IconProps } from './types' const IconVoiceChat: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + + + + + + + + ) diff --git a/src/IconVolcano.tsx b/src/IconVolcano.tsx new file mode 100644 index 000000000..bfea796a6 --- /dev/null +++ b/src/IconVolcano.tsx @@ -0,0 +1,46 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolcano: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + +) + +export { IconVolcano as default } diff --git a/src/IconVpnKeyOff.tsx b/src/IconVpnKeyOff.tsx new file mode 100644 index 000000000..8f07a96da --- /dev/null +++ b/src/IconVpnKeyOff.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeyOff: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconVpnKeyOff as default } diff --git a/src/IconWallet.tsx b/src/IconWallet.tsx new file mode 100644 index 000000000..09bb67557 --- /dev/null +++ b/src/IconWallet.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallet: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWallet as default } diff --git a/src/IconWarehouse.tsx b/src/IconWarehouse.tsx new file mode 100644 index 000000000..a67da878f --- /dev/null +++ b/src/IconWarehouse.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarehouse: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWarehouse as default } diff --git a/src/IconWatchOff.tsx b/src/IconWatchOff.tsx new file mode 100644 index 000000000..8502c1d60 --- /dev/null +++ b/src/IconWatchOff.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchOff: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWatchOff as default } diff --git a/src/IconWebStories.tsx b/src/IconWebStories.tsx new file mode 100644 index 000000000..625221e9e --- /dev/null +++ b/src/IconWebStories.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebStories: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWebStories as default } diff --git a/src/IconWebhook.tsx b/src/IconWebhook.tsx new file mode 100644 index 000000000..9c440edc5 --- /dev/null +++ b/src/IconWebhook.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebhook: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWebhook as default } diff --git a/src/IconWhatsapp.tsx b/src/IconWhatsapp.tsx new file mode 100644 index 000000000..07512e06b --- /dev/null +++ b/src/IconWhatsapp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWhatsapp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconWhatsapp as default } diff --git a/src/IconWidthFull.tsx b/src/IconWidthFull.tsx new file mode 100644 index 000000000..f06ad4edd --- /dev/null +++ b/src/IconWidthFull.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthFull: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWidthFull as default } diff --git a/src/IconWidthNormal.tsx b/src/IconWidthNormal.tsx new file mode 100644 index 000000000..6c55c1198 --- /dev/null +++ b/src/IconWidthNormal.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthNormal: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWidthNormal as default } diff --git a/src/IconWidthWide.tsx b/src/IconWidthWide.tsx new file mode 100644 index 000000000..29db1caf1 --- /dev/null +++ b/src/IconWidthWide.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthWide: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWidthWide as default } diff --git a/src/IconWifi1Bar.tsx b/src/IconWifi1Bar.tsx new file mode 100644 index 000000000..ce1667e18 --- /dev/null +++ b/src/IconWifi1Bar.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifi1Bar: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifi1Bar as default } diff --git a/src/IconWifi2Bar.tsx b/src/IconWifi2Bar.tsx new file mode 100644 index 000000000..64caa4b2b --- /dev/null +++ b/src/IconWifi2Bar.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifi2Bar: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifi2Bar as default } diff --git a/src/IconWifiChannel.tsx b/src/IconWifiChannel.tsx new file mode 100644 index 000000000..9dc035062 --- /dev/null +++ b/src/IconWifiChannel.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiChannel: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifiChannel as default } diff --git a/src/IconWifiFind.tsx b/src/IconWifiFind.tsx new file mode 100644 index 000000000..168ebdcd4 --- /dev/null +++ b/src/IconWifiFind.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiFind: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconWifiFind as default } diff --git a/src/IconWifiPassword.tsx b/src/IconWifiPassword.tsx new file mode 100644 index 000000000..3cda3aabd --- /dev/null +++ b/src/IconWifiPassword.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiPassword: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifiPassword as default } diff --git a/src/IconWifiTetheringErrorRounded.tsx b/src/IconWifiTetheringError.tsx similarity index 87% rename from src/IconWifiTetheringErrorRounded.tsx rename to src/IconWifiTetheringError.tsx index ee4a1ff5e..a43df9e02 100644 --- a/src/IconWifiTetheringErrorRounded.tsx +++ b/src/IconWifiTetheringError.tsx @@ -1,7 +1,7 @@ import React from 'react' import { IconProps } from './types' -const IconWifiTetheringErrorRounded: React.FC = ({ ...props }) => ( +const IconWifiTetheringError: React.FC = ({ ...props }) => ( = ({ ...props }) => ( ) -export { IconWifiTetheringErrorRounded as default } +export { IconWifiTetheringError as default } diff --git a/src/IconWindPower.tsx b/src/IconWindPower.tsx new file mode 100644 index 000000000..ce635dbad --- /dev/null +++ b/src/IconWindPower.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindPower: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconWindPower as default } diff --git a/src/IconWoman.tsx b/src/IconWoman.tsx new file mode 100644 index 000000000..7ec154c23 --- /dev/null +++ b/src/IconWoman.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWoman: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWoman as default } diff --git a/src/IconWoman2.tsx b/src/IconWoman2.tsx new file mode 100644 index 000000000..7e7993835 --- /dev/null +++ b/src/IconWoman2.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWoman2: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconWoman2 as default } diff --git a/src/IconWorkHistory.tsx b/src/IconWorkHistory.tsx new file mode 100644 index 000000000..1a1902010 --- /dev/null +++ b/src/IconWorkHistory.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkHistory: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWorkHistory as default } diff --git a/src/IconZoomInMap.tsx b/src/IconZoomInMap.tsx new file mode 100644 index 000000000..8f54892f5 --- /dev/null +++ b/src/IconZoomInMap.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomInMap: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconZoomInMap as default }