From a40bd5818f2a2ab0fb77d369e800e6e4b957dade Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Mon, 5 Oct 2020 16:56:33 +0200 Subject: [PATCH 01/20] Updated parmeter in .eslintrc.json --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index ca0ec9920..a9d76302a 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -30,7 +30,8 @@ "@typescript-eslint/member-delimiter-style": "off", "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/no-var-requires": "off", - "@typescript-eslint/no-extra-semi": "off" + "@typescript-eslint/no-extra-semi": "off", + "@typescript-eslint/no-explicit-any": "off" }, "overrides": [ { From 61eed0209fe3d252c5c87dde7696444ac57ce6d8 Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Mon, 5 Oct 2020 16:57:38 +0200 Subject: [PATCH 02/20] Fixed "JSX.IntrinsicElements" error and handled className exception --- generator.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/generator.js b/generator.js index 691a346c5..73230f66d 100644 --- a/generator.js +++ b/generator.js @@ -43,7 +43,7 @@ function formatName(string) { function componentTemplate(name, svg) { let component = "import React from 'react'\n" component += "import { IconProps } from './types'\n" - component += `const ${name}: React.FC = (props) => (` + component += `const ${name}: React.FC = (props: IconProps):any => (` component += svg + ')\n\n' component += `export { ${name} }` @@ -101,7 +101,10 @@ async function getSVGFile(icon, version) { `https://fonts.gstatic.com/s/i/materialicons/${icon}/v${version}/24px.svg` ) - return svg.data.replace('height="24"', '').replace('width="24"', '{...props}') + return svg.data + .replace('height="24"', '') + .replace('width="24"', '{...props}') + .replace(/class/g, 'className') } /** From 71472828f199f47ea5afd0abeb743f0408a195af Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Mon, 5 Oct 2020 16:58:16 +0200 Subject: [PATCH 03/20] Fixed typo, added src to linter and add react and react-dom as dev dependencies --- package.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 253c6fe3b..29a7dc3ff 100644 --- a/package.json +++ b/package.json @@ -2,11 +2,11 @@ "name": "@aboutbits/material-design-icons", "version": "0.1.0", "description": "Material design icon components for React", - "main": "dist/index.ts", + "main": "dist/index.js", "scripts": { "build": "tsc", "generate": "rm -rf src/* && node generator.js", - "lint": "eslint --ext js,ts,tsx ./generator.js", + "lint": "eslint --ext js,ts,tsx src ./generator.js", "lint:fix": "npm run lint -- --fix", "test": "jest --config jestconfig.json --passWithNoTests", "prepare": "npm run build", @@ -39,6 +39,7 @@ "homepage": "https://github.com/aboutbits/react-material-icons#readme", "devDependencies": { "@types/jest": "^26.0.14", + "@types/react": "^16.9.50", "@typescript-eslint/parser": "^4.3.0", "@typescript-eslint/eslint-plugin": "^4.3.0", "axios": "^0.20.0", @@ -50,7 +51,9 @@ "eslint-plugin-prettier": "^3.1.4", "prettier": "^2.1.2", "ts-jest": "^26.4.1", - "typescript": "^4.0.3" + "typescript": "^4.0.3", + "react": "^16.13.1", + "react-dom": "^16.13.1" }, "peerDependencies": { "react": "^16.13.1", From a7958f9b60665a1445c6a81d6829bcf8e4be7faf Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Mon, 5 Oct 2020 16:58:53 +0200 Subject: [PATCH 04/20] Set target to es5 and module to esnext --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index fb05c6d69..a4fb44e7d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,12 +1,13 @@ { "compilerOptions": { "module": "ESNext", - "target": "ES6", + "target": "ES5", "jsx": "react", "moduleResolution": "Node", "esModuleInterop": true, "outDir": "./dist", "declaration": true, + "strict": true, "sourceMap": false }, "include": [ From 13c716c33d6fb196e25a9d8538bac753200e233b Mon Sep 17 00:00:00 2001 From: Alex Lanz Date: Mon, 5 Oct 2020 15:30:43 +0200 Subject: [PATCH 05/20] Final version of 0.1.0 --- .githooks/pre-commit | 6 + .github/workflows/main.yml | 26 + readme.md | 8 +- src/components/Icon360.tsx | 10 + src/components/Icon3dRotation.tsx | 10 + src/components/Icon4k.tsx | 10 + src/components/Icon5g.tsx | 22 + src/components/Icon6FtApart.tsx | 15 + src/components/IconAcUnit.tsx | 10 + src/components/IconAccessAlarm.tsx | 10 + src/components/IconAccessAlarms.tsx | 10 + src/components/IconAccessTime.tsx | 11 + src/components/IconAccessibility.tsx | 10 + src/components/IconAccessibilityNew.tsx | 10 + src/components/IconAccessible.tsx | 11 + src/components/IconAccessibleForward.tsx | 11 + src/components/IconAccountBalance.tsx | 25 + src/components/IconAccountBalanceWallet.tsx | 10 + src/components/IconAccountBox.tsx | 10 + src/components/IconAccountCircle.tsx | 10 + src/components/IconAccountTree.tsx | 10 + src/components/IconAdUnits.tsx | 10 + src/components/IconAdb.tsx | 10 + src/components/IconAdd.tsx | 10 + src/components/IconAddAPhoto.tsx | 15 + src/components/IconAddAlarm.tsx | 10 + src/components/IconAddAlert.tsx | 10 + src/components/IconAddBox.tsx | 10 + src/components/IconAddBusiness.tsx | 23 + src/components/IconAddCircle.tsx | 10 + src/components/IconAddCircleOutline.tsx | 10 + src/components/IconAddComment.tsx | 10 + src/components/IconAddIcCall.tsx | 10 + src/components/IconAddLocation.tsx | 10 + src/components/IconAddLocationAlt.tsx | 10 + src/components/IconAddPhotoAlternate.tsx | 10 + src/components/IconAddRoad.tsx | 26 + src/components/IconAddShoppingCart.tsx | 10 + src/components/IconAddTask.tsx | 15 + src/components/IconAddToHomeScreen.tsx | 11 + src/components/IconAddToPhotos.tsx | 10 + src/components/IconAddToQueue.tsx | 10 + src/components/IconAddchart.tsx | 10 + src/components/IconAdjust.tsx | 10 + src/components/IconAdminPanelSettings.tsx | 22 + src/components/IconAgriculture.tsx | 24 + src/components/IconAirlineSeatFlat.tsx | 10 + src/components/IconAirlineSeatFlatAngled.tsx | 10 + .../IconAirlineSeatIndividualSuite.tsx | 10 + .../IconAirlineSeatLegroomExtra.tsx | 10 + .../IconAirlineSeatLegroomNormal.tsx | 10 + .../IconAirlineSeatLegroomReduced.tsx | 10 + .../IconAirlineSeatReclineExtra.tsx | 10 + .../IconAirlineSeatReclineNormal.tsx | 10 + src/components/IconAirplanemodeActive.tsx | 17 + src/components/IconAirplanemodeInactive.tsx | 17 + src/components/IconAirplay.tsx | 18 + src/components/IconAirportShuttle.tsx | 10 + src/components/IconAlarm.tsx | 10 + src/components/IconAlarmAdd.tsx | 10 + src/components/IconAlarmOff.tsx | 10 + src/components/IconAlarmOn.tsx | 10 + src/components/IconAlbum.tsx | 10 + src/components/IconAlignHorizontalCenter.tsx | 15 + src/components/IconAlignHorizontalLeft.tsx | 15 + src/components/IconAlignHorizontalRight.tsx | 15 + src/components/IconAlignVerticalBottom.tsx | 15 + src/components/IconAlignVerticalCenter.tsx | 15 + src/components/IconAlignVerticalTop.tsx | 15 + src/components/IconAllInbox.tsx | 10 + src/components/IconAllInclusive.tsx | 10 + src/components/IconAllOut.tsx | 10 + src/components/IconAltRoute.tsx | 17 + src/components/IconAlternateEmail.tsx | 10 + src/components/IconAmpStories.tsx | 24 + src/components/IconAnalytics.tsx | 10 + src/components/IconAnchor.tsx | 17 + src/components/IconAndroid.tsx | 17 + src/components/IconAnnouncement.tsx | 10 + src/components/IconApartment.tsx | 19 + src/components/IconApi.tsx | 17 + src/components/IconAppBlocking.tsx | 10 + src/components/IconAppSettingsAlt.tsx | 10 + src/components/IconApps.tsx | 10 + src/components/IconArchitecture.tsx | 23 + src/components/IconArchive.tsx | 10 + src/components/IconArrowBack.tsx | 10 + src/components/IconArrowBackIos.tsx | 10 + src/components/IconArrowCircleDown.tsx | 17 + src/components/IconArrowCircleUp.tsx | 17 + src/components/IconArrowDownward.tsx | 10 + src/components/IconArrowDropDown.tsx | 10 + src/components/IconArrowDropDownCircle.tsx | 10 + src/components/IconArrowDropUp.tsx | 10 + src/components/IconArrowForward.tsx | 10 + src/components/IconArrowForwardIos.tsx | 10 + src/components/IconArrowLeft.tsx | 10 + src/components/IconArrowRight.tsx | 10 + src/components/IconArrowRightAlt.tsx | 10 + src/components/IconArrowUpward.tsx | 10 + src/components/IconArtTrack.tsx | 10 + src/components/IconArticle.tsx | 10 + src/components/IconAspectRatio.tsx | 10 + src/components/IconAssessment.tsx | 10 + src/components/IconAssignment.tsx | 10 + src/components/IconAssignmentInd.tsx | 10 + src/components/IconAssignmentLate.tsx | 10 + src/components/IconAssignmentReturn.tsx | 10 + src/components/IconAssignmentReturned.tsx | 10 + src/components/IconAssignmentTurnedIn.tsx | 10 + src/components/IconAssistant.tsx | 10 + src/components/IconAssistantPhoto.tsx | 10 + src/components/IconAtm.tsx | 10 + src/components/IconAttachEmail.tsx | 22 + src/components/IconAttachFile.tsx | 10 + src/components/IconAttachMoney.tsx | 10 + src/components/IconAttachment.tsx | 10 + src/components/IconAudiotrack.tsx | 10 + src/components/IconAutoDelete.tsx | 23 + src/components/IconAutorenew.tsx | 10 + src/components/IconAvTimer.tsx | 10 + src/components/IconBabyChangingStation.tsx | 17 + src/components/IconBackpack.tsx | 21 + src/components/IconBackspace.tsx | 10 + src/components/IconBackup.tsx | 10 + src/components/IconBackupTable.tsx | 22 + src/components/IconBallot.tsx | 18 + src/components/IconBarChart.tsx | 10 + src/components/IconBatchPrediction.tsx | 17 + src/components/IconBathtub.tsx | 26 + src/components/IconBatteryAlert.tsx | 10 + src/components/IconBatteryChargingFull.tsx | 10 + src/components/IconBatteryFull.tsx | 10 + src/components/IconBatteryStd.tsx | 10 + src/components/IconBatteryUnknown.tsx | 10 + src/components/IconBeachAccess.tsx | 10 + src/components/IconBedtime.tsx | 21 + src/components/IconBeenhere.tsx | 10 + src/components/IconBento.tsx | 17 + src/components/IconBikeScooter.tsx | 23 + src/components/IconBiotech.tsx | 23 + src/components/IconBlock.tsx | 10 + src/components/IconBluetooth.tsx | 10 + src/components/IconBluetoothAudio.tsx | 10 + src/components/IconBluetoothConnected.tsx | 10 + src/components/IconBluetoothDisabled.tsx | 10 + src/components/IconBluetoothSearching.tsx | 10 + src/components/IconBlurCircular.tsx | 10 + src/components/IconBlurLinear.tsx | 10 + src/components/IconBlurOff.tsx | 10 + src/components/IconBlurOn.tsx | 10 + src/components/IconBook.tsx | 10 + src/components/IconBookOnline.tsx | 17 + src/components/IconBookmark.tsx | 10 + src/components/IconBookmarkBorder.tsx | 10 + src/components/IconBookmarks.tsx | 10 + src/components/IconBorderAll.tsx | 10 + src/components/IconBorderBottom.tsx | 10 + src/components/IconBorderClear.tsx | 10 + src/components/IconBorderHorizontal.tsx | 10 + src/components/IconBorderInner.tsx | 10 + src/components/IconBorderLeft.tsx | 10 + src/components/IconBorderOuter.tsx | 10 + src/components/IconBorderRight.tsx | 10 + src/components/IconBorderStyle.tsx | 10 + src/components/IconBorderTop.tsx | 10 + src/components/IconBorderVertical.tsx | 10 + src/components/IconBrandingWatermark.tsx | 10 + src/components/IconBrightness1.tsx | 10 + src/components/IconBrightness2.tsx | 10 + src/components/IconBrightness3.tsx | 10 + src/components/IconBrightness4.tsx | 10 + src/components/IconBrightness5.tsx | 10 + src/components/IconBrightness6.tsx | 10 + src/components/IconBrightness7.tsx | 10 + src/components/IconBrightnessAuto.tsx | 10 + src/components/IconBrightnessHigh.tsx | 10 + src/components/IconBrightnessLow.tsx | 10 + src/components/IconBrightnessMedium.tsx | 10 + src/components/IconBrokenImage.tsx | 14 + src/components/IconBrowserNotSupported.tsx | 22 + src/components/IconBrush.tsx | 10 + src/components/IconBubbleChart.tsx | 12 + src/components/IconBugReport.tsx | 10 + src/components/IconBuild.tsx | 10 + src/components/IconBuildCircle.tsx | 24 + src/components/IconBurstMode.tsx | 10 + src/components/IconBusiness.tsx | 10 + src/components/IconBusinessCenter.tsx | 10 + src/components/IconCached.tsx | 10 + src/components/IconCake.tsx | 10 + src/components/IconCalculate.tsx | 19 + src/components/IconCalendarToday.tsx | 10 + src/components/IconCalendarViewDay.tsx | 10 + src/components/IconCall.tsx | 10 + src/components/IconCallEnd.tsx | 10 + src/components/IconCallMade.tsx | 10 + src/components/IconCallMerge.tsx | 10 + src/components/IconCallMissed.tsx | 10 + src/components/IconCallMissedOutgoing.tsx | 23 + src/components/IconCallReceived.tsx | 10 + src/components/IconCallSplit.tsx | 10 + src/components/IconCallToAction.tsx | 10 + src/components/IconCamera.tsx | 10 + src/components/IconCameraAlt.tsx | 11 + src/components/IconCameraEnhance.tsx | 11 + src/components/IconCameraFront.tsx | 10 + src/components/IconCameraRear.tsx | 10 + src/components/IconCameraRoll.tsx | 10 + src/components/IconCampaign.tsx | 10 + src/components/IconCancel.tsx | 10 + src/components/IconCancelPresentation.tsx | 15 + src/components/IconCancelScheduleSend.tsx | 22 + src/components/IconCardGiftcard.tsx | 10 + src/components/IconCardMembership.tsx | 10 + src/components/IconCardTravel.tsx | 10 + src/components/IconCarpenter.tsx | 15 + src/components/IconCasino.tsx | 13 + src/components/IconCast.tsx | 11 + src/components/IconCastConnected.tsx | 11 + src/components/IconCastForEducation.tsx | 17 + src/components/IconCategory.tsx | 12 + src/components/IconCenterFocusStrong.tsx | 10 + src/components/IconCenterFocusWeak.tsx | 10 + src/components/IconChangeHistory.tsx | 10 + src/components/IconChargingStation.tsx | 17 + src/components/IconChat.tsx | 10 + src/components/IconChatBubble.tsx | 10 + src/components/IconChatBubbleOutline.tsx | 10 + src/components/IconCheck.tsx | 10 + src/components/IconCheckBox.tsx | 10 + src/components/IconCheckBoxOutlineBlank.tsx | 10 + src/components/IconCheckCircle.tsx | 10 + src/components/IconCheckCircleOutline.tsx | 10 + src/components/IconCheckroom.tsx | 17 + src/components/IconChevronLeft.tsx | 10 + src/components/IconChevronRight.tsx | 10 + src/components/IconChildCare.tsx | 12 + src/components/IconChildFriendly.tsx | 10 + src/components/IconChromeReaderMode.tsx | 10 + src/components/IconClass.tsx | 10 + src/components/IconCleanHands.tsx | 15 + src/components/IconCleaningServices.tsx | 19 + src/components/IconClear.tsx | 10 + src/components/IconClearAll.tsx | 10 + src/components/IconClose.tsx | 10 + src/components/IconCloseFullscreen.tsx | 15 + src/components/IconClosedCaption.tsx | 10 + src/components/IconClosedCaptionDisabled.tsx | 15 + src/components/IconCloud.tsx | 10 + src/components/IconCloudCircle.tsx | 10 + src/components/IconCloudDone.tsx | 10 + src/components/IconCloudDownload.tsx | 10 + src/components/IconCloudOff.tsx | 10 + src/components/IconCloudQueue.tsx | 10 + src/components/IconCloudUpload.tsx | 10 + src/components/IconCode.tsx | 10 + src/components/IconCollections.tsx | 10 + src/components/IconCollectionsBookmark.tsx | 12 + src/components/IconColorLens.tsx | 10 + src/components/IconColorize.tsx | 10 + src/components/IconComment.tsx | 10 + src/components/IconCommentBank.tsx | 19 + src/components/IconCommute.tsx | 10 + src/components/IconCompare.tsx | 10 + src/components/IconCompareArrows.tsx | 23 + src/components/IconCompassCalibration.tsx | 11 + src/components/IconComputer.tsx | 10 + src/components/IconConfirmationNumber.tsx | 23 + src/components/IconConnectWithoutContact.tsx | 15 + src/components/IconConstruction.tsx | 28 + src/components/IconContactMail.tsx | 11 + src/components/IconContactPage.tsx | 15 + src/components/IconContactPhone.tsx | 10 + src/components/IconContactSupport.tsx | 10 + src/components/IconContactless.tsx | 19 + src/components/IconContacts.tsx | 10 + src/components/IconContentCopy.tsx | 10 + src/components/IconContentCut.tsx | 13 + src/components/IconContentPaste.tsx | 10 + src/components/IconControlCamera.tsx | 11 + src/components/IconControlPoint.tsx | 10 + src/components/IconControlPointDuplicate.tsx | 10 + src/components/IconCopyright.tsx | 23 + src/components/IconCoronavirus.tsx | 15 + src/components/IconCorporateFare.tsx | 15 + src/components/IconCountertops.tsx | 15 + src/components/IconCreate.tsx | 10 + src/components/IconCreateNewFolder.tsx | 10 + src/components/IconCreditCard.tsx | 10 + src/components/IconCrop.tsx | 10 + src/components/IconCrop169.tsx | 10 + src/components/IconCrop32.tsx | 10 + src/components/IconCrop54.tsx | 10 + src/components/IconCrop75.tsx | 10 + src/components/IconCropDin.tsx | 10 + src/components/IconCropFree.tsx | 10 + src/components/IconCropLandscape.tsx | 10 + src/components/IconCropOriginal.tsx | 10 + src/components/IconCropPortrait.tsx | 10 + src/components/IconCropRotate.tsx | 10 + src/components/IconCropSquare.tsx | 10 + src/components/IconDashboard.tsx | 10 + src/components/IconDataUsage.tsx | 10 + src/components/IconDateRange.tsx | 10 + src/components/IconDeck.tsx | 23 + src/components/IconDehaze.tsx | 10 + src/components/IconDelete.tsx | 10 + src/components/IconDeleteForever.tsx | 11 + src/components/IconDeleteOutline.tsx | 10 + src/components/IconDeleteSweep.tsx | 10 + src/components/IconDepartureBoard.tsx | 10 + src/components/IconDescription.tsx | 10 + src/components/IconDesignServices.tsx | 23 + src/components/IconDesktopAccessDisabled.tsx | 10 + src/components/IconDesktopMac.tsx | 10 + src/components/IconDesktopWindows.tsx | 10 + src/components/IconDetails.tsx | 15 + src/components/IconDeveloperBoard.tsx | 10 + src/components/IconDeveloperMode.tsx | 10 + src/components/IconDeviceHub.tsx | 11 + src/components/IconDeviceUnknown.tsx | 10 + src/components/IconDevices.tsx | 10 + src/components/IconDevicesOther.tsx | 10 + src/components/IconDialerSip.tsx | 10 + src/components/IconDialpad.tsx | 10 + src/components/IconDirections.tsx | 10 + src/components/IconDirectionsBike.tsx | 10 + src/components/IconDirectionsBoat.tsx | 10 + src/components/IconDirectionsBus.tsx | 10 + src/components/IconDirectionsCar.tsx | 10 + src/components/IconDirectionsOff.tsx | 29 + src/components/IconDirectionsRailway.tsx | 10 + src/components/IconDirectionsRun.tsx | 10 + src/components/IconDirectionsSubway.tsx | 10 + src/components/IconDirectionsTransit.tsx | 10 + src/components/IconDirectionsWalk.tsx | 10 + src/components/IconDisabledByDefault.tsx | 15 + src/components/IconDiscFull.tsx | 10 + src/components/IconDns.tsx | 10 + src/components/IconDoNotStep.tsx | 17 + src/components/IconDoNotTouch.tsx | 17 + src/components/IconDock.tsx | 10 + src/components/IconDomain.tsx | 17 + src/components/IconDomainDisabled.tsx | 10 + src/components/IconDomainVerification.tsx | 22 + src/components/IconDone.tsx | 10 + src/components/IconDoneAll.tsx | 10 + src/components/IconDoneOutline.tsx | 10 + src/components/IconDonutLarge.tsx | 23 + src/components/IconDonutSmall.tsx | 10 + src/components/IconDoubleArrow.tsx | 22 + src/components/IconDrafts.tsx | 10 + src/components/IconDragHandle.tsx | 23 + src/components/IconDragIndicator.tsx | 10 + src/components/IconDriveEta.tsx | 10 + src/components/IconDry.tsx | 17 + src/components/IconDuo.tsx | 10 + src/components/IconDvr.tsx | 10 + src/components/IconDynamicFeed.tsx | 32 + src/components/IconDynamicForm.tsx | 17 + src/components/IconEast.tsx | 15 + src/components/IconEco.tsx | 21 + src/components/IconEdit.tsx | 10 + src/components/IconEditAttributes.tsx | 10 + src/components/IconEditLocation.tsx | 10 + src/components/IconEditRoad.tsx | 26 + src/components/IconEject.tsx | 10 + src/components/IconElderly.tsx | 15 + src/components/IconElectricBike.tsx | 22 + src/components/IconElectricCar.tsx | 20 + src/components/IconElectricMoped.tsx | 24 + src/components/IconElectricScooter.tsx | 23 + src/components/IconElectricalServices.tsx | 24 + src/components/IconElevator.tsx | 17 + src/components/IconEmail.tsx | 10 + src/components/IconEmojiEmotions.tsx | 20 + src/components/IconEmojiEvents.tsx | 15 + src/components/IconEmojiFlags.tsx | 20 + src/components/IconEmojiFoodBeverage.tsx | 23 + src/components/IconEmojiNature.tsx | 23 + src/components/IconEmojiObjects.tsx | 20 + src/components/IconEmojiPeople.tsx | 23 + src/components/IconEmojiSymbols.tsx | 34 + src/components/IconEmojiTransportation.tsx | 27 + src/components/IconEngineering.tsx | 25 + src/components/IconEnhancedEncryption.tsx | 11 + src/components/IconEqualizer.tsx | 10 + src/components/IconError.tsx | 10 + src/components/IconErrorOutline.tsx | 10 + src/components/IconEscalator.tsx | 19 + src/components/IconEscalatorWarning.tsx | 17 + src/components/IconEuro.tsx | 20 + src/components/IconEuroSymbol.tsx | 10 + src/components/IconEvStation.tsx | 10 + src/components/IconEvent.tsx | 10 + src/components/IconEventAvailable.tsx | 10 + src/components/IconEventBusy.tsx | 10 + src/components/IconEventNote.tsx | 10 + src/components/IconEventSeat.tsx | 23 + src/components/IconExitToApp.tsx | 10 + src/components/IconExpandLess.tsx | 10 + src/components/IconExpandMore.tsx | 10 + src/components/IconExplicit.tsx | 10 + src/components/IconExplore.tsx | 10 + src/components/IconExploreOff.tsx | 10 + src/components/IconExposure.tsx | 10 + src/components/IconExposureNeg1.tsx | 10 + src/components/IconExposureNeg2.tsx | 10 + src/components/IconExposurePlus1.tsx | 10 + src/components/IconExposurePlus2.tsx | 10 + src/components/IconExposureZero.tsx | 13 + src/components/IconExtension.tsx | 10 + src/components/IconFace.tsx | 10 + src/components/IconFacebook.tsx | 15 + src/components/IconFactCheck.tsx | 24 + src/components/IconFamilyRestroom.tsx | 17 + src/components/IconFastForward.tsx | 10 + src/components/IconFastRewind.tsx | 10 + src/components/IconFastfood.tsx | 10 + src/components/IconFavorite.tsx | 10 + src/components/IconFavoriteBorder.tsx | 10 + src/components/IconFeaturedPlayList.tsx | 10 + src/components/IconFeaturedVideo.tsx | 10 + src/components/IconFeedback.tsx | 10 + src/components/IconFence.tsx | 19 + src/components/IconFiberDvr.tsx | 23 + src/components/IconFiberManualRecord.tsx | 10 + src/components/IconFiberNew.tsx | 23 + src/components/IconFiberPin.tsx | 10 + src/components/IconFiberSmartRecord.tsx | 13 + src/components/IconFileCopy.tsx | 10 + src/components/IconFilter.tsx | 10 + src/components/IconFilter1.tsx | 10 + src/components/IconFilter2.tsx | 10 + src/components/IconFilter3.tsx | 10 + src/components/IconFilter4.tsx | 10 + src/components/IconFilter5.tsx | 10 + src/components/IconFilter6.tsx | 10 + src/components/IconFilter7.tsx | 10 + src/components/IconFilter8.tsx | 10 + src/components/IconFilter9.tsx | 10 + src/components/IconFilter9Plus.tsx | 10 + src/components/IconFilterAlt.tsx | 18 + src/components/IconFilterBAndW.tsx | 10 + src/components/IconFilterCenterFocus.tsx | 10 + src/components/IconFilterDrama.tsx | 10 + src/components/IconFilterFrames.tsx | 10 + src/components/IconFilterHdr.tsx | 10 + src/components/IconFilterList.tsx | 10 + src/components/IconFilterNone.tsx | 10 + src/components/IconFilterTiltShift.tsx | 10 + src/components/IconFilterVintage.tsx | 10 + src/components/IconFindInPage.tsx | 10 + src/components/IconFindReplace.tsx | 10 + src/components/IconFingerprint.tsx | 10 + src/components/IconFireExtinguisher.tsx | 17 + src/components/IconFireplace.tsx | 19 + src/components/IconFirstPage.tsx | 10 + src/components/IconFitnessCenter.tsx | 10 + src/components/IconFlag.tsx | 10 + src/components/IconFlaky.tsx | 22 + src/components/IconFlare.tsx | 10 + src/components/IconFlashAuto.tsx | 10 + src/components/IconFlashOff.tsx | 10 + src/components/IconFlashOn.tsx | 10 + src/components/IconFlight.tsx | 10 + src/components/IconFlightLand.tsx | 23 + src/components/IconFlightTakeoff.tsx | 23 + src/components/IconFlip.tsx | 10 + src/components/IconFlipCameraAndroid.tsx | 23 + src/components/IconFlipCameraIos.tsx | 21 + src/components/IconFlipToBack.tsx | 10 + src/components/IconFlipToFront.tsx | 10 + src/components/IconFolder.tsx | 10 + src/components/IconFolderOpen.tsx | 10 + src/components/IconFolderShared.tsx | 10 + src/components/IconFolderSpecial.tsx | 10 + src/components/IconFollowTheSigns.tsx | 15 + src/components/IconFontDownload.tsx | 15 + src/components/IconFoodBank.tsx | 15 + src/components/IconFormatAlignCenter.tsx | 10 + src/components/IconFormatAlignJustify.tsx | 10 + src/components/IconFormatAlignLeft.tsx | 10 + src/components/IconFormatAlignRight.tsx | 10 + src/components/IconFormatBold.tsx | 10 + src/components/IconFormatClear.tsx | 10 + src/components/IconFormatColorReset.tsx | 10 + src/components/IconFormatIndentDecrease.tsx | 10 + src/components/IconFormatIndentIncrease.tsx | 10 + src/components/IconFormatItalic.tsx | 10 + src/components/IconFormatLineSpacing.tsx | 10 + src/components/IconFormatListBulleted.tsx | 10 + src/components/IconFormatListNumbered.tsx | 10 + src/components/IconFormatListNumberedRtl.tsx | 10 + src/components/IconFormatPaint.tsx | 10 + src/components/IconFormatQuote.tsx | 10 + src/components/IconFormatShapes.tsx | 10 + src/components/IconFormatSize.tsx | 10 + src/components/IconFormatStrikethrough.tsx | 10 + .../IconFormatTextdirectionLToR.tsx | 10 + .../IconFormatTextdirectionRToL.tsx | 10 + src/components/IconFormatUnderlined.tsx | 10 + src/components/IconForum.tsx | 10 + src/components/IconForward.tsx | 10 + src/components/IconForward10.tsx | 23 + src/components/IconForward30.tsx | 23 + src/components/IconForward5.tsx | 22 + src/components/IconForwardToInbox.tsx | 17 + src/components/IconFoundation.tsx | 15 + src/components/IconFreeBreakfast.tsx | 10 + src/components/IconFullscreen.tsx | 10 + src/components/IconFullscreenExit.tsx | 10 + src/components/IconFunctions.tsx | 10 + src/components/IconGTranslate.tsx | 10 + src/components/IconGamepad.tsx | 10 + src/components/IconGames.tsx | 10 + src/components/IconGavel.tsx | 42 + src/components/IconGesture.tsx | 10 + src/components/IconGetApp.tsx | 10 + src/components/IconGif.tsx | 23 + src/components/IconGolfCourse.tsx | 11 + src/components/IconGpsFixed.tsx | 10 + src/components/IconGpsNotFixed.tsx | 10 + src/components/IconGpsOff.tsx | 10 + src/components/IconGrade.tsx | 10 + src/components/IconGradient.tsx | 10 + src/components/IconGrading.tsx | 19 + src/components/IconGrain.tsx | 10 + src/components/IconGraphicEq.tsx | 10 + src/components/IconGrass.tsx | 15 + src/components/IconGridOff.tsx | 10 + src/components/IconGridOn.tsx | 10 + src/components/IconGroup.tsx | 10 + src/components/IconGroupAdd.tsx | 10 + src/components/IconGroupWork.tsx | 10 + src/components/IconGroups.tsx | 17 + src/components/IconHandyman.tsx | 26 + src/components/IconHd.tsx | 10 + src/components/IconHdrOff.tsx | 9 + src/components/IconHdrOn.tsx | 10 + src/components/IconHdrStrong.tsx | 10 + src/components/IconHdrWeak.tsx | 10 + src/components/IconHeadset.tsx | 10 + src/components/IconHeadsetMic.tsx | 10 + src/components/IconHealing.tsx | 10 + src/components/IconHearing.tsx | 10 + src/components/IconHearingDisabled.tsx | 17 + src/components/IconHeight.tsx | 20 + src/components/IconHelp.tsx | 10 + src/components/IconHelpCenter.tsx | 17 + src/components/IconHelpOutline.tsx | 10 + src/components/IconHighQuality.tsx | 10 + src/components/IconHighlight.tsx | 23 + src/components/IconHighlightAlt.tsx | 10 + src/components/IconHighlightOff.tsx | 10 + src/components/IconHistory.tsx | 10 + src/components/IconHistoryEdu.tsx | 21 + src/components/IconHistoryToggleOff.tsx | 17 + src/components/IconHome.tsx | 10 + src/components/IconHomeRepairService.tsx | 22 + src/components/IconHomeWork.tsx | 12 + src/components/IconHorizontalDistribute.tsx | 15 + src/components/IconHorizontalRule.tsx | 17 + src/components/IconHorizontalSplit.tsx | 10 + src/components/IconHotTub.tsx | 11 + src/components/IconHotel.tsx | 10 + src/components/IconHourglassBottom.tsx | 19 + src/components/IconHourglassDisabled.tsx | 22 + src/components/IconHourglassEmpty.tsx | 10 + src/components/IconHourglassFull.tsx | 10 + src/components/IconHourglassTop.tsx | 19 + src/components/IconHouse.tsx | 19 + src/components/IconHouseSiding.tsx | 15 + src/components/IconHowToReg.tsx | 13 + src/components/IconHowToVote.tsx | 10 + src/components/IconHttp.tsx | 10 + src/components/IconHttps.tsx | 10 + src/components/IconHvac.tsx | 35 + src/components/IconImage.tsx | 10 + src/components/IconImageAspectRatio.tsx | 10 + src/components/IconImageNotSupported.tsx | 17 + src/components/IconImageSearch.tsx | 11 + src/components/IconImportContacts.tsx | 23 + src/components/IconImportExport.tsx | 10 + src/components/IconImportantDevices.tsx | 10 + src/components/IconInbox.tsx | 10 + src/components/IconIndeterminateCheckBox.tsx | 23 + src/components/IconInfo.tsx | 10 + src/components/IconInput.tsx | 10 + src/components/IconInsertChart.tsx | 10 + src/components/IconInsertChartOutlined.tsx | 10 + src/components/IconInsertComment.tsx | 10 + src/components/IconInsertDriveFile.tsx | 10 + src/components/IconInsertEmoticon.tsx | 10 + src/components/IconInsertInvitation.tsx | 10 + src/components/IconInsertLink.tsx | 10 + src/components/IconInsertPhoto.tsx | 10 + src/components/IconInsights.tsx | 23 + .../IconIntegrationInstructions.tsx | 20 + src/components/IconInvertColors.tsx | 10 + src/components/IconInvertColorsOff.tsx | 10 + src/components/IconIso.tsx | 10 + src/components/IconKeyboard.tsx | 10 + src/components/IconKeyboardArrowDown.tsx | 10 + src/components/IconKeyboardArrowLeft.tsx | 10 + src/components/IconKeyboardArrowRight.tsx | 10 + src/components/IconKeyboardArrowUp.tsx | 10 + src/components/IconKeyboardBackspace.tsx | 10 + src/components/IconKeyboardCapslock.tsx | 10 + src/components/IconKeyboardHide.tsx | 10 + src/components/IconKeyboardReturn.tsx | 10 + src/components/IconKeyboardTab.tsx | 10 + src/components/IconKeyboardVoice.tsx | 10 + src/components/IconKingBed.tsx | 23 + src/components/IconKitchen.tsx | 10 + src/components/IconLabel.tsx | 10 + src/components/IconLabelImportant.tsx | 10 + src/components/IconLabelOff.tsx | 10 + src/components/IconLandscape.tsx | 10 + src/components/IconLanguage.tsx | 10 + src/components/IconLaptop.tsx | 23 + src/components/IconLaptopChromebook.tsx | 10 + src/components/IconLaptopMac.tsx | 10 + src/components/IconLaptopWindows.tsx | 10 + src/components/IconLastPage.tsx | 10 + src/components/IconLaunch.tsx | 10 + src/components/IconLayers.tsx | 10 + src/components/IconLayersClear.tsx | 10 + src/components/IconLeaderboard.tsx | 17 + src/components/IconLeakAdd.tsx | 10 + src/components/IconLeakRemove.tsx | 10 + src/components/IconLegendToggle.tsx | 17 + src/components/IconLens.tsx | 10 + src/components/IconLibraryAdd.tsx | 10 + src/components/IconLibraryAddCheck.tsx | 10 + src/components/IconLibraryBooks.tsx | 10 + src/components/IconLibraryMusic.tsx | 10 + src/components/IconLineStyle.tsx | 23 + src/components/IconLineWeight.tsx | 23 + src/components/IconLinearScale.tsx | 23 + src/components/IconLink.tsx | 10 + src/components/IconLinkOff.tsx | 11 + src/components/IconLinkedCamera.tsx | 13 + src/components/IconList.tsx | 10 + src/components/IconListAlt.tsx | 10 + src/components/IconLiveHelp.tsx | 10 + src/components/IconLiveTv.tsx | 10 + src/components/IconLocalActivity.tsx | 10 + src/components/IconLocalAirport.tsx | 17 + src/components/IconLocalAtm.tsx | 10 + src/components/IconLocalBar.tsx | 10 + src/components/IconLocalCafe.tsx | 10 + src/components/IconLocalCarWash.tsx | 10 + src/components/IconLocalConvenienceStore.tsx | 10 + src/components/IconLocalDining.tsx | 10 + src/components/IconLocalDrink.tsx | 10 + src/components/IconLocalFireDepartment.tsx | 19 + src/components/IconLocalFlorist.tsx | 10 + src/components/IconLocalGasStation.tsx | 10 + src/components/IconLocalGroceryStore.tsx | 10 + src/components/IconLocalHospital.tsx | 10 + src/components/IconLocalHotel.tsx | 10 + src/components/IconLocalLaundryService.tsx | 10 + src/components/IconLocalLibrary.tsx | 10 + src/components/IconLocalMall.tsx | 10 + src/components/IconLocalMovies.tsx | 10 + src/components/IconLocalOffer.tsx | 10 + src/components/IconLocalParking.tsx | 10 + src/components/IconLocalPharmacy.tsx | 10 + src/components/IconLocalPhone.tsx | 10 + src/components/IconLocalPizza.tsx | 10 + src/components/IconLocalPlay.tsx | 10 + src/components/IconLocalPolice.tsx | 15 + src/components/IconLocalPostOffice.tsx | 10 + src/components/IconLocalPrintshop.tsx | 10 + src/components/IconLocalSee.tsx | 11 + src/components/IconLocalShipping.tsx | 10 + src/components/IconLocalTaxi.tsx | 10 + src/components/IconLocationCity.tsx | 10 + src/components/IconLocationDisabled.tsx | 10 + src/components/IconLocationOff.tsx | 10 + src/components/IconLocationOn.tsx | 10 + src/components/IconLocationSearching.tsx | 10 + src/components/IconLock.tsx | 10 + src/components/IconLockOpen.tsx | 10 + src/components/IconLogin.tsx | 19 + src/components/IconLooks.tsx | 10 + src/components/IconLooks3.tsx | 10 + src/components/IconLooks4.tsx | 10 + src/components/IconLooks5.tsx | 10 + src/components/IconLooks6.tsx | 10 + src/components/IconLooksOne.tsx | 10 + src/components/IconLooksTwo.tsx | 10 + src/components/IconLoop.tsx | 10 + src/components/IconLoupe.tsx | 10 + src/components/IconLowPriority.tsx | 10 + src/components/IconLoyalty.tsx | 10 + src/components/IconLuggage.tsx | 17 + src/components/IconMail.tsx | 10 + src/components/IconMailOutline.tsx | 10 + src/components/IconMap.tsx | 10 + src/components/IconMapsUgc.tsx | 18 + src/components/IconMarkChatRead.tsx | 17 + src/components/IconMarkChatUnread.tsx | 17 + src/components/IconMarkEmailRead.tsx | 17 + src/components/IconMarkEmailUnread.tsx | 17 + src/components/IconMarkunread.tsx | 10 + src/components/IconMarkunreadMailbox.tsx | 10 + src/components/IconMasks.tsx | 15 + src/components/IconMaximize.tsx | 10 + src/components/IconMediation.tsx | 10 + src/components/IconMedicalServices.tsx | 21 + src/components/IconMeetingRoom.tsx | 9 + src/components/IconMemory.tsx | 10 + src/components/IconMenu.tsx | 10 + src/components/IconMenuBook.tsx | 27 + src/components/IconMenuOpen.tsx | 10 + src/components/IconMergeType.tsx | 10 + src/components/IconMessage.tsx | 10 + src/components/IconMic.tsx | 10 + src/components/IconMicNone.tsx | 10 + src/components/IconMicOff.tsx | 10 + src/components/IconMicrowave.tsx | 15 + src/components/IconMilitaryTech.tsx | 19 + src/components/IconMinimize.tsx | 10 + src/components/IconMiscellaneousServices.tsx | 22 + src/components/IconMissedVideoCall.tsx | 10 + src/components/IconMms.tsx | 10 + src/components/IconMobileFriendly.tsx | 10 + src/components/IconMobileOff.tsx | 10 + src/components/IconMobileScreenShare.tsx | 10 + src/components/IconModeComment.tsx | 10 + src/components/IconModelTraining.tsx | 17 + src/components/IconMonetizationOn.tsx | 10 + src/components/IconMoney.tsx | 12 + src/components/IconMoneyOff.tsx | 10 + src/components/IconMonochromePhotos.tsx | 11 + src/components/IconMood.tsx | 10 + src/components/IconMoodBad.tsx | 10 + src/components/IconMoped.tsx | 23 + src/components/IconMore.tsx | 10 + src/components/IconMoreHoriz.tsx | 10 + src/components/IconMoreTime.tsx | 23 + src/components/IconMoreVert.tsx | 10 + src/components/IconMotionPhotosOn.tsx | 17 + src/components/IconMotionPhotosPause.tsx | 15 + src/components/IconMotionPhotosPaused.tsx | 17 + src/components/IconMouse.tsx | 10 + src/components/IconMoveToInbox.tsx | 10 + src/components/IconMovie.tsx | 10 + src/components/IconMovieCreation.tsx | 10 + src/components/IconMovieFilter.tsx | 10 + src/components/IconMultilineChart.tsx | 10 + src/components/IconMultipleStop.tsx | 17 + src/components/IconMuseum.tsx | 19 + src/components/IconMusicNote.tsx | 10 + src/components/IconMusicOff.tsx | 10 + src/components/IconMusicVideo.tsx | 10 + src/components/IconMyLocation.tsx | 10 + src/components/IconNat.tsx | 22 + src/components/IconNature.tsx | 10 + src/components/IconNaturePeople.tsx | 10 + src/components/IconNavigateBefore.tsx | 10 + src/components/IconNavigateNext.tsx | 10 + src/components/IconNavigation.tsx | 10 + src/components/IconNearMe.tsx | 10 + src/components/IconNearMeDisabled.tsx | 15 + src/components/IconNetworkCheck.tsx | 10 + src/components/IconNetworkLocked.tsx | 10 + src/components/IconNewReleases.tsx | 10 + src/components/IconNextPlan.tsx | 19 + src/components/IconNextWeek.tsx | 23 + src/components/IconNfc.tsx | 11 + src/components/IconNightShelter.tsx | 15 + src/components/IconNightsStay.tsx | 24 + src/components/IconNoBackpack.tsx | 15 + src/components/IconNoCell.tsx | 17 + src/components/IconNoDrinks.tsx | 17 + src/components/IconNoEncryption.tsx | 13 + src/components/IconNoFlash.tsx | 17 + src/components/IconNoFood.tsx | 17 + src/components/IconNoLuggage.tsx | 15 + src/components/IconNoMeals.tsx | 15 + src/components/IconNoMeetingRoom.tsx | 9 + src/components/IconNoPhotography.tsx | 17 + src/components/IconNoSim.tsx | 10 + src/components/IconNoStroller.tsx | 17 + src/components/IconNoTransfer.tsx | 15 + src/components/IconNorth.tsx | 15 + src/components/IconNorthEast.tsx | 15 + src/components/IconNorthWest.tsx | 15 + src/components/IconNotAccessible.tsx | 17 + src/components/IconNotInterested.tsx | 10 + src/components/IconNotListedLocation.tsx | 10 + src/components/IconNotStarted.tsx | 17 + src/components/IconNote.tsx | 10 + src/components/IconNoteAdd.tsx | 10 + src/components/IconNotes.tsx | 10 + src/components/IconNotificationImportant.tsx | 10 + src/components/IconNotifications.tsx | 9 + src/components/IconNotificationsActive.tsx | 10 + src/components/IconNotificationsNone.tsx | 10 + src/components/IconNotificationsOff.tsx | 10 + src/components/IconNotificationsPaused.tsx | 10 + src/components/IconOfflineBolt.tsx | 10 + src/components/IconOfflinePin.tsx | 23 + src/components/IconOndemandVideo.tsx | 10 + src/components/IconOnlinePrediction.tsx | 17 + src/components/IconOpacity.tsx | 10 + src/components/IconOpenInBrowser.tsx | 10 + src/components/IconOpenInFull.tsx | 15 + src/components/IconOpenInNew.tsx | 10 + src/components/IconOpenWith.tsx | 10 + src/components/IconOutbond.tsx | 15 + src/components/IconOutdoorGrill.tsx | 24 + src/components/IconOutlet.tsx | 15 + src/components/IconOutlinedFlag.tsx | 10 + src/components/IconPages.tsx | 10 + src/components/IconPageview.tsx | 10 + src/components/IconPalette.tsx | 10 + src/components/IconPanTool.tsx | 23 + src/components/IconPanorama.tsx | 10 + src/components/IconPanoramaFishEye.tsx | 10 + src/components/IconPanoramaHorizontal.tsx | 10 + src/components/IconPanoramaVertical.tsx | 10 + src/components/IconPanoramaWideAngle.tsx | 10 + src/components/IconPartyMode.tsx | 10 + src/components/IconPause.tsx | 10 + src/components/IconPauseCircleFilled.tsx | 10 + src/components/IconPauseCircleOutline.tsx | 10 + src/components/IconPausePresentation.tsx | 15 + src/components/IconPayment.tsx | 10 + src/components/IconPayments.tsx | 10 + src/components/IconPedalBike.tsx | 19 + src/components/IconPending.tsx | 19 + src/components/IconPendingActions.tsx | 17 + src/components/IconPeople.tsx | 10 + src/components/IconPeopleAlt.tsx | 42 + src/components/IconPeopleOutline.tsx | 10 + src/components/IconPermCameraMic.tsx | 10 + src/components/IconPermContactCalendar.tsx | 10 + src/components/IconPermDataSetting.tsx | 10 + src/components/IconPermDeviceInformation.tsx | 10 + src/components/IconPermIdentity.tsx | 10 + src/components/IconPermMedia.tsx | 10 + src/components/IconPermPhoneMsg.tsx | 10 + src/components/IconPermScanWifi.tsx | 10 + src/components/IconPerson.tsx | 10 + src/components/IconPersonAdd.tsx | 10 + src/components/IconPersonAddAlt1.tsx | 19 + src/components/IconPersonAddDisabled.tsx | 11 + src/components/IconPersonOutline.tsx | 10 + src/components/IconPersonPin.tsx | 10 + src/components/IconPersonPinCircle.tsx | 23 + src/components/IconPersonRemove.tsx | 19 + src/components/IconPersonRemoveAlt1.tsx | 19 + src/components/IconPersonSearch.tsx | 23 + src/components/IconPersonalVideo.tsx | 10 + src/components/IconPestControl.tsx | 21 + src/components/IconPestControlRodent.tsx | 19 + src/components/IconPets.tsx | 14 + src/components/IconPhone.tsx | 10 + src/components/IconPhoneAndroid.tsx | 10 + src/components/IconPhoneBluetoothSpeaker.tsx | 10 + src/components/IconPhoneCallback.tsx | 10 + src/components/IconPhoneDisabled.tsx | 10 + src/components/IconPhoneEnabled.tsx | 10 + src/components/IconPhoneForwarded.tsx | 10 + src/components/IconPhoneInTalk.tsx | 10 + src/components/IconPhoneIphone.tsx | 10 + src/components/IconPhoneLocked.tsx | 10 + src/components/IconPhoneMissed.tsx | 10 + src/components/IconPhonePaused.tsx | 10 + src/components/IconPhonelink.tsx | 10 + src/components/IconPhonelinkErase.tsx | 10 + src/components/IconPhonelinkLock.tsx | 10 + src/components/IconPhonelinkOff.tsx | 10 + src/components/IconPhonelinkRing.tsx | 10 + src/components/IconPhonelinkSetup.tsx | 10 + src/components/IconPhoto.tsx | 10 + src/components/IconPhotoAlbum.tsx | 10 + src/components/IconPhotoCamera.tsx | 11 + src/components/IconPhotoFilter.tsx | 10 + src/components/IconPhotoLibrary.tsx | 10 + src/components/IconPhotoSizeSelectActual.tsx | 10 + src/components/IconPhotoSizeSelectLarge.tsx | 10 + src/components/IconPhotoSizeSelectSmall.tsx | 10 + src/components/IconPictureAsPdf.tsx | 10 + src/components/IconPictureInPicture.tsx | 10 + src/components/IconPictureInPictureAlt.tsx | 10 + src/components/IconPieChart.tsx | 10 + src/components/IconPinDrop.tsx | 10 + src/components/IconPlace.tsx | 10 + src/components/IconPlagiarism.tsx | 22 + src/components/IconPlayArrow.tsx | 10 + src/components/IconPlayCircleFilled.tsx | 10 + src/components/IconPlayCircleOutline.tsx | 10 + src/components/IconPlayForWork.tsx | 10 + src/components/IconPlaylistAdd.tsx | 10 + src/components/IconPlaylistAddCheck.tsx | 23 + src/components/IconPlaylistPlay.tsx | 10 + src/components/IconPlumbing.tsx | 23 + src/components/IconPlusOne.tsx | 10 + src/components/IconPointOfSale.tsx | 17 + src/components/IconPolicy.tsx | 23 + src/components/IconPoll.tsx | 10 + src/components/IconPolymer.tsx | 10 + src/components/IconPool.tsx | 11 + src/components/IconPortableWifiOff.tsx | 10 + src/components/IconPortrait.tsx | 10 + src/components/IconPostAdd.tsx | 26 + src/components/IconPower.tsx | 10 + src/components/IconPowerInput.tsx | 10 + src/components/IconPowerOff.tsx | 10 + src/components/IconPowerSettingsNew.tsx | 10 + src/components/IconPregnantWoman.tsx | 23 + src/components/IconPresentToAll.tsx | 10 + src/components/IconPreview.tsx | 17 + src/components/IconPrint.tsx | 10 + src/components/IconPrintDisabled.tsx | 10 + src/components/IconPriorityHigh.tsx | 11 + src/components/IconPrivacyTip.tsx | 17 + src/components/IconPsychology.tsx | 22 + src/components/IconPublic.tsx | 10 + src/components/IconPublicOff.tsx | 17 + src/components/IconPublish.tsx | 10 + src/components/IconPublishedWithChanges.tsx | 15 + src/components/IconPushPin.tsx | 22 + src/components/IconQrCode.tsx | 31 + src/components/IconQrCode2.tsx | 17 + src/components/IconQrCodeScanner.tsx | 15 + src/components/IconQueryBuilder.tsx | 11 + src/components/IconQuestionAnswer.tsx | 10 + src/components/IconQueue.tsx | 10 + src/components/IconQueueMusic.tsx | 10 + src/components/IconQueuePlayNext.tsx | 23 + src/components/IconQuickreply.tsx | 26 + src/components/IconRadio.tsx | 10 + src/components/IconRadioButtonChecked.tsx | 10 + src/components/IconRadioButtonUnchecked.tsx | 10 + src/components/IconRateReview.tsx | 13 + src/components/IconReadMore.tsx | 24 + src/components/IconReceipt.tsx | 10 + src/components/IconReceiptLong.tsx | 21 + src/components/IconRecentActors.tsx | 10 + src/components/IconRecordVoiceOver.tsx | 11 + src/components/IconRedeem.tsx | 10 + src/components/IconRedo.tsx | 10 + src/components/IconReduceCapacity.tsx | 15 + src/components/IconRefresh.tsx | 10 + src/components/IconRemove.tsx | 10 + src/components/IconRemoveCircle.tsx | 10 + src/components/IconRemoveCircleOutline.tsx | 10 + src/components/IconRemoveFromQueue.tsx | 23 + src/components/IconRemoveRedEye.tsx | 10 + src/components/IconRemoveShoppingCart.tsx | 10 + src/components/IconReorder.tsx | 10 + src/components/IconRepeat.tsx | 10 + src/components/IconRepeatOne.tsx | 10 + src/components/IconReplay.tsx | 10 + src/components/IconReplay10.tsx | 25 + src/components/IconReplay30.tsx | 25 + src/components/IconReplay5.tsx | 24 + src/components/IconReply.tsx | 10 + src/components/IconReplyAll.tsx | 10 + src/components/IconReport.tsx | 10 + src/components/IconReportOff.tsx | 10 + src/components/IconReportProblem.tsx | 10 + src/components/IconRequestPage.tsx | 15 + src/components/IconRequestQuote.tsx | 17 + src/components/IconRestaurant.tsx | 10 + src/components/IconRestaurantMenu.tsx | 10 + src/components/IconRestore.tsx | 10 + src/components/IconRestoreFromTrash.tsx | 10 + src/components/IconRestorePage.tsx | 10 + src/components/IconRiceBowl.tsx | 15 + src/components/IconRingVolume.tsx | 10 + src/components/IconRoofing.tsx | 15 + src/components/IconRoom.tsx | 10 + src/components/IconRoomPreferences.tsx | 17 + src/components/IconRoomService.tsx | 10 + src/components/IconRotate90DegreesCcw.tsx | 10 + src/components/IconRotateLeft.tsx | 10 + src/components/IconRotateRight.tsx | 10 + src/components/IconRoundedCorner.tsx | 23 + src/components/IconRouter.tsx | 10 + src/components/IconRowing.tsx | 23 + src/components/IconRssFeed.tsx | 11 + src/components/IconRule.tsx | 17 + src/components/IconRuleFolder.tsx | 17 + src/components/IconRunCircle.tsx | 19 + src/components/IconRvHookup.tsx | 11 + src/components/IconSanitizer.tsx | 15 + src/components/IconSatellite.tsx | 10 + src/components/IconSave.tsx | 10 + src/components/IconSaveAlt.tsx | 10 + src/components/IconScanner.tsx | 10 + src/components/IconScatterPlot.tsx | 14 + src/components/IconSchedule.tsx | 11 + src/components/IconSchool.tsx | 10 + src/components/IconScience.tsx | 19 + src/components/IconScore.tsx | 10 + src/components/IconScreenLockLandscape.tsx | 10 + src/components/IconScreenLockPortrait.tsx | 10 + src/components/IconScreenLockRotation.tsx | 10 + src/components/IconScreenRotation.tsx | 10 + src/components/IconScreenShare.tsx | 10 + src/components/IconSdCard.tsx | 10 + src/components/IconSdStorage.tsx | 10 + src/components/IconSearch.tsx | 10 + src/components/IconSearchOff.tsx | 22 + src/components/IconSecurity.tsx | 10 + src/components/IconSelectAll.tsx | 10 + src/components/IconSelfImprovement.tsx | 22 + src/components/IconSend.tsx | 10 + src/components/IconSensorDoor.tsx | 17 + src/components/IconSensorWindow.tsx | 17 + src/components/IconSentimentDissatisfied.tsx | 12 + src/components/IconSentimentSatisfied.tsx | 12 + src/components/IconSentimentSatisfiedAlt.tsx | 15 + .../IconSentimentVeryDissatisfied.tsx | 12 + src/components/IconSentimentVerySatisfied.tsx | 12 + src/components/IconSetMeal.tsx | 15 + src/components/IconSettings.tsx | 17 + src/components/IconSettingsApplications.tsx | 10 + src/components/IconSettingsBackupRestore.tsx | 10 + src/components/IconSettingsBluetooth.tsx | 10 + src/components/IconSettingsBrightness.tsx | 10 + src/components/IconSettingsCell.tsx | 10 + src/components/IconSettingsEthernet.tsx | 10 + src/components/IconSettingsInputAntenna.tsx | 10 + src/components/IconSettingsInputComponent.tsx | 10 + src/components/IconSettingsInputComposite.tsx | 10 + src/components/IconSettingsInputHdmi.tsx | 10 + src/components/IconSettingsInputSvideo.tsx | 10 + src/components/IconSettingsOverscan.tsx | 10 + src/components/IconSettingsPhone.tsx | 10 + src/components/IconSettingsPower.tsx | 10 + src/components/IconSettingsRemote.tsx | 10 + src/components/IconSettingsSystemDaydream.tsx | 10 + src/components/IconSettingsVoice.tsx | 10 + src/components/IconShare.tsx | 10 + src/components/IconShop.tsx | 10 + src/components/IconShopTwo.tsx | 10 + src/components/IconShoppingBag.tsx | 17 + src/components/IconShoppingBasket.tsx | 10 + src/components/IconShoppingCart.tsx | 10 + src/components/IconShortText.tsx | 23 + src/components/IconShowChart.tsx | 10 + src/components/IconShuffle.tsx | 10 + src/components/IconShutterSpeed.tsx | 10 + src/components/IconSick.tsx | 15 + src/components/IconSignalCellular4Bar.tsx | 10 + src/components/IconSignalCellularAlt.tsx | 10 + ...nSignalCellularConnectedNoInternet4Bar.tsx | 12 + src/components/IconSignalCellularNoSim.tsx | 14 + src/components/IconSignalCellularNull.tsx | 10 + src/components/IconSignalCellularOff.tsx | 10 + src/components/IconSignalWifi4Bar.tsx | 10 + src/components/IconSignalWifi4BarLock.tsx | 10 + src/components/IconSignalWifiOff.tsx | 10 + src/components/IconSimCard.tsx | 10 + src/components/IconSingleBed.tsx | 19 + src/components/IconSkipNext.tsx | 10 + src/components/IconSkipPrevious.tsx | 10 + src/components/IconSlideshow.tsx | 10 + src/components/IconSlowMotionVideo.tsx | 10 + src/components/IconSmartButton.tsx | 17 + src/components/IconSmartphone.tsx | 10 + src/components/IconSmokeFree.tsx | 10 + src/components/IconSmokingRooms.tsx | 10 + src/components/IconSms.tsx | 10 + src/components/IconSmsFailed.tsx | 10 + src/components/IconSnippetFolder.tsx | 17 + src/components/IconSnooze.tsx | 10 + src/components/IconSoap.tsx | 17 + src/components/IconSort.tsx | 10 + src/components/IconSortByAlpha.tsx | 13 + src/components/IconSource.tsx | 17 + src/components/IconSouth.tsx | 15 + src/components/IconSouthEast.tsx | 15 + src/components/IconSouthWest.tsx | 15 + src/components/IconSpa.tsx | 14 + src/components/IconSpaceBar.tsx | 10 + src/components/IconSpeaker.tsx | 10 + src/components/IconSpeakerGroup.tsx | 12 + src/components/IconSpeakerNotes.tsx | 10 + src/components/IconSpeakerNotesOff.tsx | 10 + src/components/IconSpeakerPhone.tsx | 10 + src/components/IconSpeed.tsx | 10 + src/components/IconSpellcheck.tsx | 10 + src/components/IconSports.tsx | 26 + src/components/IconSportsBar.tsx | 15 + src/components/IconSportsBaseball.tsx | 29 + src/components/IconSportsBasketball.tsx | 44 + src/components/IconSportsCricket.tsx | 31 + src/components/IconSportsEsports.tsx | 21 + src/components/IconSportsFootball.tsx | 23 + src/components/IconSportsGolf.tsx | 25 + src/components/IconSportsHandball.tsx | 23 + src/components/IconSportsHockey.tsx | 26 + src/components/IconSportsKabaddi.tsx | 24 + src/components/IconSportsMma.tsx | 22 + src/components/IconSportsMotorsports.tsx | 22 + src/components/IconSportsRugby.tsx | 21 + src/components/IconSportsSoccer.tsx | 21 + src/components/IconSportsTennis.tsx | 20 + src/components/IconSportsVolleyball.tsx | 26 + src/components/IconSquareFoot.tsx | 21 + src/components/IconStackedLineChart.tsx | 15 + src/components/IconStairs.tsx | 21 + src/components/IconStar.tsx | 11 + src/components/IconStarBorder.tsx | 10 + src/components/IconStarHalf.tsx | 23 + src/components/IconStarOutline.tsx | 9 + src/components/IconStarRate.tsx | 17 + src/components/IconStars.tsx | 10 + src/components/IconStayCurrentLandscape.tsx | 10 + src/components/IconStayCurrentPortrait.tsx | 10 + src/components/IconStayPrimaryLandscape.tsx | 10 + src/components/IconStayPrimaryPortrait.tsx | 10 + src/components/IconStickyNote2.tsx | 15 + src/components/IconStop.tsx | 10 + src/components/IconStopCircle.tsx | 22 + src/components/IconStopScreenShare.tsx | 10 + src/components/IconStorage.tsx | 10 + src/components/IconStore.tsx | 10 + src/components/IconStoreMallDirectory.tsx | 10 + src/components/IconStorefront.tsx | 22 + src/components/IconStraighten.tsx | 10 + src/components/IconStreetview.tsx | 12 + src/components/IconStrikethroughS.tsx | 23 + src/components/IconStroller.tsx | 22 + src/components/IconStyle.tsx | 10 + src/components/IconSubdirectoryArrowLeft.tsx | 10 + src/components/IconSubdirectoryArrowRight.tsx | 10 + src/components/IconSubject.tsx | 10 + src/components/IconSubscript.tsx | 17 + src/components/IconSubscriptions.tsx | 10 + src/components/IconSubtitles.tsx | 10 + src/components/IconSubtitlesOff.tsx | 22 + src/components/IconSubway.tsx | 15 + src/components/IconSuperscript.tsx | 17 + src/components/IconSupervisedUserCircle.tsx | 10 + src/components/IconSupervisorAccount.tsx | 10 + src/components/IconSupport.tsx | 19 + src/components/IconSupportAgent.tsx | 24 + src/components/IconSurroundSound.tsx | 10 + src/components/IconSwapCalls.tsx | 10 + src/components/IconSwapHoriz.tsx | 10 + src/components/IconSwapHorizontalCircle.tsx | 10 + src/components/IconSwapVert.tsx | 10 + src/components/IconSwapVerticalCircle.tsx | 10 + src/components/IconSwitchCamera.tsx | 10 + src/components/IconSwitchLeft.tsx | 15 + src/components/IconSwitchRight.tsx | 20 + src/components/IconSwitchVideo.tsx | 10 + src/components/IconSync.tsx | 10 + src/components/IconSyncAlt.tsx | 23 + src/components/IconSyncDisabled.tsx | 10 + src/components/IconSyncProblem.tsx | 10 + src/components/IconSystemUpdate.tsx | 10 + src/components/IconSystemUpdateAlt.tsx | 10 + src/components/IconTab.tsx | 10 + src/components/IconTabUnselected.tsx | 10 + src/components/IconTableChart.tsx | 10 + src/components/IconTableRows.tsx | 17 + src/components/IconTableView.tsx | 17 + src/components/IconTablet.tsx | 10 + src/components/IconTabletAndroid.tsx | 23 + src/components/IconTabletMac.tsx | 9 + src/components/IconTagFaces.tsx | 10 + src/components/IconTapAndPlay.tsx | 10 + src/components/IconTapas.tsx | 15 + src/components/IconTerrain.tsx | 10 + src/components/IconTextFields.tsx | 23 + src/components/IconTextFormat.tsx | 10 + src/components/IconTextRotateUp.tsx | 10 + src/components/IconTextRotateVertical.tsx | 10 + src/components/IconTextRotationAngledown.tsx | 10 + src/components/IconTextRotationAngleup.tsx | 10 + src/components/IconTextRotationDown.tsx | 10 + src/components/IconTextRotationNone.tsx | 10 + src/components/IconTextSnippet.tsx | 17 + src/components/IconTextsms.tsx | 10 + src/components/IconTexture.tsx | 10 + src/components/IconTheaters.tsx | 10 + src/components/IconThumbDown.tsx | 10 + src/components/IconThumbDownAlt.tsx | 10 + src/components/IconThumbUp.tsx | 10 + src/components/IconThumbUpAlt.tsx | 10 + src/components/IconThumbsUpDown.tsx | 10 + src/components/IconTimeToLeave.tsx | 10 + src/components/IconTimelapse.tsx | 10 + src/components/IconTimeline.tsx | 23 + src/components/IconTimer.tsx | 10 + src/components/IconTimer10.tsx | 10 + src/components/IconTimer3.tsx | 10 + src/components/IconTimerOff.tsx | 13 + src/components/IconTitle.tsx | 10 + src/components/IconToc.tsx | 10 + src/components/IconToday.tsx | 10 + src/components/IconToggleOff.tsx | 10 + src/components/IconToggleOn.tsx | 10 + src/components/IconToll.tsx | 11 + src/components/IconTonality.tsx | 10 + src/components/IconTopic.tsx | 17 + src/components/IconTouchApp.tsx | 23 + src/components/IconTour.tsx | 10 + src/components/IconToys.tsx | 10 + src/components/IconTrackChanges.tsx | 10 + src/components/IconTraffic.tsx | 10 + src/components/IconTrain.tsx | 10 + src/components/IconTram.tsx | 10 + src/components/IconTransferWithinAStation.tsx | 10 + src/components/IconTransform.tsx | 10 + src/components/IconTransitEnterexit.tsx | 10 + src/components/IconTranslate.tsx | 10 + src/components/IconTrendingDown.tsx | 10 + src/components/IconTrendingFlat.tsx | 10 + src/components/IconTrendingUp.tsx | 10 + src/components/IconTripOrigin.tsx | 11 + src/components/IconTty.tsx | 17 + src/components/IconTune.tsx | 10 + src/components/IconTurnedIn.tsx | 10 + src/components/IconTurnedInNot.tsx | 10 + src/components/IconTv.tsx | 10 + src/components/IconTvOff.tsx | 10 + src/components/IconTwoWheeler.tsx | 24 + src/components/IconUmbrella.tsx | 17 + src/components/IconUnarchive.tsx | 23 + src/components/IconUndo.tsx | 10 + src/components/IconUnfoldLess.tsx | 10 + src/components/IconUnfoldMore.tsx | 10 + src/components/IconUnpublished.tsx | 15 + src/components/IconUnsubscribe.tsx | 9 + src/components/IconUpdate.tsx | 23 + src/components/IconUpdateDisabled.tsx | 17 + src/components/IconUpgrade.tsx | 17 + src/components/IconUsb.tsx | 10 + src/components/IconVerified.tsx | 19 + src/components/IconVerifiedUser.tsx | 10 + src/components/IconVerticalAlignBottom.tsx | 10 + src/components/IconVerticalAlignCenter.tsx | 10 + src/components/IconVerticalAlignTop.tsx | 10 + src/components/IconVerticalDistribute.tsx | 15 + src/components/IconVerticalSplit.tsx | 10 + src/components/IconVibration.tsx | 10 + src/components/IconVideoCall.tsx | 10 + src/components/IconVideoLabel.tsx | 10 + src/components/IconVideoLibrary.tsx | 10 + src/components/IconVideoSettings.tsx | 23 + src/components/IconVideocam.tsx | 10 + src/components/IconVideocamOff.tsx | 10 + src/components/IconVideogameAsset.tsx | 13 + src/components/IconViewAgenda.tsx | 10 + src/components/IconViewArray.tsx | 10 + src/components/IconViewCarousel.tsx | 10 + src/components/IconViewColumn.tsx | 10 + src/components/IconViewComfy.tsx | 10 + src/components/IconViewCompact.tsx | 10 + src/components/IconViewDay.tsx | 10 + src/components/IconViewHeadline.tsx | 10 + src/components/IconViewList.tsx | 10 + src/components/IconViewModule.tsx | 10 + src/components/IconViewQuilt.tsx | 10 + src/components/IconViewSidebar.tsx | 17 + src/components/IconViewStream.tsx | 10 + src/components/IconViewWeek.tsx | 10 + src/components/IconVignette.tsx | 10 + src/components/IconVisibility.tsx | 10 + src/components/IconVisibilityOff.tsx | 13 + src/components/IconVoiceChat.tsx | 10 + src/components/IconVoiceOverOff.tsx | 10 + src/components/IconVoicemail.tsx | 10 + src/components/IconVolumeDown.tsx | 10 + src/components/IconVolumeMute.tsx | 10 + src/components/IconVolumeOff.tsx | 10 + src/components/IconVolumeUp.tsx | 10 + src/components/IconVpnKey.tsx | 10 + src/components/IconVpnLock.tsx | 10 + src/components/IconWallpaper.tsx | 10 + src/components/IconWarning.tsx | 10 + src/components/IconWash.tsx | 17 + src/components/IconWatch.tsx | 10 + src/components/IconWatchLater.tsx | 23 + src/components/IconWaterDamage.tsx | 15 + src/components/IconWaves.tsx | 9 + src/components/IconWbAuto.tsx | 10 + src/components/IconWbCloudy.tsx | 10 + src/components/IconWbIncandescent.tsx | 10 + src/components/IconWbIridescent.tsx | 10 + src/components/IconWbSunny.tsx | 10 + src/components/IconWc.tsx | 10 + src/components/IconWeb.tsx | 10 + src/components/IconWebAsset.tsx | 10 + src/components/IconWeekend.tsx | 17 + src/components/IconWest.tsx | 15 + src/components/IconWhatshot.tsx | 10 + src/components/IconWheelchairPickup.tsx | 17 + src/components/IconWhereToVote.tsx | 10 + src/components/IconWidgets.tsx | 10 + src/components/IconWifi.tsx | 10 + src/components/IconWifiCalling.tsx | 22 + src/components/IconWifiLock.tsx | 10 + src/components/IconWifiOff.tsx | 13 + src/components/IconWifiProtectedSetup.tsx | 26 + src/components/IconWifiTethering.tsx | 10 + src/components/IconWineBar.tsx | 15 + src/components/IconWork.tsx | 10 + src/components/IconWorkOff.tsx | 10 + src/components/IconWorkOutline.tsx | 13 + src/components/IconWrapText.tsx | 10 + src/components/IconWrongLocation.tsx | 22 + src/components/IconWysiwyg.tsx | 17 + src/components/IconYoutubeSearchedFor.tsx | 10 + src/components/IconZoomIn.tsx | 11 + src/components/IconZoomOut.tsx | 10 + src/components/IconZoomOutMap.tsx | 23 + src/components/types.ts | 2 + src/index.ts | 2637 +++++++++++++++++ 1322 files changed, 19345 insertions(+), 1 deletion(-) create mode 100755 .githooks/pre-commit create mode 100644 .github/workflows/main.yml create mode 100644 src/components/Icon360.tsx create mode 100644 src/components/Icon3dRotation.tsx create mode 100644 src/components/Icon4k.tsx create mode 100644 src/components/Icon5g.tsx create mode 100644 src/components/Icon6FtApart.tsx create mode 100644 src/components/IconAcUnit.tsx create mode 100644 src/components/IconAccessAlarm.tsx create mode 100644 src/components/IconAccessAlarms.tsx create mode 100644 src/components/IconAccessTime.tsx create mode 100644 src/components/IconAccessibility.tsx create mode 100644 src/components/IconAccessibilityNew.tsx create mode 100644 src/components/IconAccessible.tsx create mode 100644 src/components/IconAccessibleForward.tsx create mode 100644 src/components/IconAccountBalance.tsx create mode 100644 src/components/IconAccountBalanceWallet.tsx create mode 100644 src/components/IconAccountBox.tsx create mode 100644 src/components/IconAccountCircle.tsx create mode 100644 src/components/IconAccountTree.tsx create mode 100644 src/components/IconAdUnits.tsx create mode 100644 src/components/IconAdb.tsx create mode 100644 src/components/IconAdd.tsx create mode 100644 src/components/IconAddAPhoto.tsx create mode 100644 src/components/IconAddAlarm.tsx create mode 100644 src/components/IconAddAlert.tsx create mode 100644 src/components/IconAddBox.tsx create mode 100644 src/components/IconAddBusiness.tsx create mode 100644 src/components/IconAddCircle.tsx create mode 100644 src/components/IconAddCircleOutline.tsx create mode 100644 src/components/IconAddComment.tsx create mode 100644 src/components/IconAddIcCall.tsx create mode 100644 src/components/IconAddLocation.tsx create mode 100644 src/components/IconAddLocationAlt.tsx create mode 100644 src/components/IconAddPhotoAlternate.tsx create mode 100644 src/components/IconAddRoad.tsx create mode 100644 src/components/IconAddShoppingCart.tsx create mode 100644 src/components/IconAddTask.tsx create mode 100644 src/components/IconAddToHomeScreen.tsx create mode 100644 src/components/IconAddToPhotos.tsx create mode 100644 src/components/IconAddToQueue.tsx create mode 100644 src/components/IconAddchart.tsx create mode 100644 src/components/IconAdjust.tsx create mode 100644 src/components/IconAdminPanelSettings.tsx create mode 100644 src/components/IconAgriculture.tsx create mode 100644 src/components/IconAirlineSeatFlat.tsx create mode 100644 src/components/IconAirlineSeatFlatAngled.tsx create mode 100644 src/components/IconAirlineSeatIndividualSuite.tsx create mode 100644 src/components/IconAirlineSeatLegroomExtra.tsx create mode 100644 src/components/IconAirlineSeatLegroomNormal.tsx create mode 100644 src/components/IconAirlineSeatLegroomReduced.tsx create mode 100644 src/components/IconAirlineSeatReclineExtra.tsx create mode 100644 src/components/IconAirlineSeatReclineNormal.tsx create mode 100644 src/components/IconAirplanemodeActive.tsx create mode 100644 src/components/IconAirplanemodeInactive.tsx create mode 100644 src/components/IconAirplay.tsx create mode 100644 src/components/IconAirportShuttle.tsx create mode 100644 src/components/IconAlarm.tsx create mode 100644 src/components/IconAlarmAdd.tsx create mode 100644 src/components/IconAlarmOff.tsx create mode 100644 src/components/IconAlarmOn.tsx create mode 100644 src/components/IconAlbum.tsx create mode 100644 src/components/IconAlignHorizontalCenter.tsx create mode 100644 src/components/IconAlignHorizontalLeft.tsx create mode 100644 src/components/IconAlignHorizontalRight.tsx create mode 100644 src/components/IconAlignVerticalBottom.tsx create mode 100644 src/components/IconAlignVerticalCenter.tsx create mode 100644 src/components/IconAlignVerticalTop.tsx create mode 100644 src/components/IconAllInbox.tsx create mode 100644 src/components/IconAllInclusive.tsx create mode 100644 src/components/IconAllOut.tsx create mode 100644 src/components/IconAltRoute.tsx create mode 100644 src/components/IconAlternateEmail.tsx create mode 100644 src/components/IconAmpStories.tsx create mode 100644 src/components/IconAnalytics.tsx create mode 100644 src/components/IconAnchor.tsx create mode 100644 src/components/IconAndroid.tsx create mode 100644 src/components/IconAnnouncement.tsx create mode 100644 src/components/IconApartment.tsx create mode 100644 src/components/IconApi.tsx create mode 100644 src/components/IconAppBlocking.tsx create mode 100644 src/components/IconAppSettingsAlt.tsx create mode 100644 src/components/IconApps.tsx create mode 100644 src/components/IconArchitecture.tsx create mode 100644 src/components/IconArchive.tsx create mode 100644 src/components/IconArrowBack.tsx create mode 100644 src/components/IconArrowBackIos.tsx create mode 100644 src/components/IconArrowCircleDown.tsx create mode 100644 src/components/IconArrowCircleUp.tsx create mode 100644 src/components/IconArrowDownward.tsx create mode 100644 src/components/IconArrowDropDown.tsx create mode 100644 src/components/IconArrowDropDownCircle.tsx create mode 100644 src/components/IconArrowDropUp.tsx create mode 100644 src/components/IconArrowForward.tsx create mode 100644 src/components/IconArrowForwardIos.tsx create mode 100644 src/components/IconArrowLeft.tsx create mode 100644 src/components/IconArrowRight.tsx create mode 100644 src/components/IconArrowRightAlt.tsx create mode 100644 src/components/IconArrowUpward.tsx create mode 100644 src/components/IconArtTrack.tsx create mode 100644 src/components/IconArticle.tsx create mode 100644 src/components/IconAspectRatio.tsx create mode 100644 src/components/IconAssessment.tsx create mode 100644 src/components/IconAssignment.tsx create mode 100644 src/components/IconAssignmentInd.tsx create mode 100644 src/components/IconAssignmentLate.tsx create mode 100644 src/components/IconAssignmentReturn.tsx create mode 100644 src/components/IconAssignmentReturned.tsx create mode 100644 src/components/IconAssignmentTurnedIn.tsx create mode 100644 src/components/IconAssistant.tsx create mode 100644 src/components/IconAssistantPhoto.tsx create mode 100644 src/components/IconAtm.tsx create mode 100644 src/components/IconAttachEmail.tsx create mode 100644 src/components/IconAttachFile.tsx create mode 100644 src/components/IconAttachMoney.tsx create mode 100644 src/components/IconAttachment.tsx create mode 100644 src/components/IconAudiotrack.tsx create mode 100644 src/components/IconAutoDelete.tsx create mode 100644 src/components/IconAutorenew.tsx create mode 100644 src/components/IconAvTimer.tsx create mode 100644 src/components/IconBabyChangingStation.tsx create mode 100644 src/components/IconBackpack.tsx create mode 100644 src/components/IconBackspace.tsx create mode 100644 src/components/IconBackup.tsx create mode 100644 src/components/IconBackupTable.tsx create mode 100644 src/components/IconBallot.tsx create mode 100644 src/components/IconBarChart.tsx create mode 100644 src/components/IconBatchPrediction.tsx create mode 100644 src/components/IconBathtub.tsx create mode 100644 src/components/IconBatteryAlert.tsx create mode 100644 src/components/IconBatteryChargingFull.tsx create mode 100644 src/components/IconBatteryFull.tsx create mode 100644 src/components/IconBatteryStd.tsx create mode 100644 src/components/IconBatteryUnknown.tsx create mode 100644 src/components/IconBeachAccess.tsx create mode 100644 src/components/IconBedtime.tsx create mode 100644 src/components/IconBeenhere.tsx create mode 100644 src/components/IconBento.tsx create mode 100644 src/components/IconBikeScooter.tsx create mode 100644 src/components/IconBiotech.tsx create mode 100644 src/components/IconBlock.tsx create mode 100644 src/components/IconBluetooth.tsx create mode 100644 src/components/IconBluetoothAudio.tsx create mode 100644 src/components/IconBluetoothConnected.tsx create mode 100644 src/components/IconBluetoothDisabled.tsx create mode 100644 src/components/IconBluetoothSearching.tsx create mode 100644 src/components/IconBlurCircular.tsx create mode 100644 src/components/IconBlurLinear.tsx create mode 100644 src/components/IconBlurOff.tsx create mode 100644 src/components/IconBlurOn.tsx create mode 100644 src/components/IconBook.tsx create mode 100644 src/components/IconBookOnline.tsx create mode 100644 src/components/IconBookmark.tsx create mode 100644 src/components/IconBookmarkBorder.tsx create mode 100644 src/components/IconBookmarks.tsx create mode 100644 src/components/IconBorderAll.tsx create mode 100644 src/components/IconBorderBottom.tsx create mode 100644 src/components/IconBorderClear.tsx create mode 100644 src/components/IconBorderHorizontal.tsx create mode 100644 src/components/IconBorderInner.tsx create mode 100644 src/components/IconBorderLeft.tsx create mode 100644 src/components/IconBorderOuter.tsx create mode 100644 src/components/IconBorderRight.tsx create mode 100644 src/components/IconBorderStyle.tsx create mode 100644 src/components/IconBorderTop.tsx create mode 100644 src/components/IconBorderVertical.tsx create mode 100644 src/components/IconBrandingWatermark.tsx create mode 100644 src/components/IconBrightness1.tsx create mode 100644 src/components/IconBrightness2.tsx create mode 100644 src/components/IconBrightness3.tsx create mode 100644 src/components/IconBrightness4.tsx create mode 100644 src/components/IconBrightness5.tsx create mode 100644 src/components/IconBrightness6.tsx create mode 100644 src/components/IconBrightness7.tsx create mode 100644 src/components/IconBrightnessAuto.tsx create mode 100644 src/components/IconBrightnessHigh.tsx create mode 100644 src/components/IconBrightnessLow.tsx create mode 100644 src/components/IconBrightnessMedium.tsx create mode 100644 src/components/IconBrokenImage.tsx create mode 100644 src/components/IconBrowserNotSupported.tsx create mode 100644 src/components/IconBrush.tsx create mode 100644 src/components/IconBubbleChart.tsx create mode 100644 src/components/IconBugReport.tsx create mode 100644 src/components/IconBuild.tsx create mode 100644 src/components/IconBuildCircle.tsx create mode 100644 src/components/IconBurstMode.tsx create mode 100644 src/components/IconBusiness.tsx create mode 100644 src/components/IconBusinessCenter.tsx create mode 100644 src/components/IconCached.tsx create mode 100644 src/components/IconCake.tsx create mode 100644 src/components/IconCalculate.tsx create mode 100644 src/components/IconCalendarToday.tsx create mode 100644 src/components/IconCalendarViewDay.tsx create mode 100644 src/components/IconCall.tsx create mode 100644 src/components/IconCallEnd.tsx create mode 100644 src/components/IconCallMade.tsx create mode 100644 src/components/IconCallMerge.tsx create mode 100644 src/components/IconCallMissed.tsx create mode 100644 src/components/IconCallMissedOutgoing.tsx create mode 100644 src/components/IconCallReceived.tsx create mode 100644 src/components/IconCallSplit.tsx create mode 100644 src/components/IconCallToAction.tsx create mode 100644 src/components/IconCamera.tsx create mode 100644 src/components/IconCameraAlt.tsx create mode 100644 src/components/IconCameraEnhance.tsx create mode 100644 src/components/IconCameraFront.tsx create mode 100644 src/components/IconCameraRear.tsx create mode 100644 src/components/IconCameraRoll.tsx create mode 100644 src/components/IconCampaign.tsx create mode 100644 src/components/IconCancel.tsx create mode 100644 src/components/IconCancelPresentation.tsx create mode 100644 src/components/IconCancelScheduleSend.tsx create mode 100644 src/components/IconCardGiftcard.tsx create mode 100644 src/components/IconCardMembership.tsx create mode 100644 src/components/IconCardTravel.tsx create mode 100644 src/components/IconCarpenter.tsx create mode 100644 src/components/IconCasino.tsx create mode 100644 src/components/IconCast.tsx create mode 100644 src/components/IconCastConnected.tsx create mode 100644 src/components/IconCastForEducation.tsx create mode 100644 src/components/IconCategory.tsx create mode 100644 src/components/IconCenterFocusStrong.tsx create mode 100644 src/components/IconCenterFocusWeak.tsx create mode 100644 src/components/IconChangeHistory.tsx create mode 100644 src/components/IconChargingStation.tsx create mode 100644 src/components/IconChat.tsx create mode 100644 src/components/IconChatBubble.tsx create mode 100644 src/components/IconChatBubbleOutline.tsx create mode 100644 src/components/IconCheck.tsx create mode 100644 src/components/IconCheckBox.tsx create mode 100644 src/components/IconCheckBoxOutlineBlank.tsx create mode 100644 src/components/IconCheckCircle.tsx create mode 100644 src/components/IconCheckCircleOutline.tsx create mode 100644 src/components/IconCheckroom.tsx create mode 100644 src/components/IconChevronLeft.tsx create mode 100644 src/components/IconChevronRight.tsx create mode 100644 src/components/IconChildCare.tsx create mode 100644 src/components/IconChildFriendly.tsx create mode 100644 src/components/IconChromeReaderMode.tsx create mode 100644 src/components/IconClass.tsx create mode 100644 src/components/IconCleanHands.tsx create mode 100644 src/components/IconCleaningServices.tsx create mode 100644 src/components/IconClear.tsx create mode 100644 src/components/IconClearAll.tsx create mode 100644 src/components/IconClose.tsx create mode 100644 src/components/IconCloseFullscreen.tsx create mode 100644 src/components/IconClosedCaption.tsx create mode 100644 src/components/IconClosedCaptionDisabled.tsx create mode 100644 src/components/IconCloud.tsx create mode 100644 src/components/IconCloudCircle.tsx create mode 100644 src/components/IconCloudDone.tsx create mode 100644 src/components/IconCloudDownload.tsx create mode 100644 src/components/IconCloudOff.tsx create mode 100644 src/components/IconCloudQueue.tsx create mode 100644 src/components/IconCloudUpload.tsx create mode 100644 src/components/IconCode.tsx create mode 100644 src/components/IconCollections.tsx create mode 100644 src/components/IconCollectionsBookmark.tsx create mode 100644 src/components/IconColorLens.tsx create mode 100644 src/components/IconColorize.tsx create mode 100644 src/components/IconComment.tsx create mode 100644 src/components/IconCommentBank.tsx create mode 100644 src/components/IconCommute.tsx create mode 100644 src/components/IconCompare.tsx create mode 100644 src/components/IconCompareArrows.tsx create mode 100644 src/components/IconCompassCalibration.tsx create mode 100644 src/components/IconComputer.tsx create mode 100644 src/components/IconConfirmationNumber.tsx create mode 100644 src/components/IconConnectWithoutContact.tsx create mode 100644 src/components/IconConstruction.tsx create mode 100644 src/components/IconContactMail.tsx create mode 100644 src/components/IconContactPage.tsx create mode 100644 src/components/IconContactPhone.tsx create mode 100644 src/components/IconContactSupport.tsx create mode 100644 src/components/IconContactless.tsx create mode 100644 src/components/IconContacts.tsx create mode 100644 src/components/IconContentCopy.tsx create mode 100644 src/components/IconContentCut.tsx create mode 100644 src/components/IconContentPaste.tsx create mode 100644 src/components/IconControlCamera.tsx create mode 100644 src/components/IconControlPoint.tsx create mode 100644 src/components/IconControlPointDuplicate.tsx create mode 100644 src/components/IconCopyright.tsx create mode 100644 src/components/IconCoronavirus.tsx create mode 100644 src/components/IconCorporateFare.tsx create mode 100644 src/components/IconCountertops.tsx create mode 100644 src/components/IconCreate.tsx create mode 100644 src/components/IconCreateNewFolder.tsx create mode 100644 src/components/IconCreditCard.tsx create mode 100644 src/components/IconCrop.tsx create mode 100644 src/components/IconCrop169.tsx create mode 100644 src/components/IconCrop32.tsx create mode 100644 src/components/IconCrop54.tsx create mode 100644 src/components/IconCrop75.tsx create mode 100644 src/components/IconCropDin.tsx create mode 100644 src/components/IconCropFree.tsx create mode 100644 src/components/IconCropLandscape.tsx create mode 100644 src/components/IconCropOriginal.tsx create mode 100644 src/components/IconCropPortrait.tsx create mode 100644 src/components/IconCropRotate.tsx create mode 100644 src/components/IconCropSquare.tsx create mode 100644 src/components/IconDashboard.tsx create mode 100644 src/components/IconDataUsage.tsx create mode 100644 src/components/IconDateRange.tsx create mode 100644 src/components/IconDeck.tsx create mode 100644 src/components/IconDehaze.tsx create mode 100644 src/components/IconDelete.tsx create mode 100644 src/components/IconDeleteForever.tsx create mode 100644 src/components/IconDeleteOutline.tsx create mode 100644 src/components/IconDeleteSweep.tsx create mode 100644 src/components/IconDepartureBoard.tsx create mode 100644 src/components/IconDescription.tsx create mode 100644 src/components/IconDesignServices.tsx create mode 100644 src/components/IconDesktopAccessDisabled.tsx create mode 100644 src/components/IconDesktopMac.tsx create mode 100644 src/components/IconDesktopWindows.tsx create mode 100644 src/components/IconDetails.tsx create mode 100644 src/components/IconDeveloperBoard.tsx create mode 100644 src/components/IconDeveloperMode.tsx create mode 100644 src/components/IconDeviceHub.tsx create mode 100644 src/components/IconDeviceUnknown.tsx create mode 100644 src/components/IconDevices.tsx create mode 100644 src/components/IconDevicesOther.tsx create mode 100644 src/components/IconDialerSip.tsx create mode 100644 src/components/IconDialpad.tsx create mode 100644 src/components/IconDirections.tsx create mode 100644 src/components/IconDirectionsBike.tsx create mode 100644 src/components/IconDirectionsBoat.tsx create mode 100644 src/components/IconDirectionsBus.tsx create mode 100644 src/components/IconDirectionsCar.tsx create mode 100644 src/components/IconDirectionsOff.tsx create mode 100644 src/components/IconDirectionsRailway.tsx create mode 100644 src/components/IconDirectionsRun.tsx create mode 100644 src/components/IconDirectionsSubway.tsx create mode 100644 src/components/IconDirectionsTransit.tsx create mode 100644 src/components/IconDirectionsWalk.tsx create mode 100644 src/components/IconDisabledByDefault.tsx create mode 100644 src/components/IconDiscFull.tsx create mode 100644 src/components/IconDns.tsx create mode 100644 src/components/IconDoNotStep.tsx create mode 100644 src/components/IconDoNotTouch.tsx create mode 100644 src/components/IconDock.tsx create mode 100644 src/components/IconDomain.tsx create mode 100644 src/components/IconDomainDisabled.tsx create mode 100644 src/components/IconDomainVerification.tsx create mode 100644 src/components/IconDone.tsx create mode 100644 src/components/IconDoneAll.tsx create mode 100644 src/components/IconDoneOutline.tsx create mode 100644 src/components/IconDonutLarge.tsx create mode 100644 src/components/IconDonutSmall.tsx create mode 100644 src/components/IconDoubleArrow.tsx create mode 100644 src/components/IconDrafts.tsx create mode 100644 src/components/IconDragHandle.tsx create mode 100644 src/components/IconDragIndicator.tsx create mode 100644 src/components/IconDriveEta.tsx create mode 100644 src/components/IconDry.tsx create mode 100644 src/components/IconDuo.tsx create mode 100644 src/components/IconDvr.tsx create mode 100644 src/components/IconDynamicFeed.tsx create mode 100644 src/components/IconDynamicForm.tsx create mode 100644 src/components/IconEast.tsx create mode 100644 src/components/IconEco.tsx create mode 100644 src/components/IconEdit.tsx create mode 100644 src/components/IconEditAttributes.tsx create mode 100644 src/components/IconEditLocation.tsx create mode 100644 src/components/IconEditRoad.tsx create mode 100644 src/components/IconEject.tsx create mode 100644 src/components/IconElderly.tsx create mode 100644 src/components/IconElectricBike.tsx create mode 100644 src/components/IconElectricCar.tsx create mode 100644 src/components/IconElectricMoped.tsx create mode 100644 src/components/IconElectricScooter.tsx create mode 100644 src/components/IconElectricalServices.tsx create mode 100644 src/components/IconElevator.tsx create mode 100644 src/components/IconEmail.tsx create mode 100644 src/components/IconEmojiEmotions.tsx create mode 100644 src/components/IconEmojiEvents.tsx create mode 100644 src/components/IconEmojiFlags.tsx create mode 100644 src/components/IconEmojiFoodBeverage.tsx create mode 100644 src/components/IconEmojiNature.tsx create mode 100644 src/components/IconEmojiObjects.tsx create mode 100644 src/components/IconEmojiPeople.tsx create mode 100644 src/components/IconEmojiSymbols.tsx create mode 100644 src/components/IconEmojiTransportation.tsx create mode 100644 src/components/IconEngineering.tsx create mode 100644 src/components/IconEnhancedEncryption.tsx create mode 100644 src/components/IconEqualizer.tsx create mode 100644 src/components/IconError.tsx create mode 100644 src/components/IconErrorOutline.tsx create mode 100644 src/components/IconEscalator.tsx create mode 100644 src/components/IconEscalatorWarning.tsx create mode 100644 src/components/IconEuro.tsx create mode 100644 src/components/IconEuroSymbol.tsx create mode 100644 src/components/IconEvStation.tsx create mode 100644 src/components/IconEvent.tsx create mode 100644 src/components/IconEventAvailable.tsx create mode 100644 src/components/IconEventBusy.tsx create mode 100644 src/components/IconEventNote.tsx create mode 100644 src/components/IconEventSeat.tsx create mode 100644 src/components/IconExitToApp.tsx create mode 100644 src/components/IconExpandLess.tsx create mode 100644 src/components/IconExpandMore.tsx create mode 100644 src/components/IconExplicit.tsx create mode 100644 src/components/IconExplore.tsx create mode 100644 src/components/IconExploreOff.tsx create mode 100644 src/components/IconExposure.tsx create mode 100644 src/components/IconExposureNeg1.tsx create mode 100644 src/components/IconExposureNeg2.tsx create mode 100644 src/components/IconExposurePlus1.tsx create mode 100644 src/components/IconExposurePlus2.tsx create mode 100644 src/components/IconExposureZero.tsx create mode 100644 src/components/IconExtension.tsx create mode 100644 src/components/IconFace.tsx create mode 100644 src/components/IconFacebook.tsx create mode 100644 src/components/IconFactCheck.tsx create mode 100644 src/components/IconFamilyRestroom.tsx create mode 100644 src/components/IconFastForward.tsx create mode 100644 src/components/IconFastRewind.tsx create mode 100644 src/components/IconFastfood.tsx create mode 100644 src/components/IconFavorite.tsx create mode 100644 src/components/IconFavoriteBorder.tsx create mode 100644 src/components/IconFeaturedPlayList.tsx create mode 100644 src/components/IconFeaturedVideo.tsx create mode 100644 src/components/IconFeedback.tsx create mode 100644 src/components/IconFence.tsx create mode 100644 src/components/IconFiberDvr.tsx create mode 100644 src/components/IconFiberManualRecord.tsx create mode 100644 src/components/IconFiberNew.tsx create mode 100644 src/components/IconFiberPin.tsx create mode 100644 src/components/IconFiberSmartRecord.tsx create mode 100644 src/components/IconFileCopy.tsx create mode 100644 src/components/IconFilter.tsx create mode 100644 src/components/IconFilter1.tsx create mode 100644 src/components/IconFilter2.tsx create mode 100644 src/components/IconFilter3.tsx create mode 100644 src/components/IconFilter4.tsx create mode 100644 src/components/IconFilter5.tsx create mode 100644 src/components/IconFilter6.tsx create mode 100644 src/components/IconFilter7.tsx create mode 100644 src/components/IconFilter8.tsx create mode 100644 src/components/IconFilter9.tsx create mode 100644 src/components/IconFilter9Plus.tsx create mode 100644 src/components/IconFilterAlt.tsx create mode 100644 src/components/IconFilterBAndW.tsx create mode 100644 src/components/IconFilterCenterFocus.tsx create mode 100644 src/components/IconFilterDrama.tsx create mode 100644 src/components/IconFilterFrames.tsx create mode 100644 src/components/IconFilterHdr.tsx create mode 100644 src/components/IconFilterList.tsx create mode 100644 src/components/IconFilterNone.tsx create mode 100644 src/components/IconFilterTiltShift.tsx create mode 100644 src/components/IconFilterVintage.tsx create mode 100644 src/components/IconFindInPage.tsx create mode 100644 src/components/IconFindReplace.tsx create mode 100644 src/components/IconFingerprint.tsx create mode 100644 src/components/IconFireExtinguisher.tsx create mode 100644 src/components/IconFireplace.tsx create mode 100644 src/components/IconFirstPage.tsx create mode 100644 src/components/IconFitnessCenter.tsx create mode 100644 src/components/IconFlag.tsx create mode 100644 src/components/IconFlaky.tsx create mode 100644 src/components/IconFlare.tsx create mode 100644 src/components/IconFlashAuto.tsx create mode 100644 src/components/IconFlashOff.tsx create mode 100644 src/components/IconFlashOn.tsx create mode 100644 src/components/IconFlight.tsx create mode 100644 src/components/IconFlightLand.tsx create mode 100644 src/components/IconFlightTakeoff.tsx create mode 100644 src/components/IconFlip.tsx create mode 100644 src/components/IconFlipCameraAndroid.tsx create mode 100644 src/components/IconFlipCameraIos.tsx create mode 100644 src/components/IconFlipToBack.tsx create mode 100644 src/components/IconFlipToFront.tsx create mode 100644 src/components/IconFolder.tsx create mode 100644 src/components/IconFolderOpen.tsx create mode 100644 src/components/IconFolderShared.tsx create mode 100644 src/components/IconFolderSpecial.tsx create mode 100644 src/components/IconFollowTheSigns.tsx create mode 100644 src/components/IconFontDownload.tsx create mode 100644 src/components/IconFoodBank.tsx create mode 100644 src/components/IconFormatAlignCenter.tsx create mode 100644 src/components/IconFormatAlignJustify.tsx create mode 100644 src/components/IconFormatAlignLeft.tsx create mode 100644 src/components/IconFormatAlignRight.tsx create mode 100644 src/components/IconFormatBold.tsx create mode 100644 src/components/IconFormatClear.tsx create mode 100644 src/components/IconFormatColorReset.tsx create mode 100644 src/components/IconFormatIndentDecrease.tsx create mode 100644 src/components/IconFormatIndentIncrease.tsx create mode 100644 src/components/IconFormatItalic.tsx create mode 100644 src/components/IconFormatLineSpacing.tsx create mode 100644 src/components/IconFormatListBulleted.tsx create mode 100644 src/components/IconFormatListNumbered.tsx create mode 100644 src/components/IconFormatListNumberedRtl.tsx create mode 100644 src/components/IconFormatPaint.tsx create mode 100644 src/components/IconFormatQuote.tsx create mode 100644 src/components/IconFormatShapes.tsx create mode 100644 src/components/IconFormatSize.tsx create mode 100644 src/components/IconFormatStrikethrough.tsx create mode 100644 src/components/IconFormatTextdirectionLToR.tsx create mode 100644 src/components/IconFormatTextdirectionRToL.tsx create mode 100644 src/components/IconFormatUnderlined.tsx create mode 100644 src/components/IconForum.tsx create mode 100644 src/components/IconForward.tsx create mode 100644 src/components/IconForward10.tsx create mode 100644 src/components/IconForward30.tsx create mode 100644 src/components/IconForward5.tsx create mode 100644 src/components/IconForwardToInbox.tsx create mode 100644 src/components/IconFoundation.tsx create mode 100644 src/components/IconFreeBreakfast.tsx create mode 100644 src/components/IconFullscreen.tsx create mode 100644 src/components/IconFullscreenExit.tsx create mode 100644 src/components/IconFunctions.tsx create mode 100644 src/components/IconGTranslate.tsx create mode 100644 src/components/IconGamepad.tsx create mode 100644 src/components/IconGames.tsx create mode 100644 src/components/IconGavel.tsx create mode 100644 src/components/IconGesture.tsx create mode 100644 src/components/IconGetApp.tsx create mode 100644 src/components/IconGif.tsx create mode 100644 src/components/IconGolfCourse.tsx create mode 100644 src/components/IconGpsFixed.tsx create mode 100644 src/components/IconGpsNotFixed.tsx create mode 100644 src/components/IconGpsOff.tsx create mode 100644 src/components/IconGrade.tsx create mode 100644 src/components/IconGradient.tsx create mode 100644 src/components/IconGrading.tsx create mode 100644 src/components/IconGrain.tsx create mode 100644 src/components/IconGraphicEq.tsx create mode 100644 src/components/IconGrass.tsx create mode 100644 src/components/IconGridOff.tsx create mode 100644 src/components/IconGridOn.tsx create mode 100644 src/components/IconGroup.tsx create mode 100644 src/components/IconGroupAdd.tsx create mode 100644 src/components/IconGroupWork.tsx create mode 100644 src/components/IconGroups.tsx create mode 100644 src/components/IconHandyman.tsx create mode 100644 src/components/IconHd.tsx create mode 100644 src/components/IconHdrOff.tsx create mode 100644 src/components/IconHdrOn.tsx create mode 100644 src/components/IconHdrStrong.tsx create mode 100644 src/components/IconHdrWeak.tsx create mode 100644 src/components/IconHeadset.tsx create mode 100644 src/components/IconHeadsetMic.tsx create mode 100644 src/components/IconHealing.tsx create mode 100644 src/components/IconHearing.tsx create mode 100644 src/components/IconHearingDisabled.tsx create mode 100644 src/components/IconHeight.tsx create mode 100644 src/components/IconHelp.tsx create mode 100644 src/components/IconHelpCenter.tsx create mode 100644 src/components/IconHelpOutline.tsx create mode 100644 src/components/IconHighQuality.tsx create mode 100644 src/components/IconHighlight.tsx create mode 100644 src/components/IconHighlightAlt.tsx create mode 100644 src/components/IconHighlightOff.tsx create mode 100644 src/components/IconHistory.tsx create mode 100644 src/components/IconHistoryEdu.tsx create mode 100644 src/components/IconHistoryToggleOff.tsx create mode 100644 src/components/IconHome.tsx create mode 100644 src/components/IconHomeRepairService.tsx create mode 100644 src/components/IconHomeWork.tsx create mode 100644 src/components/IconHorizontalDistribute.tsx create mode 100644 src/components/IconHorizontalRule.tsx create mode 100644 src/components/IconHorizontalSplit.tsx create mode 100644 src/components/IconHotTub.tsx create mode 100644 src/components/IconHotel.tsx create mode 100644 src/components/IconHourglassBottom.tsx create mode 100644 src/components/IconHourglassDisabled.tsx create mode 100644 src/components/IconHourglassEmpty.tsx create mode 100644 src/components/IconHourglassFull.tsx create mode 100644 src/components/IconHourglassTop.tsx create mode 100644 src/components/IconHouse.tsx create mode 100644 src/components/IconHouseSiding.tsx create mode 100644 src/components/IconHowToReg.tsx create mode 100644 src/components/IconHowToVote.tsx create mode 100644 src/components/IconHttp.tsx create mode 100644 src/components/IconHttps.tsx create mode 100644 src/components/IconHvac.tsx create mode 100644 src/components/IconImage.tsx create mode 100644 src/components/IconImageAspectRatio.tsx create mode 100644 src/components/IconImageNotSupported.tsx create mode 100644 src/components/IconImageSearch.tsx create mode 100644 src/components/IconImportContacts.tsx create mode 100644 src/components/IconImportExport.tsx create mode 100644 src/components/IconImportantDevices.tsx create mode 100644 src/components/IconInbox.tsx create mode 100644 src/components/IconIndeterminateCheckBox.tsx create mode 100644 src/components/IconInfo.tsx create mode 100644 src/components/IconInput.tsx create mode 100644 src/components/IconInsertChart.tsx create mode 100644 src/components/IconInsertChartOutlined.tsx create mode 100644 src/components/IconInsertComment.tsx create mode 100644 src/components/IconInsertDriveFile.tsx create mode 100644 src/components/IconInsertEmoticon.tsx create mode 100644 src/components/IconInsertInvitation.tsx create mode 100644 src/components/IconInsertLink.tsx create mode 100644 src/components/IconInsertPhoto.tsx create mode 100644 src/components/IconInsights.tsx create mode 100644 src/components/IconIntegrationInstructions.tsx create mode 100644 src/components/IconInvertColors.tsx create mode 100644 src/components/IconInvertColorsOff.tsx create mode 100644 src/components/IconIso.tsx create mode 100644 src/components/IconKeyboard.tsx create mode 100644 src/components/IconKeyboardArrowDown.tsx create mode 100644 src/components/IconKeyboardArrowLeft.tsx create mode 100644 src/components/IconKeyboardArrowRight.tsx create mode 100644 src/components/IconKeyboardArrowUp.tsx create mode 100644 src/components/IconKeyboardBackspace.tsx create mode 100644 src/components/IconKeyboardCapslock.tsx create mode 100644 src/components/IconKeyboardHide.tsx create mode 100644 src/components/IconKeyboardReturn.tsx create mode 100644 src/components/IconKeyboardTab.tsx create mode 100644 src/components/IconKeyboardVoice.tsx create mode 100644 src/components/IconKingBed.tsx create mode 100644 src/components/IconKitchen.tsx create mode 100644 src/components/IconLabel.tsx create mode 100644 src/components/IconLabelImportant.tsx create mode 100644 src/components/IconLabelOff.tsx create mode 100644 src/components/IconLandscape.tsx create mode 100644 src/components/IconLanguage.tsx create mode 100644 src/components/IconLaptop.tsx create mode 100644 src/components/IconLaptopChromebook.tsx create mode 100644 src/components/IconLaptopMac.tsx create mode 100644 src/components/IconLaptopWindows.tsx create mode 100644 src/components/IconLastPage.tsx create mode 100644 src/components/IconLaunch.tsx create mode 100644 src/components/IconLayers.tsx create mode 100644 src/components/IconLayersClear.tsx create mode 100644 src/components/IconLeaderboard.tsx create mode 100644 src/components/IconLeakAdd.tsx create mode 100644 src/components/IconLeakRemove.tsx create mode 100644 src/components/IconLegendToggle.tsx create mode 100644 src/components/IconLens.tsx create mode 100644 src/components/IconLibraryAdd.tsx create mode 100644 src/components/IconLibraryAddCheck.tsx create mode 100644 src/components/IconLibraryBooks.tsx create mode 100644 src/components/IconLibraryMusic.tsx create mode 100644 src/components/IconLineStyle.tsx create mode 100644 src/components/IconLineWeight.tsx create mode 100644 src/components/IconLinearScale.tsx create mode 100644 src/components/IconLink.tsx create mode 100644 src/components/IconLinkOff.tsx create mode 100644 src/components/IconLinkedCamera.tsx create mode 100644 src/components/IconList.tsx create mode 100644 src/components/IconListAlt.tsx create mode 100644 src/components/IconLiveHelp.tsx create mode 100644 src/components/IconLiveTv.tsx create mode 100644 src/components/IconLocalActivity.tsx create mode 100644 src/components/IconLocalAirport.tsx create mode 100644 src/components/IconLocalAtm.tsx create mode 100644 src/components/IconLocalBar.tsx create mode 100644 src/components/IconLocalCafe.tsx create mode 100644 src/components/IconLocalCarWash.tsx create mode 100644 src/components/IconLocalConvenienceStore.tsx create mode 100644 src/components/IconLocalDining.tsx create mode 100644 src/components/IconLocalDrink.tsx create mode 100644 src/components/IconLocalFireDepartment.tsx create mode 100644 src/components/IconLocalFlorist.tsx create mode 100644 src/components/IconLocalGasStation.tsx create mode 100644 src/components/IconLocalGroceryStore.tsx create mode 100644 src/components/IconLocalHospital.tsx create mode 100644 src/components/IconLocalHotel.tsx create mode 100644 src/components/IconLocalLaundryService.tsx create mode 100644 src/components/IconLocalLibrary.tsx create mode 100644 src/components/IconLocalMall.tsx create mode 100644 src/components/IconLocalMovies.tsx create mode 100644 src/components/IconLocalOffer.tsx create mode 100644 src/components/IconLocalParking.tsx create mode 100644 src/components/IconLocalPharmacy.tsx create mode 100644 src/components/IconLocalPhone.tsx create mode 100644 src/components/IconLocalPizza.tsx create mode 100644 src/components/IconLocalPlay.tsx create mode 100644 src/components/IconLocalPolice.tsx create mode 100644 src/components/IconLocalPostOffice.tsx create mode 100644 src/components/IconLocalPrintshop.tsx create mode 100644 src/components/IconLocalSee.tsx create mode 100644 src/components/IconLocalShipping.tsx create mode 100644 src/components/IconLocalTaxi.tsx create mode 100644 src/components/IconLocationCity.tsx create mode 100644 src/components/IconLocationDisabled.tsx create mode 100644 src/components/IconLocationOff.tsx create mode 100644 src/components/IconLocationOn.tsx create mode 100644 src/components/IconLocationSearching.tsx create mode 100644 src/components/IconLock.tsx create mode 100644 src/components/IconLockOpen.tsx create mode 100644 src/components/IconLogin.tsx create mode 100644 src/components/IconLooks.tsx create mode 100644 src/components/IconLooks3.tsx create mode 100644 src/components/IconLooks4.tsx create mode 100644 src/components/IconLooks5.tsx create mode 100644 src/components/IconLooks6.tsx create mode 100644 src/components/IconLooksOne.tsx create mode 100644 src/components/IconLooksTwo.tsx create mode 100644 src/components/IconLoop.tsx create mode 100644 src/components/IconLoupe.tsx create mode 100644 src/components/IconLowPriority.tsx create mode 100644 src/components/IconLoyalty.tsx create mode 100644 src/components/IconLuggage.tsx create mode 100644 src/components/IconMail.tsx create mode 100644 src/components/IconMailOutline.tsx create mode 100644 src/components/IconMap.tsx create mode 100644 src/components/IconMapsUgc.tsx create mode 100644 src/components/IconMarkChatRead.tsx create mode 100644 src/components/IconMarkChatUnread.tsx create mode 100644 src/components/IconMarkEmailRead.tsx create mode 100644 src/components/IconMarkEmailUnread.tsx create mode 100644 src/components/IconMarkunread.tsx create mode 100644 src/components/IconMarkunreadMailbox.tsx create mode 100644 src/components/IconMasks.tsx create mode 100644 src/components/IconMaximize.tsx create mode 100644 src/components/IconMediation.tsx create mode 100644 src/components/IconMedicalServices.tsx create mode 100644 src/components/IconMeetingRoom.tsx create mode 100644 src/components/IconMemory.tsx create mode 100644 src/components/IconMenu.tsx create mode 100644 src/components/IconMenuBook.tsx create mode 100644 src/components/IconMenuOpen.tsx create mode 100644 src/components/IconMergeType.tsx create mode 100644 src/components/IconMessage.tsx create mode 100644 src/components/IconMic.tsx create mode 100644 src/components/IconMicNone.tsx create mode 100644 src/components/IconMicOff.tsx create mode 100644 src/components/IconMicrowave.tsx create mode 100644 src/components/IconMilitaryTech.tsx create mode 100644 src/components/IconMinimize.tsx create mode 100644 src/components/IconMiscellaneousServices.tsx create mode 100644 src/components/IconMissedVideoCall.tsx create mode 100644 src/components/IconMms.tsx create mode 100644 src/components/IconMobileFriendly.tsx create mode 100644 src/components/IconMobileOff.tsx create mode 100644 src/components/IconMobileScreenShare.tsx create mode 100644 src/components/IconModeComment.tsx create mode 100644 src/components/IconModelTraining.tsx create mode 100644 src/components/IconMonetizationOn.tsx create mode 100644 src/components/IconMoney.tsx create mode 100644 src/components/IconMoneyOff.tsx create mode 100644 src/components/IconMonochromePhotos.tsx create mode 100644 src/components/IconMood.tsx create mode 100644 src/components/IconMoodBad.tsx create mode 100644 src/components/IconMoped.tsx create mode 100644 src/components/IconMore.tsx create mode 100644 src/components/IconMoreHoriz.tsx create mode 100644 src/components/IconMoreTime.tsx create mode 100644 src/components/IconMoreVert.tsx create mode 100644 src/components/IconMotionPhotosOn.tsx create mode 100644 src/components/IconMotionPhotosPause.tsx create mode 100644 src/components/IconMotionPhotosPaused.tsx create mode 100644 src/components/IconMouse.tsx create mode 100644 src/components/IconMoveToInbox.tsx create mode 100644 src/components/IconMovie.tsx create mode 100644 src/components/IconMovieCreation.tsx create mode 100644 src/components/IconMovieFilter.tsx create mode 100644 src/components/IconMultilineChart.tsx create mode 100644 src/components/IconMultipleStop.tsx create mode 100644 src/components/IconMuseum.tsx create mode 100644 src/components/IconMusicNote.tsx create mode 100644 src/components/IconMusicOff.tsx create mode 100644 src/components/IconMusicVideo.tsx create mode 100644 src/components/IconMyLocation.tsx create mode 100644 src/components/IconNat.tsx create mode 100644 src/components/IconNature.tsx create mode 100644 src/components/IconNaturePeople.tsx create mode 100644 src/components/IconNavigateBefore.tsx create mode 100644 src/components/IconNavigateNext.tsx create mode 100644 src/components/IconNavigation.tsx create mode 100644 src/components/IconNearMe.tsx create mode 100644 src/components/IconNearMeDisabled.tsx create mode 100644 src/components/IconNetworkCheck.tsx create mode 100644 src/components/IconNetworkLocked.tsx create mode 100644 src/components/IconNewReleases.tsx create mode 100644 src/components/IconNextPlan.tsx create mode 100644 src/components/IconNextWeek.tsx create mode 100644 src/components/IconNfc.tsx create mode 100644 src/components/IconNightShelter.tsx create mode 100644 src/components/IconNightsStay.tsx create mode 100644 src/components/IconNoBackpack.tsx create mode 100644 src/components/IconNoCell.tsx create mode 100644 src/components/IconNoDrinks.tsx create mode 100644 src/components/IconNoEncryption.tsx create mode 100644 src/components/IconNoFlash.tsx create mode 100644 src/components/IconNoFood.tsx create mode 100644 src/components/IconNoLuggage.tsx create mode 100644 src/components/IconNoMeals.tsx create mode 100644 src/components/IconNoMeetingRoom.tsx create mode 100644 src/components/IconNoPhotography.tsx create mode 100644 src/components/IconNoSim.tsx create mode 100644 src/components/IconNoStroller.tsx create mode 100644 src/components/IconNoTransfer.tsx create mode 100644 src/components/IconNorth.tsx create mode 100644 src/components/IconNorthEast.tsx create mode 100644 src/components/IconNorthWest.tsx create mode 100644 src/components/IconNotAccessible.tsx create mode 100644 src/components/IconNotInterested.tsx create mode 100644 src/components/IconNotListedLocation.tsx create mode 100644 src/components/IconNotStarted.tsx create mode 100644 src/components/IconNote.tsx create mode 100644 src/components/IconNoteAdd.tsx create mode 100644 src/components/IconNotes.tsx create mode 100644 src/components/IconNotificationImportant.tsx create mode 100644 src/components/IconNotifications.tsx create mode 100644 src/components/IconNotificationsActive.tsx create mode 100644 src/components/IconNotificationsNone.tsx create mode 100644 src/components/IconNotificationsOff.tsx create mode 100644 src/components/IconNotificationsPaused.tsx create mode 100644 src/components/IconOfflineBolt.tsx create mode 100644 src/components/IconOfflinePin.tsx create mode 100644 src/components/IconOndemandVideo.tsx create mode 100644 src/components/IconOnlinePrediction.tsx create mode 100644 src/components/IconOpacity.tsx create mode 100644 src/components/IconOpenInBrowser.tsx create mode 100644 src/components/IconOpenInFull.tsx create mode 100644 src/components/IconOpenInNew.tsx create mode 100644 src/components/IconOpenWith.tsx create mode 100644 src/components/IconOutbond.tsx create mode 100644 src/components/IconOutdoorGrill.tsx create mode 100644 src/components/IconOutlet.tsx create mode 100644 src/components/IconOutlinedFlag.tsx create mode 100644 src/components/IconPages.tsx create mode 100644 src/components/IconPageview.tsx create mode 100644 src/components/IconPalette.tsx create mode 100644 src/components/IconPanTool.tsx create mode 100644 src/components/IconPanorama.tsx create mode 100644 src/components/IconPanoramaFishEye.tsx create mode 100644 src/components/IconPanoramaHorizontal.tsx create mode 100644 src/components/IconPanoramaVertical.tsx create mode 100644 src/components/IconPanoramaWideAngle.tsx create mode 100644 src/components/IconPartyMode.tsx create mode 100644 src/components/IconPause.tsx create mode 100644 src/components/IconPauseCircleFilled.tsx create mode 100644 src/components/IconPauseCircleOutline.tsx create mode 100644 src/components/IconPausePresentation.tsx create mode 100644 src/components/IconPayment.tsx create mode 100644 src/components/IconPayments.tsx create mode 100644 src/components/IconPedalBike.tsx create mode 100644 src/components/IconPending.tsx create mode 100644 src/components/IconPendingActions.tsx create mode 100644 src/components/IconPeople.tsx create mode 100644 src/components/IconPeopleAlt.tsx create mode 100644 src/components/IconPeopleOutline.tsx create mode 100644 src/components/IconPermCameraMic.tsx create mode 100644 src/components/IconPermContactCalendar.tsx create mode 100644 src/components/IconPermDataSetting.tsx create mode 100644 src/components/IconPermDeviceInformation.tsx create mode 100644 src/components/IconPermIdentity.tsx create mode 100644 src/components/IconPermMedia.tsx create mode 100644 src/components/IconPermPhoneMsg.tsx create mode 100644 src/components/IconPermScanWifi.tsx create mode 100644 src/components/IconPerson.tsx create mode 100644 src/components/IconPersonAdd.tsx create mode 100644 src/components/IconPersonAddAlt1.tsx create mode 100644 src/components/IconPersonAddDisabled.tsx create mode 100644 src/components/IconPersonOutline.tsx create mode 100644 src/components/IconPersonPin.tsx create mode 100644 src/components/IconPersonPinCircle.tsx create mode 100644 src/components/IconPersonRemove.tsx create mode 100644 src/components/IconPersonRemoveAlt1.tsx create mode 100644 src/components/IconPersonSearch.tsx create mode 100644 src/components/IconPersonalVideo.tsx create mode 100644 src/components/IconPestControl.tsx create mode 100644 src/components/IconPestControlRodent.tsx create mode 100644 src/components/IconPets.tsx create mode 100644 src/components/IconPhone.tsx create mode 100644 src/components/IconPhoneAndroid.tsx create mode 100644 src/components/IconPhoneBluetoothSpeaker.tsx create mode 100644 src/components/IconPhoneCallback.tsx create mode 100644 src/components/IconPhoneDisabled.tsx create mode 100644 src/components/IconPhoneEnabled.tsx create mode 100644 src/components/IconPhoneForwarded.tsx create mode 100644 src/components/IconPhoneInTalk.tsx create mode 100644 src/components/IconPhoneIphone.tsx create mode 100644 src/components/IconPhoneLocked.tsx create mode 100644 src/components/IconPhoneMissed.tsx create mode 100644 src/components/IconPhonePaused.tsx create mode 100644 src/components/IconPhonelink.tsx create mode 100644 src/components/IconPhonelinkErase.tsx create mode 100644 src/components/IconPhonelinkLock.tsx create mode 100644 src/components/IconPhonelinkOff.tsx create mode 100644 src/components/IconPhonelinkRing.tsx create mode 100644 src/components/IconPhonelinkSetup.tsx create mode 100644 src/components/IconPhoto.tsx create mode 100644 src/components/IconPhotoAlbum.tsx create mode 100644 src/components/IconPhotoCamera.tsx create mode 100644 src/components/IconPhotoFilter.tsx create mode 100644 src/components/IconPhotoLibrary.tsx create mode 100644 src/components/IconPhotoSizeSelectActual.tsx create mode 100644 src/components/IconPhotoSizeSelectLarge.tsx create mode 100644 src/components/IconPhotoSizeSelectSmall.tsx create mode 100644 src/components/IconPictureAsPdf.tsx create mode 100644 src/components/IconPictureInPicture.tsx create mode 100644 src/components/IconPictureInPictureAlt.tsx create mode 100644 src/components/IconPieChart.tsx create mode 100644 src/components/IconPinDrop.tsx create mode 100644 src/components/IconPlace.tsx create mode 100644 src/components/IconPlagiarism.tsx create mode 100644 src/components/IconPlayArrow.tsx create mode 100644 src/components/IconPlayCircleFilled.tsx create mode 100644 src/components/IconPlayCircleOutline.tsx create mode 100644 src/components/IconPlayForWork.tsx create mode 100644 src/components/IconPlaylistAdd.tsx create mode 100644 src/components/IconPlaylistAddCheck.tsx create mode 100644 src/components/IconPlaylistPlay.tsx create mode 100644 src/components/IconPlumbing.tsx create mode 100644 src/components/IconPlusOne.tsx create mode 100644 src/components/IconPointOfSale.tsx create mode 100644 src/components/IconPolicy.tsx create mode 100644 src/components/IconPoll.tsx create mode 100644 src/components/IconPolymer.tsx create mode 100644 src/components/IconPool.tsx create mode 100644 src/components/IconPortableWifiOff.tsx create mode 100644 src/components/IconPortrait.tsx create mode 100644 src/components/IconPostAdd.tsx create mode 100644 src/components/IconPower.tsx create mode 100644 src/components/IconPowerInput.tsx create mode 100644 src/components/IconPowerOff.tsx create mode 100644 src/components/IconPowerSettingsNew.tsx create mode 100644 src/components/IconPregnantWoman.tsx create mode 100644 src/components/IconPresentToAll.tsx create mode 100644 src/components/IconPreview.tsx create mode 100644 src/components/IconPrint.tsx create mode 100644 src/components/IconPrintDisabled.tsx create mode 100644 src/components/IconPriorityHigh.tsx create mode 100644 src/components/IconPrivacyTip.tsx create mode 100644 src/components/IconPsychology.tsx create mode 100644 src/components/IconPublic.tsx create mode 100644 src/components/IconPublicOff.tsx create mode 100644 src/components/IconPublish.tsx create mode 100644 src/components/IconPublishedWithChanges.tsx create mode 100644 src/components/IconPushPin.tsx create mode 100644 src/components/IconQrCode.tsx create mode 100644 src/components/IconQrCode2.tsx create mode 100644 src/components/IconQrCodeScanner.tsx create mode 100644 src/components/IconQueryBuilder.tsx create mode 100644 src/components/IconQuestionAnswer.tsx create mode 100644 src/components/IconQueue.tsx create mode 100644 src/components/IconQueueMusic.tsx create mode 100644 src/components/IconQueuePlayNext.tsx create mode 100644 src/components/IconQuickreply.tsx create mode 100644 src/components/IconRadio.tsx create mode 100644 src/components/IconRadioButtonChecked.tsx create mode 100644 src/components/IconRadioButtonUnchecked.tsx create mode 100644 src/components/IconRateReview.tsx create mode 100644 src/components/IconReadMore.tsx create mode 100644 src/components/IconReceipt.tsx create mode 100644 src/components/IconReceiptLong.tsx create mode 100644 src/components/IconRecentActors.tsx create mode 100644 src/components/IconRecordVoiceOver.tsx create mode 100644 src/components/IconRedeem.tsx create mode 100644 src/components/IconRedo.tsx create mode 100644 src/components/IconReduceCapacity.tsx create mode 100644 src/components/IconRefresh.tsx create mode 100644 src/components/IconRemove.tsx create mode 100644 src/components/IconRemoveCircle.tsx create mode 100644 src/components/IconRemoveCircleOutline.tsx create mode 100644 src/components/IconRemoveFromQueue.tsx create mode 100644 src/components/IconRemoveRedEye.tsx create mode 100644 src/components/IconRemoveShoppingCart.tsx create mode 100644 src/components/IconReorder.tsx create mode 100644 src/components/IconRepeat.tsx create mode 100644 src/components/IconRepeatOne.tsx create mode 100644 src/components/IconReplay.tsx create mode 100644 src/components/IconReplay10.tsx create mode 100644 src/components/IconReplay30.tsx create mode 100644 src/components/IconReplay5.tsx create mode 100644 src/components/IconReply.tsx create mode 100644 src/components/IconReplyAll.tsx create mode 100644 src/components/IconReport.tsx create mode 100644 src/components/IconReportOff.tsx create mode 100644 src/components/IconReportProblem.tsx create mode 100644 src/components/IconRequestPage.tsx create mode 100644 src/components/IconRequestQuote.tsx create mode 100644 src/components/IconRestaurant.tsx create mode 100644 src/components/IconRestaurantMenu.tsx create mode 100644 src/components/IconRestore.tsx create mode 100644 src/components/IconRestoreFromTrash.tsx create mode 100644 src/components/IconRestorePage.tsx create mode 100644 src/components/IconRiceBowl.tsx create mode 100644 src/components/IconRingVolume.tsx create mode 100644 src/components/IconRoofing.tsx create mode 100644 src/components/IconRoom.tsx create mode 100644 src/components/IconRoomPreferences.tsx create mode 100644 src/components/IconRoomService.tsx create mode 100644 src/components/IconRotate90DegreesCcw.tsx create mode 100644 src/components/IconRotateLeft.tsx create mode 100644 src/components/IconRotateRight.tsx create mode 100644 src/components/IconRoundedCorner.tsx create mode 100644 src/components/IconRouter.tsx create mode 100644 src/components/IconRowing.tsx create mode 100644 src/components/IconRssFeed.tsx create mode 100644 src/components/IconRule.tsx create mode 100644 src/components/IconRuleFolder.tsx create mode 100644 src/components/IconRunCircle.tsx create mode 100644 src/components/IconRvHookup.tsx create mode 100644 src/components/IconSanitizer.tsx create mode 100644 src/components/IconSatellite.tsx create mode 100644 src/components/IconSave.tsx create mode 100644 src/components/IconSaveAlt.tsx create mode 100644 src/components/IconScanner.tsx create mode 100644 src/components/IconScatterPlot.tsx create mode 100644 src/components/IconSchedule.tsx create mode 100644 src/components/IconSchool.tsx create mode 100644 src/components/IconScience.tsx create mode 100644 src/components/IconScore.tsx create mode 100644 src/components/IconScreenLockLandscape.tsx create mode 100644 src/components/IconScreenLockPortrait.tsx create mode 100644 src/components/IconScreenLockRotation.tsx create mode 100644 src/components/IconScreenRotation.tsx create mode 100644 src/components/IconScreenShare.tsx create mode 100644 src/components/IconSdCard.tsx create mode 100644 src/components/IconSdStorage.tsx create mode 100644 src/components/IconSearch.tsx create mode 100644 src/components/IconSearchOff.tsx create mode 100644 src/components/IconSecurity.tsx create mode 100644 src/components/IconSelectAll.tsx create mode 100644 src/components/IconSelfImprovement.tsx create mode 100644 src/components/IconSend.tsx create mode 100644 src/components/IconSensorDoor.tsx create mode 100644 src/components/IconSensorWindow.tsx create mode 100644 src/components/IconSentimentDissatisfied.tsx create mode 100644 src/components/IconSentimentSatisfied.tsx create mode 100644 src/components/IconSentimentSatisfiedAlt.tsx create mode 100644 src/components/IconSentimentVeryDissatisfied.tsx create mode 100644 src/components/IconSentimentVerySatisfied.tsx create mode 100644 src/components/IconSetMeal.tsx create mode 100644 src/components/IconSettings.tsx create mode 100644 src/components/IconSettingsApplications.tsx create mode 100644 src/components/IconSettingsBackupRestore.tsx create mode 100644 src/components/IconSettingsBluetooth.tsx create mode 100644 src/components/IconSettingsBrightness.tsx create mode 100644 src/components/IconSettingsCell.tsx create mode 100644 src/components/IconSettingsEthernet.tsx create mode 100644 src/components/IconSettingsInputAntenna.tsx create mode 100644 src/components/IconSettingsInputComponent.tsx create mode 100644 src/components/IconSettingsInputComposite.tsx create mode 100644 src/components/IconSettingsInputHdmi.tsx create mode 100644 src/components/IconSettingsInputSvideo.tsx create mode 100644 src/components/IconSettingsOverscan.tsx create mode 100644 src/components/IconSettingsPhone.tsx create mode 100644 src/components/IconSettingsPower.tsx create mode 100644 src/components/IconSettingsRemote.tsx create mode 100644 src/components/IconSettingsSystemDaydream.tsx create mode 100644 src/components/IconSettingsVoice.tsx create mode 100644 src/components/IconShare.tsx create mode 100644 src/components/IconShop.tsx create mode 100644 src/components/IconShopTwo.tsx create mode 100644 src/components/IconShoppingBag.tsx create mode 100644 src/components/IconShoppingBasket.tsx create mode 100644 src/components/IconShoppingCart.tsx create mode 100644 src/components/IconShortText.tsx create mode 100644 src/components/IconShowChart.tsx create mode 100644 src/components/IconShuffle.tsx create mode 100644 src/components/IconShutterSpeed.tsx create mode 100644 src/components/IconSick.tsx create mode 100644 src/components/IconSignalCellular4Bar.tsx create mode 100644 src/components/IconSignalCellularAlt.tsx create mode 100644 src/components/IconSignalCellularConnectedNoInternet4Bar.tsx create mode 100644 src/components/IconSignalCellularNoSim.tsx create mode 100644 src/components/IconSignalCellularNull.tsx create mode 100644 src/components/IconSignalCellularOff.tsx create mode 100644 src/components/IconSignalWifi4Bar.tsx create mode 100644 src/components/IconSignalWifi4BarLock.tsx create mode 100644 src/components/IconSignalWifiOff.tsx create mode 100644 src/components/IconSimCard.tsx create mode 100644 src/components/IconSingleBed.tsx create mode 100644 src/components/IconSkipNext.tsx create mode 100644 src/components/IconSkipPrevious.tsx create mode 100644 src/components/IconSlideshow.tsx create mode 100644 src/components/IconSlowMotionVideo.tsx create mode 100644 src/components/IconSmartButton.tsx create mode 100644 src/components/IconSmartphone.tsx create mode 100644 src/components/IconSmokeFree.tsx create mode 100644 src/components/IconSmokingRooms.tsx create mode 100644 src/components/IconSms.tsx create mode 100644 src/components/IconSmsFailed.tsx create mode 100644 src/components/IconSnippetFolder.tsx create mode 100644 src/components/IconSnooze.tsx create mode 100644 src/components/IconSoap.tsx create mode 100644 src/components/IconSort.tsx create mode 100644 src/components/IconSortByAlpha.tsx create mode 100644 src/components/IconSource.tsx create mode 100644 src/components/IconSouth.tsx create mode 100644 src/components/IconSouthEast.tsx create mode 100644 src/components/IconSouthWest.tsx create mode 100644 src/components/IconSpa.tsx create mode 100644 src/components/IconSpaceBar.tsx create mode 100644 src/components/IconSpeaker.tsx create mode 100644 src/components/IconSpeakerGroup.tsx create mode 100644 src/components/IconSpeakerNotes.tsx create mode 100644 src/components/IconSpeakerNotesOff.tsx create mode 100644 src/components/IconSpeakerPhone.tsx create mode 100644 src/components/IconSpeed.tsx create mode 100644 src/components/IconSpellcheck.tsx create mode 100644 src/components/IconSports.tsx create mode 100644 src/components/IconSportsBar.tsx create mode 100644 src/components/IconSportsBaseball.tsx create mode 100644 src/components/IconSportsBasketball.tsx create mode 100644 src/components/IconSportsCricket.tsx create mode 100644 src/components/IconSportsEsports.tsx create mode 100644 src/components/IconSportsFootball.tsx create mode 100644 src/components/IconSportsGolf.tsx create mode 100644 src/components/IconSportsHandball.tsx create mode 100644 src/components/IconSportsHockey.tsx create mode 100644 src/components/IconSportsKabaddi.tsx create mode 100644 src/components/IconSportsMma.tsx create mode 100644 src/components/IconSportsMotorsports.tsx create mode 100644 src/components/IconSportsRugby.tsx create mode 100644 src/components/IconSportsSoccer.tsx create mode 100644 src/components/IconSportsTennis.tsx create mode 100644 src/components/IconSportsVolleyball.tsx create mode 100644 src/components/IconSquareFoot.tsx create mode 100644 src/components/IconStackedLineChart.tsx create mode 100644 src/components/IconStairs.tsx create mode 100644 src/components/IconStar.tsx create mode 100644 src/components/IconStarBorder.tsx create mode 100644 src/components/IconStarHalf.tsx create mode 100644 src/components/IconStarOutline.tsx create mode 100644 src/components/IconStarRate.tsx create mode 100644 src/components/IconStars.tsx create mode 100644 src/components/IconStayCurrentLandscape.tsx create mode 100644 src/components/IconStayCurrentPortrait.tsx create mode 100644 src/components/IconStayPrimaryLandscape.tsx create mode 100644 src/components/IconStayPrimaryPortrait.tsx create mode 100644 src/components/IconStickyNote2.tsx create mode 100644 src/components/IconStop.tsx create mode 100644 src/components/IconStopCircle.tsx create mode 100644 src/components/IconStopScreenShare.tsx create mode 100644 src/components/IconStorage.tsx create mode 100644 src/components/IconStore.tsx create mode 100644 src/components/IconStoreMallDirectory.tsx create mode 100644 src/components/IconStorefront.tsx create mode 100644 src/components/IconStraighten.tsx create mode 100644 src/components/IconStreetview.tsx create mode 100644 src/components/IconStrikethroughS.tsx create mode 100644 src/components/IconStroller.tsx create mode 100644 src/components/IconStyle.tsx create mode 100644 src/components/IconSubdirectoryArrowLeft.tsx create mode 100644 src/components/IconSubdirectoryArrowRight.tsx create mode 100644 src/components/IconSubject.tsx create mode 100644 src/components/IconSubscript.tsx create mode 100644 src/components/IconSubscriptions.tsx create mode 100644 src/components/IconSubtitles.tsx create mode 100644 src/components/IconSubtitlesOff.tsx create mode 100644 src/components/IconSubway.tsx create mode 100644 src/components/IconSuperscript.tsx create mode 100644 src/components/IconSupervisedUserCircle.tsx create mode 100644 src/components/IconSupervisorAccount.tsx create mode 100644 src/components/IconSupport.tsx create mode 100644 src/components/IconSupportAgent.tsx create mode 100644 src/components/IconSurroundSound.tsx create mode 100644 src/components/IconSwapCalls.tsx create mode 100644 src/components/IconSwapHoriz.tsx create mode 100644 src/components/IconSwapHorizontalCircle.tsx create mode 100644 src/components/IconSwapVert.tsx create mode 100644 src/components/IconSwapVerticalCircle.tsx create mode 100644 src/components/IconSwitchCamera.tsx create mode 100644 src/components/IconSwitchLeft.tsx create mode 100644 src/components/IconSwitchRight.tsx create mode 100644 src/components/IconSwitchVideo.tsx create mode 100644 src/components/IconSync.tsx create mode 100644 src/components/IconSyncAlt.tsx create mode 100644 src/components/IconSyncDisabled.tsx create mode 100644 src/components/IconSyncProblem.tsx create mode 100644 src/components/IconSystemUpdate.tsx create mode 100644 src/components/IconSystemUpdateAlt.tsx create mode 100644 src/components/IconTab.tsx create mode 100644 src/components/IconTabUnselected.tsx create mode 100644 src/components/IconTableChart.tsx create mode 100644 src/components/IconTableRows.tsx create mode 100644 src/components/IconTableView.tsx create mode 100644 src/components/IconTablet.tsx create mode 100644 src/components/IconTabletAndroid.tsx create mode 100644 src/components/IconTabletMac.tsx create mode 100644 src/components/IconTagFaces.tsx create mode 100644 src/components/IconTapAndPlay.tsx create mode 100644 src/components/IconTapas.tsx create mode 100644 src/components/IconTerrain.tsx create mode 100644 src/components/IconTextFields.tsx create mode 100644 src/components/IconTextFormat.tsx create mode 100644 src/components/IconTextRotateUp.tsx create mode 100644 src/components/IconTextRotateVertical.tsx create mode 100644 src/components/IconTextRotationAngledown.tsx create mode 100644 src/components/IconTextRotationAngleup.tsx create mode 100644 src/components/IconTextRotationDown.tsx create mode 100644 src/components/IconTextRotationNone.tsx create mode 100644 src/components/IconTextSnippet.tsx create mode 100644 src/components/IconTextsms.tsx create mode 100644 src/components/IconTexture.tsx create mode 100644 src/components/IconTheaters.tsx create mode 100644 src/components/IconThumbDown.tsx create mode 100644 src/components/IconThumbDownAlt.tsx create mode 100644 src/components/IconThumbUp.tsx create mode 100644 src/components/IconThumbUpAlt.tsx create mode 100644 src/components/IconThumbsUpDown.tsx create mode 100644 src/components/IconTimeToLeave.tsx create mode 100644 src/components/IconTimelapse.tsx create mode 100644 src/components/IconTimeline.tsx create mode 100644 src/components/IconTimer.tsx create mode 100644 src/components/IconTimer10.tsx create mode 100644 src/components/IconTimer3.tsx create mode 100644 src/components/IconTimerOff.tsx create mode 100644 src/components/IconTitle.tsx create mode 100644 src/components/IconToc.tsx create mode 100644 src/components/IconToday.tsx create mode 100644 src/components/IconToggleOff.tsx create mode 100644 src/components/IconToggleOn.tsx create mode 100644 src/components/IconToll.tsx create mode 100644 src/components/IconTonality.tsx create mode 100644 src/components/IconTopic.tsx create mode 100644 src/components/IconTouchApp.tsx create mode 100644 src/components/IconTour.tsx create mode 100644 src/components/IconToys.tsx create mode 100644 src/components/IconTrackChanges.tsx create mode 100644 src/components/IconTraffic.tsx create mode 100644 src/components/IconTrain.tsx create mode 100644 src/components/IconTram.tsx create mode 100644 src/components/IconTransferWithinAStation.tsx create mode 100644 src/components/IconTransform.tsx create mode 100644 src/components/IconTransitEnterexit.tsx create mode 100644 src/components/IconTranslate.tsx create mode 100644 src/components/IconTrendingDown.tsx create mode 100644 src/components/IconTrendingFlat.tsx create mode 100644 src/components/IconTrendingUp.tsx create mode 100644 src/components/IconTripOrigin.tsx create mode 100644 src/components/IconTty.tsx create mode 100644 src/components/IconTune.tsx create mode 100644 src/components/IconTurnedIn.tsx create mode 100644 src/components/IconTurnedInNot.tsx create mode 100644 src/components/IconTv.tsx create mode 100644 src/components/IconTvOff.tsx create mode 100644 src/components/IconTwoWheeler.tsx create mode 100644 src/components/IconUmbrella.tsx create mode 100644 src/components/IconUnarchive.tsx create mode 100644 src/components/IconUndo.tsx create mode 100644 src/components/IconUnfoldLess.tsx create mode 100644 src/components/IconUnfoldMore.tsx create mode 100644 src/components/IconUnpublished.tsx create mode 100644 src/components/IconUnsubscribe.tsx create mode 100644 src/components/IconUpdate.tsx create mode 100644 src/components/IconUpdateDisabled.tsx create mode 100644 src/components/IconUpgrade.tsx create mode 100644 src/components/IconUsb.tsx create mode 100644 src/components/IconVerified.tsx create mode 100644 src/components/IconVerifiedUser.tsx create mode 100644 src/components/IconVerticalAlignBottom.tsx create mode 100644 src/components/IconVerticalAlignCenter.tsx create mode 100644 src/components/IconVerticalAlignTop.tsx create mode 100644 src/components/IconVerticalDistribute.tsx create mode 100644 src/components/IconVerticalSplit.tsx create mode 100644 src/components/IconVibration.tsx create mode 100644 src/components/IconVideoCall.tsx create mode 100644 src/components/IconVideoLabel.tsx create mode 100644 src/components/IconVideoLibrary.tsx create mode 100644 src/components/IconVideoSettings.tsx create mode 100644 src/components/IconVideocam.tsx create mode 100644 src/components/IconVideocamOff.tsx create mode 100644 src/components/IconVideogameAsset.tsx create mode 100644 src/components/IconViewAgenda.tsx create mode 100644 src/components/IconViewArray.tsx create mode 100644 src/components/IconViewCarousel.tsx create mode 100644 src/components/IconViewColumn.tsx create mode 100644 src/components/IconViewComfy.tsx create mode 100644 src/components/IconViewCompact.tsx create mode 100644 src/components/IconViewDay.tsx create mode 100644 src/components/IconViewHeadline.tsx create mode 100644 src/components/IconViewList.tsx create mode 100644 src/components/IconViewModule.tsx create mode 100644 src/components/IconViewQuilt.tsx create mode 100644 src/components/IconViewSidebar.tsx create mode 100644 src/components/IconViewStream.tsx create mode 100644 src/components/IconViewWeek.tsx create mode 100644 src/components/IconVignette.tsx create mode 100644 src/components/IconVisibility.tsx create mode 100644 src/components/IconVisibilityOff.tsx create mode 100644 src/components/IconVoiceChat.tsx create mode 100644 src/components/IconVoiceOverOff.tsx create mode 100644 src/components/IconVoicemail.tsx create mode 100644 src/components/IconVolumeDown.tsx create mode 100644 src/components/IconVolumeMute.tsx create mode 100644 src/components/IconVolumeOff.tsx create mode 100644 src/components/IconVolumeUp.tsx create mode 100644 src/components/IconVpnKey.tsx create mode 100644 src/components/IconVpnLock.tsx create mode 100644 src/components/IconWallpaper.tsx create mode 100644 src/components/IconWarning.tsx create mode 100644 src/components/IconWash.tsx create mode 100644 src/components/IconWatch.tsx create mode 100644 src/components/IconWatchLater.tsx create mode 100644 src/components/IconWaterDamage.tsx create mode 100644 src/components/IconWaves.tsx create mode 100644 src/components/IconWbAuto.tsx create mode 100644 src/components/IconWbCloudy.tsx create mode 100644 src/components/IconWbIncandescent.tsx create mode 100644 src/components/IconWbIridescent.tsx create mode 100644 src/components/IconWbSunny.tsx create mode 100644 src/components/IconWc.tsx create mode 100644 src/components/IconWeb.tsx create mode 100644 src/components/IconWebAsset.tsx create mode 100644 src/components/IconWeekend.tsx create mode 100644 src/components/IconWest.tsx create mode 100644 src/components/IconWhatshot.tsx create mode 100644 src/components/IconWheelchairPickup.tsx create mode 100644 src/components/IconWhereToVote.tsx create mode 100644 src/components/IconWidgets.tsx create mode 100644 src/components/IconWifi.tsx create mode 100644 src/components/IconWifiCalling.tsx create mode 100644 src/components/IconWifiLock.tsx create mode 100644 src/components/IconWifiOff.tsx create mode 100644 src/components/IconWifiProtectedSetup.tsx create mode 100644 src/components/IconWifiTethering.tsx create mode 100644 src/components/IconWineBar.tsx create mode 100644 src/components/IconWork.tsx create mode 100644 src/components/IconWorkOff.tsx create mode 100644 src/components/IconWorkOutline.tsx create mode 100644 src/components/IconWrapText.tsx create mode 100644 src/components/IconWrongLocation.tsx create mode 100644 src/components/IconWysiwyg.tsx create mode 100644 src/components/IconYoutubeSearchedFor.tsx create mode 100644 src/components/IconZoomIn.tsx create mode 100644 src/components/IconZoomOut.tsx create mode 100644 src/components/IconZoomOutMap.tsx create mode 100644 src/components/types.ts create mode 100644 src/index.ts diff --git a/.githooks/pre-commit b/.githooks/pre-commit new file mode 100755 index 000000000..cba2354c7 --- /dev/null +++ b/.githooks/pre-commit @@ -0,0 +1,6 @@ +#!/bin/bash + +set -e +set -o pipefail + +npm run lint diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..ea3e3a49b --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,26 @@ +name: Create Relase & Publish Package +on: + push: + tags: + - 'v*' +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + draft: false + prerelease: false + - uses: actions/setup-node@v1 + with: + node-version: '12.x' + registry-url: 'https://registry.npmjs.org' + - run: npm install + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/readme.md b/readme.md index b823a4a1a..e622c19bc 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,8 @@ React Material Icons ==================== +[![npm version](https://badge.fury.io/js/%40aboutbits%2Freact-material-icons.svg)](https://badge.fury.io/js/%40aboutbits%2Freact-material-icons) + This package includes all [Material Icons](https://material.io/resources/icons/?style=baseline) as reusable React components. ## Table of content @@ -13,11 +15,13 @@ This package includes all [Material Icons](https://material.io/resources/icons/? ## Usage First, you have to install the package: + ```bash npm install @aboutbits/react-material-icons ``` Second, you can use the icons in you React application like this: + ```jsx import React from 'react' @@ -33,6 +37,7 @@ SVG related parameters like height and width can be passed as props. ## Generate Components To generate the components, simply run the following command: + ```bash npm run generate ``` @@ -40,6 +45,7 @@ npm run generate ## Build & Publish To publish the package commit all changes and push them to master. Then run one of the following commands locally: + ```bash npm version patch npm version minor @@ -63,4 +69,4 @@ For support, please contact [info@aboutbits.it](mailto:info@aboutbits.it). ### License -The MIT License (MIT). Please see the [license file](license.md) for more information. \ No newline at end of file +The MIT License (MIT). Please see the [license file](license.md) for more information. diff --git a/src/components/Icon360.tsx b/src/components/Icon360.tsx new file mode 100644 index 000000000..d42b76858 --- /dev/null +++ b/src/components/Icon360.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const Icon360: React.FC = (props) => ( + + + + +) + +export { Icon360 } diff --git a/src/components/Icon3dRotation.tsx b/src/components/Icon3dRotation.tsx new file mode 100644 index 000000000..bff31bfaa --- /dev/null +++ b/src/components/Icon3dRotation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const Icon3dRotation: React.FC = (props) => ( + + + + +) + +export { Icon3dRotation } diff --git a/src/components/Icon4k.tsx b/src/components/Icon4k.tsx new file mode 100644 index 000000000..510ebe981 --- /dev/null +++ b/src/components/Icon4k.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const Icon4k: React.FC = (props) => ( + + + + +) + +export { Icon4k } diff --git a/src/components/Icon5g.tsx b/src/components/Icon5g.tsx new file mode 100644 index 000000000..3e82f2913 --- /dev/null +++ b/src/components/Icon5g.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const Icon5g: React.FC = (props) => ( + + + + + + + + + + + +) + +export { Icon5g } diff --git a/src/components/Icon6FtApart.tsx b/src/components/Icon6FtApart.tsx new file mode 100644 index 000000000..23c631811 --- /dev/null +++ b/src/components/Icon6FtApart.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const Icon6FtApart: React.FC = (props) => ( + + + + +) + +export { Icon6FtApart } diff --git a/src/components/IconAcUnit.tsx b/src/components/IconAcUnit.tsx new file mode 100644 index 000000000..46bec0527 --- /dev/null +++ b/src/components/IconAcUnit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAcUnit: React.FC = (props) => ( + + + + +) + +export { IconAcUnit } diff --git a/src/components/IconAccessAlarm.tsx b/src/components/IconAccessAlarm.tsx new file mode 100644 index 000000000..f05f0c62d --- /dev/null +++ b/src/components/IconAccessAlarm.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccessAlarm: React.FC = (props) => ( + + + + +) + +export { IconAccessAlarm } diff --git a/src/components/IconAccessAlarms.tsx b/src/components/IconAccessAlarms.tsx new file mode 100644 index 000000000..ecc43f852 --- /dev/null +++ b/src/components/IconAccessAlarms.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccessAlarms: React.FC = (props) => ( + + + + +) + +export { IconAccessAlarms } diff --git a/src/components/IconAccessTime.tsx b/src/components/IconAccessTime.tsx new file mode 100644 index 000000000..fd89b2dd8 --- /dev/null +++ b/src/components/IconAccessTime.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccessTime: React.FC = (props) => ( + + + + + +) + +export { IconAccessTime } diff --git a/src/components/IconAccessibility.tsx b/src/components/IconAccessibility.tsx new file mode 100644 index 000000000..847a1a5ff --- /dev/null +++ b/src/components/IconAccessibility.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccessibility: React.FC = (props) => ( + + + + +) + +export { IconAccessibility } diff --git a/src/components/IconAccessibilityNew.tsx b/src/components/IconAccessibilityNew.tsx new file mode 100644 index 000000000..22400dbee --- /dev/null +++ b/src/components/IconAccessibilityNew.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccessibilityNew: React.FC = (props) => ( + + + + +) + +export { IconAccessibilityNew } diff --git a/src/components/IconAccessible.tsx b/src/components/IconAccessible.tsx new file mode 100644 index 000000000..b403098a1 --- /dev/null +++ b/src/components/IconAccessible.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccessible: React.FC = (props) => ( + + + + + +) + +export { IconAccessible } diff --git a/src/components/IconAccessibleForward.tsx b/src/components/IconAccessibleForward.tsx new file mode 100644 index 000000000..3cc707012 --- /dev/null +++ b/src/components/IconAccessibleForward.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccessibleForward: React.FC = (props) => ( + + + + + +) + +export { IconAccessibleForward } diff --git a/src/components/IconAccountBalance.tsx b/src/components/IconAccountBalance.tsx new file mode 100644 index 000000000..233d4ceca --- /dev/null +++ b/src/components/IconAccountBalance.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccountBalance: React.FC = (props) => ( + + + + + + + + + + + + + + +) + +export { IconAccountBalance } diff --git a/src/components/IconAccountBalanceWallet.tsx b/src/components/IconAccountBalanceWallet.tsx new file mode 100644 index 000000000..06245dd2f --- /dev/null +++ b/src/components/IconAccountBalanceWallet.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccountBalanceWallet: React.FC = (props) => ( + + + + +) + +export { IconAccountBalanceWallet } diff --git a/src/components/IconAccountBox.tsx b/src/components/IconAccountBox.tsx new file mode 100644 index 000000000..11b2022ac --- /dev/null +++ b/src/components/IconAccountBox.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccountBox: React.FC = (props) => ( + + + + +) + +export { IconAccountBox } diff --git a/src/components/IconAccountCircle.tsx b/src/components/IconAccountCircle.tsx new file mode 100644 index 000000000..33e370756 --- /dev/null +++ b/src/components/IconAccountCircle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccountCircle: React.FC = (props) => ( + + + + +) + +export { IconAccountCircle } diff --git a/src/components/IconAccountTree.tsx b/src/components/IconAccountTree.tsx new file mode 100644 index 000000000..97b2f173a --- /dev/null +++ b/src/components/IconAccountTree.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccountTree: React.FC = (props) => ( + + + + +) + +export { IconAccountTree } diff --git a/src/components/IconAdUnits.tsx b/src/components/IconAdUnits.tsx new file mode 100644 index 000000000..d21f0fce0 --- /dev/null +++ b/src/components/IconAdUnits.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAdUnits: React.FC = (props) => ( + + + + +) + +export { IconAdUnits } diff --git a/src/components/IconAdb.tsx b/src/components/IconAdb.tsx new file mode 100644 index 000000000..146e4842f --- /dev/null +++ b/src/components/IconAdb.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAdb: React.FC = (props) => ( + + + + +) + +export { IconAdb } diff --git a/src/components/IconAdd.tsx b/src/components/IconAdd.tsx new file mode 100644 index 000000000..18dbd9d81 --- /dev/null +++ b/src/components/IconAdd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAdd: React.FC = (props) => ( + + + + +) + +export { IconAdd } diff --git a/src/components/IconAddAPhoto.tsx b/src/components/IconAddAPhoto.tsx new file mode 100644 index 000000000..de7730964 --- /dev/null +++ b/src/components/IconAddAPhoto.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddAPhoto: React.FC = (props) => ( + + + + +) + +export { IconAddAPhoto } diff --git a/src/components/IconAddAlarm.tsx b/src/components/IconAddAlarm.tsx new file mode 100644 index 000000000..2dc24f01a --- /dev/null +++ b/src/components/IconAddAlarm.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddAlarm: React.FC = (props) => ( + + + + +) + +export { IconAddAlarm } diff --git a/src/components/IconAddAlert.tsx b/src/components/IconAddAlert.tsx new file mode 100644 index 000000000..6aa276e57 --- /dev/null +++ b/src/components/IconAddAlert.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddAlert: React.FC = (props) => ( + + + + +) + +export { IconAddAlert } diff --git a/src/components/IconAddBox.tsx b/src/components/IconAddBox.tsx new file mode 100644 index 000000000..7a5397b12 --- /dev/null +++ b/src/components/IconAddBox.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddBox: React.FC = (props) => ( + + + + +) + +export { IconAddBox } diff --git a/src/components/IconAddBusiness.tsx b/src/components/IconAddBusiness.tsx new file mode 100644 index 000000000..2e12fef9b --- /dev/null +++ b/src/components/IconAddBusiness.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddBusiness: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconAddBusiness } diff --git a/src/components/IconAddCircle.tsx b/src/components/IconAddCircle.tsx new file mode 100644 index 000000000..4ec6dde0a --- /dev/null +++ b/src/components/IconAddCircle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddCircle: React.FC = (props) => ( + + + + +) + +export { IconAddCircle } diff --git a/src/components/IconAddCircleOutline.tsx b/src/components/IconAddCircleOutline.tsx new file mode 100644 index 000000000..e337cfd6b --- /dev/null +++ b/src/components/IconAddCircleOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddCircleOutline: React.FC = (props) => ( + + + + +) + +export { IconAddCircleOutline } diff --git a/src/components/IconAddComment.tsx b/src/components/IconAddComment.tsx new file mode 100644 index 000000000..264fda583 --- /dev/null +++ b/src/components/IconAddComment.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddComment: React.FC = (props) => ( + + + + +) + +export { IconAddComment } diff --git a/src/components/IconAddIcCall.tsx b/src/components/IconAddIcCall.tsx new file mode 100644 index 000000000..cf3570d6b --- /dev/null +++ b/src/components/IconAddIcCall.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddIcCall: React.FC = (props) => ( + + + + +) + +export { IconAddIcCall } diff --git a/src/components/IconAddLocation.tsx b/src/components/IconAddLocation.tsx new file mode 100644 index 000000000..89ea4ca34 --- /dev/null +++ b/src/components/IconAddLocation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddLocation: React.FC = (props) => ( + + + + +) + +export { IconAddLocation } diff --git a/src/components/IconAddLocationAlt.tsx b/src/components/IconAddLocationAlt.tsx new file mode 100644 index 000000000..0afafe425 --- /dev/null +++ b/src/components/IconAddLocationAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddLocationAlt: React.FC = (props) => ( + + + + +) + +export { IconAddLocationAlt } diff --git a/src/components/IconAddPhotoAlternate.tsx b/src/components/IconAddPhotoAlternate.tsx new file mode 100644 index 000000000..798832586 --- /dev/null +++ b/src/components/IconAddPhotoAlternate.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddPhotoAlternate: React.FC = (props) => ( + + + + +) + +export { IconAddPhotoAlternate } diff --git a/src/components/IconAddRoad.tsx b/src/components/IconAddRoad.tsx new file mode 100644 index 000000000..c649c4ed4 --- /dev/null +++ b/src/components/IconAddRoad.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddRoad: React.FC = (props) => ( + + + + + + + + + + + + + + + +) + +export { IconAddRoad } diff --git a/src/components/IconAddShoppingCart.tsx b/src/components/IconAddShoppingCart.tsx new file mode 100644 index 000000000..df761f3d2 --- /dev/null +++ b/src/components/IconAddShoppingCart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddShoppingCart: React.FC = (props) => ( + + + + +) + +export { IconAddShoppingCart } diff --git a/src/components/IconAddTask.tsx b/src/components/IconAddTask.tsx new file mode 100644 index 000000000..fcea7b7d5 --- /dev/null +++ b/src/components/IconAddTask.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddTask: React.FC = (props) => ( + + + + +) + +export { IconAddTask } diff --git a/src/components/IconAddToHomeScreen.tsx b/src/components/IconAddToHomeScreen.tsx new file mode 100644 index 000000000..de8e0fa92 --- /dev/null +++ b/src/components/IconAddToHomeScreen.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddToHomeScreen: React.FC = (props) => ( + + + + + +) + +export { IconAddToHomeScreen } diff --git a/src/components/IconAddToPhotos.tsx b/src/components/IconAddToPhotos.tsx new file mode 100644 index 000000000..017d5b315 --- /dev/null +++ b/src/components/IconAddToPhotos.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddToPhotos: React.FC = (props) => ( + + + + +) + +export { IconAddToPhotos } diff --git a/src/components/IconAddToQueue.tsx b/src/components/IconAddToQueue.tsx new file mode 100644 index 000000000..df1256e61 --- /dev/null +++ b/src/components/IconAddToQueue.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddToQueue: React.FC = (props) => ( + + + + +) + +export { IconAddToQueue } diff --git a/src/components/IconAddchart.tsx b/src/components/IconAddchart.tsx new file mode 100644 index 000000000..9c92ec693 --- /dev/null +++ b/src/components/IconAddchart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddchart: React.FC = (props) => ( + + + + +) + +export { IconAddchart } diff --git a/src/components/IconAdjust.tsx b/src/components/IconAdjust.tsx new file mode 100644 index 000000000..4f7dea24d --- /dev/null +++ b/src/components/IconAdjust.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAdjust: React.FC = (props) => ( + + + + +) + +export { IconAdjust } diff --git a/src/components/IconAdminPanelSettings.tsx b/src/components/IconAdminPanelSettings.tsx new file mode 100644 index 000000000..d99f9a25c --- /dev/null +++ b/src/components/IconAdminPanelSettings.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconAdminPanelSettings: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconAdminPanelSettings } diff --git a/src/components/IconAgriculture.tsx b/src/components/IconAgriculture.tsx new file mode 100644 index 000000000..247a3ce67 --- /dev/null +++ b/src/components/IconAgriculture.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconAgriculture: React.FC = (props) => ( + + + + + + + + + + + + + +) + +export { IconAgriculture } diff --git a/src/components/IconAirlineSeatFlat.tsx b/src/components/IconAirlineSeatFlat.tsx new file mode 100644 index 000000000..24c0949da --- /dev/null +++ b/src/components/IconAirlineSeatFlat.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirlineSeatFlat: React.FC = (props) => ( + + + + +) + +export { IconAirlineSeatFlat } diff --git a/src/components/IconAirlineSeatFlatAngled.tsx b/src/components/IconAirlineSeatFlatAngled.tsx new file mode 100644 index 000000000..f6b3d8aab --- /dev/null +++ b/src/components/IconAirlineSeatFlatAngled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirlineSeatFlatAngled: React.FC = (props) => ( + + + + +) + +export { IconAirlineSeatFlatAngled } diff --git a/src/components/IconAirlineSeatIndividualSuite.tsx b/src/components/IconAirlineSeatIndividualSuite.tsx new file mode 100644 index 000000000..b74e5e9d3 --- /dev/null +++ b/src/components/IconAirlineSeatIndividualSuite.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirlineSeatIndividualSuite: React.FC = (props) => ( + + + + +) + +export { IconAirlineSeatIndividualSuite } diff --git a/src/components/IconAirlineSeatLegroomExtra.tsx b/src/components/IconAirlineSeatLegroomExtra.tsx new file mode 100644 index 000000000..5f19497d3 --- /dev/null +++ b/src/components/IconAirlineSeatLegroomExtra.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirlineSeatLegroomExtra: React.FC = (props) => ( + + + + +) + +export { IconAirlineSeatLegroomExtra } diff --git a/src/components/IconAirlineSeatLegroomNormal.tsx b/src/components/IconAirlineSeatLegroomNormal.tsx new file mode 100644 index 000000000..dec5d4cc3 --- /dev/null +++ b/src/components/IconAirlineSeatLegroomNormal.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirlineSeatLegroomNormal: React.FC = (props) => ( + + + + +) + +export { IconAirlineSeatLegroomNormal } diff --git a/src/components/IconAirlineSeatLegroomReduced.tsx b/src/components/IconAirlineSeatLegroomReduced.tsx new file mode 100644 index 000000000..15ea1ee18 --- /dev/null +++ b/src/components/IconAirlineSeatLegroomReduced.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirlineSeatLegroomReduced: React.FC = (props) => ( + + + + +) + +export { IconAirlineSeatLegroomReduced } diff --git a/src/components/IconAirlineSeatReclineExtra.tsx b/src/components/IconAirlineSeatReclineExtra.tsx new file mode 100644 index 000000000..08049a4dd --- /dev/null +++ b/src/components/IconAirlineSeatReclineExtra.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirlineSeatReclineExtra: React.FC = (props) => ( + + + + +) + +export { IconAirlineSeatReclineExtra } diff --git a/src/components/IconAirlineSeatReclineNormal.tsx b/src/components/IconAirlineSeatReclineNormal.tsx new file mode 100644 index 000000000..2495c01eb --- /dev/null +++ b/src/components/IconAirlineSeatReclineNormal.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirlineSeatReclineNormal: React.FC = (props) => ( + + + + +) + +export { IconAirlineSeatReclineNormal } diff --git a/src/components/IconAirplanemodeActive.tsx b/src/components/IconAirplanemodeActive.tsx new file mode 100644 index 000000000..469e8c8b1 --- /dev/null +++ b/src/components/IconAirplanemodeActive.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirplanemodeActive: React.FC = (props) => ( + + + + + + +) + +export { IconAirplanemodeActive } diff --git a/src/components/IconAirplanemodeInactive.tsx b/src/components/IconAirplanemodeInactive.tsx new file mode 100644 index 000000000..6e40fdea4 --- /dev/null +++ b/src/components/IconAirplanemodeInactive.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirplanemodeInactive: React.FC = (props) => ( + + + + + + +) + +export { IconAirplanemodeInactive } diff --git a/src/components/IconAirplay.tsx b/src/components/IconAirplay.tsx new file mode 100644 index 000000000..1d6e4a06c --- /dev/null +++ b/src/components/IconAirplay.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirplay: React.FC = (props) => ( + + + + + + + +) + +export { IconAirplay } diff --git a/src/components/IconAirportShuttle.tsx b/src/components/IconAirportShuttle.tsx new file mode 100644 index 000000000..1f9e7707f --- /dev/null +++ b/src/components/IconAirportShuttle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirportShuttle: React.FC = (props) => ( + + + + +) + +export { IconAirportShuttle } diff --git a/src/components/IconAlarm.tsx b/src/components/IconAlarm.tsx new file mode 100644 index 000000000..414d98525 --- /dev/null +++ b/src/components/IconAlarm.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlarm: React.FC = (props) => ( + + + + +) + +export { IconAlarm } diff --git a/src/components/IconAlarmAdd.tsx b/src/components/IconAlarmAdd.tsx new file mode 100644 index 000000000..bc15265e3 --- /dev/null +++ b/src/components/IconAlarmAdd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlarmAdd: React.FC = (props) => ( + + + + +) + +export { IconAlarmAdd } diff --git a/src/components/IconAlarmOff.tsx b/src/components/IconAlarmOff.tsx new file mode 100644 index 000000000..20375a02b --- /dev/null +++ b/src/components/IconAlarmOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlarmOff: React.FC = (props) => ( + + + + +) + +export { IconAlarmOff } diff --git a/src/components/IconAlarmOn.tsx b/src/components/IconAlarmOn.tsx new file mode 100644 index 000000000..269f3dfd3 --- /dev/null +++ b/src/components/IconAlarmOn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlarmOn: React.FC = (props) => ( + + + + +) + +export { IconAlarmOn } diff --git a/src/components/IconAlbum.tsx b/src/components/IconAlbum.tsx new file mode 100644 index 000000000..bdf9c6b28 --- /dev/null +++ b/src/components/IconAlbum.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlbum: React.FC = (props) => ( + + + + +) + +export { IconAlbum } diff --git a/src/components/IconAlignHorizontalCenter.tsx b/src/components/IconAlignHorizontalCenter.tsx new file mode 100644 index 000000000..9280a73e6 --- /dev/null +++ b/src/components/IconAlignHorizontalCenter.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlignHorizontalCenter: React.FC = (props) => ( + + + + +) + +export { IconAlignHorizontalCenter } diff --git a/src/components/IconAlignHorizontalLeft.tsx b/src/components/IconAlignHorizontalLeft.tsx new file mode 100644 index 000000000..a74fd95a5 --- /dev/null +++ b/src/components/IconAlignHorizontalLeft.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlignHorizontalLeft: React.FC = (props) => ( + + + + +) + +export { IconAlignHorizontalLeft } diff --git a/src/components/IconAlignHorizontalRight.tsx b/src/components/IconAlignHorizontalRight.tsx new file mode 100644 index 000000000..ba888c5ab --- /dev/null +++ b/src/components/IconAlignHorizontalRight.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlignHorizontalRight: React.FC = (props) => ( + + + + +) + +export { IconAlignHorizontalRight } diff --git a/src/components/IconAlignVerticalBottom.tsx b/src/components/IconAlignVerticalBottom.tsx new file mode 100644 index 000000000..b1ceea28f --- /dev/null +++ b/src/components/IconAlignVerticalBottom.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlignVerticalBottom: React.FC = (props) => ( + + + + +) + +export { IconAlignVerticalBottom } diff --git a/src/components/IconAlignVerticalCenter.tsx b/src/components/IconAlignVerticalCenter.tsx new file mode 100644 index 000000000..c0394ae89 --- /dev/null +++ b/src/components/IconAlignVerticalCenter.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlignVerticalCenter: React.FC = (props) => ( + + + + +) + +export { IconAlignVerticalCenter } diff --git a/src/components/IconAlignVerticalTop.tsx b/src/components/IconAlignVerticalTop.tsx new file mode 100644 index 000000000..3f2eb94df --- /dev/null +++ b/src/components/IconAlignVerticalTop.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlignVerticalTop: React.FC = (props) => ( + + + + +) + +export { IconAlignVerticalTop } diff --git a/src/components/IconAllInbox.tsx b/src/components/IconAllInbox.tsx new file mode 100644 index 000000000..8ac86f212 --- /dev/null +++ b/src/components/IconAllInbox.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAllInbox: React.FC = (props) => ( + + + + +) + +export { IconAllInbox } diff --git a/src/components/IconAllInclusive.tsx b/src/components/IconAllInclusive.tsx new file mode 100644 index 000000000..e97187ac9 --- /dev/null +++ b/src/components/IconAllInclusive.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAllInclusive: React.FC = (props) => ( + + + + +) + +export { IconAllInclusive } diff --git a/src/components/IconAllOut.tsx b/src/components/IconAllOut.tsx new file mode 100644 index 000000000..7133fa665 --- /dev/null +++ b/src/components/IconAllOut.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAllOut: React.FC = (props) => ( + + + + +) + +export { IconAllOut } diff --git a/src/components/IconAltRoute.tsx b/src/components/IconAltRoute.tsx new file mode 100644 index 000000000..f0ba279c0 --- /dev/null +++ b/src/components/IconAltRoute.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconAltRoute: React.FC = (props) => ( + + + + + + +) + +export { IconAltRoute } diff --git a/src/components/IconAlternateEmail.tsx b/src/components/IconAlternateEmail.tsx new file mode 100644 index 000000000..7cefa64bb --- /dev/null +++ b/src/components/IconAlternateEmail.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlternateEmail: React.FC = (props) => ( + + + + +) + +export { IconAlternateEmail } diff --git a/src/components/IconAmpStories.tsx b/src/components/IconAmpStories.tsx new file mode 100644 index 000000000..df593bb13 --- /dev/null +++ b/src/components/IconAmpStories.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconAmpStories: React.FC = (props) => ( + + + + + + + + + + + + + +) + +export { IconAmpStories } diff --git a/src/components/IconAnalytics.tsx b/src/components/IconAnalytics.tsx new file mode 100644 index 000000000..1def19677 --- /dev/null +++ b/src/components/IconAnalytics.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAnalytics: React.FC = (props) => ( + + + + +) + +export { IconAnalytics } diff --git a/src/components/IconAnchor.tsx b/src/components/IconAnchor.tsx new file mode 100644 index 000000000..13221008e --- /dev/null +++ b/src/components/IconAnchor.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconAnchor: React.FC = (props) => ( + + + + + + +) + +export { IconAnchor } diff --git a/src/components/IconAndroid.tsx b/src/components/IconAndroid.tsx new file mode 100644 index 000000000..2adc43855 --- /dev/null +++ b/src/components/IconAndroid.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconAndroid: React.FC = (props) => ( + + + + + + +) + +export { IconAndroid } diff --git a/src/components/IconAnnouncement.tsx b/src/components/IconAnnouncement.tsx new file mode 100644 index 000000000..f934cebe7 --- /dev/null +++ b/src/components/IconAnnouncement.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAnnouncement: React.FC = (props) => ( + + + + +) + +export { IconAnnouncement } diff --git a/src/components/IconApartment.tsx b/src/components/IconApartment.tsx new file mode 100644 index 000000000..6a5c3902c --- /dev/null +++ b/src/components/IconApartment.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconApartment: React.FC = (props) => ( + + + + + + + + +) + +export { IconApartment } diff --git a/src/components/IconApi.tsx b/src/components/IconApi.tsx new file mode 100644 index 000000000..7476d40d6 --- /dev/null +++ b/src/components/IconApi.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconApi: React.FC = (props) => ( + + + + + + +) + +export { IconApi } diff --git a/src/components/IconAppBlocking.tsx b/src/components/IconAppBlocking.tsx new file mode 100644 index 000000000..b96fb01d6 --- /dev/null +++ b/src/components/IconAppBlocking.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAppBlocking: React.FC = (props) => ( + + + + +) + +export { IconAppBlocking } diff --git a/src/components/IconAppSettingsAlt.tsx b/src/components/IconAppSettingsAlt.tsx new file mode 100644 index 000000000..a49788e82 --- /dev/null +++ b/src/components/IconAppSettingsAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAppSettingsAlt: React.FC = (props) => ( + + + + +) + +export { IconAppSettingsAlt } diff --git a/src/components/IconApps.tsx b/src/components/IconApps.tsx new file mode 100644 index 000000000..32d7db169 --- /dev/null +++ b/src/components/IconApps.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconApps: React.FC = (props) => ( + + + + +) + +export { IconApps } diff --git a/src/components/IconArchitecture.tsx b/src/components/IconArchitecture.tsx new file mode 100644 index 000000000..27554ffb1 --- /dev/null +++ b/src/components/IconArchitecture.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconArchitecture: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconArchitecture } diff --git a/src/components/IconArchive.tsx b/src/components/IconArchive.tsx new file mode 100644 index 000000000..09348dbe4 --- /dev/null +++ b/src/components/IconArchive.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArchive: React.FC = (props) => ( + + + + +) + +export { IconArchive } diff --git a/src/components/IconArrowBack.tsx b/src/components/IconArrowBack.tsx new file mode 100644 index 000000000..2bc98a172 --- /dev/null +++ b/src/components/IconArrowBack.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowBack: React.FC = (props) => ( + + + + +) + +export { IconArrowBack } diff --git a/src/components/IconArrowBackIos.tsx b/src/components/IconArrowBackIos.tsx new file mode 100644 index 000000000..84db672d0 --- /dev/null +++ b/src/components/IconArrowBackIos.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowBackIos: React.FC = (props) => ( + + + + +) + +export { IconArrowBackIos } diff --git a/src/components/IconArrowCircleDown.tsx b/src/components/IconArrowCircleDown.tsx new file mode 100644 index 000000000..bafb95459 --- /dev/null +++ b/src/components/IconArrowCircleDown.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowCircleDown: React.FC = (props) => ( + + + + + + +) + +export { IconArrowCircleDown } diff --git a/src/components/IconArrowCircleUp.tsx b/src/components/IconArrowCircleUp.tsx new file mode 100644 index 000000000..096853bb9 --- /dev/null +++ b/src/components/IconArrowCircleUp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowCircleUp: React.FC = (props) => ( + + + + + + +) + +export { IconArrowCircleUp } diff --git a/src/components/IconArrowDownward.tsx b/src/components/IconArrowDownward.tsx new file mode 100644 index 000000000..5ec4b3b71 --- /dev/null +++ b/src/components/IconArrowDownward.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowDownward: React.FC = (props) => ( + + + + +) + +export { IconArrowDownward } diff --git a/src/components/IconArrowDropDown.tsx b/src/components/IconArrowDropDown.tsx new file mode 100644 index 000000000..daf185b1d --- /dev/null +++ b/src/components/IconArrowDropDown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowDropDown: React.FC = (props) => ( + + + + +) + +export { IconArrowDropDown } diff --git a/src/components/IconArrowDropDownCircle.tsx b/src/components/IconArrowDropDownCircle.tsx new file mode 100644 index 000000000..99cc6b7ec --- /dev/null +++ b/src/components/IconArrowDropDownCircle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowDropDownCircle: React.FC = (props) => ( + + + + +) + +export { IconArrowDropDownCircle } diff --git a/src/components/IconArrowDropUp.tsx b/src/components/IconArrowDropUp.tsx new file mode 100644 index 000000000..efcd7670d --- /dev/null +++ b/src/components/IconArrowDropUp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowDropUp: React.FC = (props) => ( + + + + +) + +export { IconArrowDropUp } diff --git a/src/components/IconArrowForward.tsx b/src/components/IconArrowForward.tsx new file mode 100644 index 000000000..f3b92265f --- /dev/null +++ b/src/components/IconArrowForward.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowForward: React.FC = (props) => ( + + + + +) + +export { IconArrowForward } diff --git a/src/components/IconArrowForwardIos.tsx b/src/components/IconArrowForwardIos.tsx new file mode 100644 index 000000000..fb9a869d5 --- /dev/null +++ b/src/components/IconArrowForwardIos.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowForwardIos: React.FC = (props) => ( + + + + +) + +export { IconArrowForwardIos } diff --git a/src/components/IconArrowLeft.tsx b/src/components/IconArrowLeft.tsx new file mode 100644 index 000000000..876f85668 --- /dev/null +++ b/src/components/IconArrowLeft.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowLeft: React.FC = (props) => ( + + + + +) + +export { IconArrowLeft } diff --git a/src/components/IconArrowRight.tsx b/src/components/IconArrowRight.tsx new file mode 100644 index 000000000..ec4733a4e --- /dev/null +++ b/src/components/IconArrowRight.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowRight: React.FC = (props) => ( + + + + +) + +export { IconArrowRight } diff --git a/src/components/IconArrowRightAlt.tsx b/src/components/IconArrowRightAlt.tsx new file mode 100644 index 000000000..8d2baf6d2 --- /dev/null +++ b/src/components/IconArrowRightAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowRightAlt: React.FC = (props) => ( + + + + +) + +export { IconArrowRightAlt } diff --git a/src/components/IconArrowUpward.tsx b/src/components/IconArrowUpward.tsx new file mode 100644 index 000000000..15254fb74 --- /dev/null +++ b/src/components/IconArrowUpward.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowUpward: React.FC = (props) => ( + + + + +) + +export { IconArrowUpward } diff --git a/src/components/IconArtTrack.tsx b/src/components/IconArtTrack.tsx new file mode 100644 index 000000000..2cc5e2281 --- /dev/null +++ b/src/components/IconArtTrack.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArtTrack: React.FC = (props) => ( + + + + +) + +export { IconArtTrack } diff --git a/src/components/IconArticle.tsx b/src/components/IconArticle.tsx new file mode 100644 index 000000000..8d15a3646 --- /dev/null +++ b/src/components/IconArticle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArticle: React.FC = (props) => ( + + + + +) + +export { IconArticle } diff --git a/src/components/IconAspectRatio.tsx b/src/components/IconAspectRatio.tsx new file mode 100644 index 000000000..66760989e --- /dev/null +++ b/src/components/IconAspectRatio.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAspectRatio: React.FC = (props) => ( + + + + +) + +export { IconAspectRatio } diff --git a/src/components/IconAssessment.tsx b/src/components/IconAssessment.tsx new file mode 100644 index 000000000..294050b53 --- /dev/null +++ b/src/components/IconAssessment.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssessment: React.FC = (props) => ( + + + + +) + +export { IconAssessment } diff --git a/src/components/IconAssignment.tsx b/src/components/IconAssignment.tsx new file mode 100644 index 000000000..03a28fafa --- /dev/null +++ b/src/components/IconAssignment.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssignment: React.FC = (props) => ( + + + + +) + +export { IconAssignment } diff --git a/src/components/IconAssignmentInd.tsx b/src/components/IconAssignmentInd.tsx new file mode 100644 index 000000000..b78feb9d0 --- /dev/null +++ b/src/components/IconAssignmentInd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssignmentInd: React.FC = (props) => ( + + + + +) + +export { IconAssignmentInd } diff --git a/src/components/IconAssignmentLate.tsx b/src/components/IconAssignmentLate.tsx new file mode 100644 index 000000000..3aeb76d39 --- /dev/null +++ b/src/components/IconAssignmentLate.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssignmentLate: React.FC = (props) => ( + + + + +) + +export { IconAssignmentLate } diff --git a/src/components/IconAssignmentReturn.tsx b/src/components/IconAssignmentReturn.tsx new file mode 100644 index 000000000..407101c94 --- /dev/null +++ b/src/components/IconAssignmentReturn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssignmentReturn: React.FC = (props) => ( + + + + +) + +export { IconAssignmentReturn } diff --git a/src/components/IconAssignmentReturned.tsx b/src/components/IconAssignmentReturned.tsx new file mode 100644 index 000000000..533de8770 --- /dev/null +++ b/src/components/IconAssignmentReturned.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssignmentReturned: React.FC = (props) => ( + + + + +) + +export { IconAssignmentReturned } diff --git a/src/components/IconAssignmentTurnedIn.tsx b/src/components/IconAssignmentTurnedIn.tsx new file mode 100644 index 000000000..3b94ea721 --- /dev/null +++ b/src/components/IconAssignmentTurnedIn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssignmentTurnedIn: React.FC = (props) => ( + + + + +) + +export { IconAssignmentTurnedIn } diff --git a/src/components/IconAssistant.tsx b/src/components/IconAssistant.tsx new file mode 100644 index 000000000..a29d64599 --- /dev/null +++ b/src/components/IconAssistant.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssistant: React.FC = (props) => ( + + + + +) + +export { IconAssistant } diff --git a/src/components/IconAssistantPhoto.tsx b/src/components/IconAssistantPhoto.tsx new file mode 100644 index 000000000..ffedc008a --- /dev/null +++ b/src/components/IconAssistantPhoto.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssistantPhoto: React.FC = (props) => ( + + + + +) + +export { IconAssistantPhoto } diff --git a/src/components/IconAtm.tsx b/src/components/IconAtm.tsx new file mode 100644 index 000000000..6f2a0a666 --- /dev/null +++ b/src/components/IconAtm.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAtm: React.FC = (props) => ( + + + + +) + +export { IconAtm } diff --git a/src/components/IconAttachEmail.tsx b/src/components/IconAttachEmail.tsx new file mode 100644 index 000000000..4014322f5 --- /dev/null +++ b/src/components/IconAttachEmail.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconAttachEmail: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconAttachEmail } diff --git a/src/components/IconAttachFile.tsx b/src/components/IconAttachFile.tsx new file mode 100644 index 000000000..61816bee0 --- /dev/null +++ b/src/components/IconAttachFile.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAttachFile: React.FC = (props) => ( + + + + +) + +export { IconAttachFile } diff --git a/src/components/IconAttachMoney.tsx b/src/components/IconAttachMoney.tsx new file mode 100644 index 000000000..950dc0372 --- /dev/null +++ b/src/components/IconAttachMoney.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAttachMoney: React.FC = (props) => ( + + + + +) + +export { IconAttachMoney } diff --git a/src/components/IconAttachment.tsx b/src/components/IconAttachment.tsx new file mode 100644 index 000000000..3fa8c84de --- /dev/null +++ b/src/components/IconAttachment.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAttachment: React.FC = (props) => ( + + + + +) + +export { IconAttachment } diff --git a/src/components/IconAudiotrack.tsx b/src/components/IconAudiotrack.tsx new file mode 100644 index 000000000..a9338acaf --- /dev/null +++ b/src/components/IconAudiotrack.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAudiotrack: React.FC = (props) => ( + + + + +) + +export { IconAudiotrack } diff --git a/src/components/IconAutoDelete.tsx b/src/components/IconAutoDelete.tsx new file mode 100644 index 000000000..4dd79a8c9 --- /dev/null +++ b/src/components/IconAutoDelete.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconAutoDelete: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconAutoDelete } diff --git a/src/components/IconAutorenew.tsx b/src/components/IconAutorenew.tsx new file mode 100644 index 000000000..54b4c82c0 --- /dev/null +++ b/src/components/IconAutorenew.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAutorenew: React.FC = (props) => ( + + + + +) + +export { IconAutorenew } diff --git a/src/components/IconAvTimer.tsx b/src/components/IconAvTimer.tsx new file mode 100644 index 000000000..b0c1069a7 --- /dev/null +++ b/src/components/IconAvTimer.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAvTimer: React.FC = (props) => ( + + + + +) + +export { IconAvTimer } diff --git a/src/components/IconBabyChangingStation.tsx b/src/components/IconBabyChangingStation.tsx new file mode 100644 index 000000000..1e5014937 --- /dev/null +++ b/src/components/IconBabyChangingStation.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconBabyChangingStation: React.FC = (props) => ( + + + + + + +) + +export { IconBabyChangingStation } diff --git a/src/components/IconBackpack.tsx b/src/components/IconBackpack.tsx new file mode 100644 index 000000000..05ff15046 --- /dev/null +++ b/src/components/IconBackpack.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconBackpack: React.FC = (props) => ( + + + + + + + + + + +) + +export { IconBackpack } diff --git a/src/components/IconBackspace.tsx b/src/components/IconBackspace.tsx new file mode 100644 index 000000000..363c5784a --- /dev/null +++ b/src/components/IconBackspace.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBackspace: React.FC = (props) => ( + + + + +) + +export { IconBackspace } diff --git a/src/components/IconBackup.tsx b/src/components/IconBackup.tsx new file mode 100644 index 000000000..7375954f4 --- /dev/null +++ b/src/components/IconBackup.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBackup: React.FC = (props) => ( + + + + +) + +export { IconBackup } diff --git a/src/components/IconBackupTable.tsx b/src/components/IconBackupTable.tsx new file mode 100644 index 000000000..23a85dc94 --- /dev/null +++ b/src/components/IconBackupTable.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconBackupTable: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconBackupTable } diff --git a/src/components/IconBallot.tsx b/src/components/IconBallot.tsx new file mode 100644 index 000000000..55e657370 --- /dev/null +++ b/src/components/IconBallot.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' +const IconBallot: React.FC = (props) => ( + + + + +) + +export { IconBallot } diff --git a/src/components/IconBarChart.tsx b/src/components/IconBarChart.tsx new file mode 100644 index 000000000..2acf1469b --- /dev/null +++ b/src/components/IconBarChart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBarChart: React.FC = (props) => ( + + + + +) + +export { IconBarChart } diff --git a/src/components/IconBatchPrediction.tsx b/src/components/IconBatchPrediction.tsx new file mode 100644 index 000000000..acf283ada --- /dev/null +++ b/src/components/IconBatchPrediction.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconBatchPrediction: React.FC = (props) => ( + + + + + + +) + +export { IconBatchPrediction } diff --git a/src/components/IconBathtub.tsx b/src/components/IconBathtub.tsx new file mode 100644 index 000000000..ee0df2501 --- /dev/null +++ b/src/components/IconBathtub.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconBathtub: React.FC = (props) => ( + + + + + + + + + + + + + + + +) + +export { IconBathtub } diff --git a/src/components/IconBatteryAlert.tsx b/src/components/IconBatteryAlert.tsx new file mode 100644 index 000000000..a7c216749 --- /dev/null +++ b/src/components/IconBatteryAlert.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBatteryAlert: React.FC = (props) => ( + + + + +) + +export { IconBatteryAlert } diff --git a/src/components/IconBatteryChargingFull.tsx b/src/components/IconBatteryChargingFull.tsx new file mode 100644 index 000000000..cff02c713 --- /dev/null +++ b/src/components/IconBatteryChargingFull.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBatteryChargingFull: React.FC = (props) => ( + + + + +) + +export { IconBatteryChargingFull } diff --git a/src/components/IconBatteryFull.tsx b/src/components/IconBatteryFull.tsx new file mode 100644 index 000000000..40b414133 --- /dev/null +++ b/src/components/IconBatteryFull.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBatteryFull: React.FC = (props) => ( + + + + +) + +export { IconBatteryFull } diff --git a/src/components/IconBatteryStd.tsx b/src/components/IconBatteryStd.tsx new file mode 100644 index 000000000..d7db89800 --- /dev/null +++ b/src/components/IconBatteryStd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBatteryStd: React.FC = (props) => ( + + + + +) + +export { IconBatteryStd } diff --git a/src/components/IconBatteryUnknown.tsx b/src/components/IconBatteryUnknown.tsx new file mode 100644 index 000000000..069ca1f5b --- /dev/null +++ b/src/components/IconBatteryUnknown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBatteryUnknown: React.FC = (props) => ( + + + + +) + +export { IconBatteryUnknown } diff --git a/src/components/IconBeachAccess.tsx b/src/components/IconBeachAccess.tsx new file mode 100644 index 000000000..d4011ce2c --- /dev/null +++ b/src/components/IconBeachAccess.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBeachAccess: React.FC = (props) => ( + + + + +) + +export { IconBeachAccess } diff --git a/src/components/IconBedtime.tsx b/src/components/IconBedtime.tsx new file mode 100644 index 000000000..cd12ec598 --- /dev/null +++ b/src/components/IconBedtime.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconBedtime: React.FC = (props) => ( + + + + + + + + + + +) + +export { IconBedtime } diff --git a/src/components/IconBeenhere.tsx b/src/components/IconBeenhere.tsx new file mode 100644 index 000000000..93372c29f --- /dev/null +++ b/src/components/IconBeenhere.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBeenhere: React.FC = (props) => ( + + + + +) + +export { IconBeenhere } diff --git a/src/components/IconBento.tsx b/src/components/IconBento.tsx new file mode 100644 index 000000000..681ea49d9 --- /dev/null +++ b/src/components/IconBento.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconBento: React.FC = (props) => ( + + + + + + +) + +export { IconBento } diff --git a/src/components/IconBikeScooter.tsx b/src/components/IconBikeScooter.tsx new file mode 100644 index 000000000..8b356492d --- /dev/null +++ b/src/components/IconBikeScooter.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconBikeScooter: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconBikeScooter } diff --git a/src/components/IconBiotech.tsx b/src/components/IconBiotech.tsx new file mode 100644 index 000000000..c54dc68bf --- /dev/null +++ b/src/components/IconBiotech.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconBiotech: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconBiotech } diff --git a/src/components/IconBlock.tsx b/src/components/IconBlock.tsx new file mode 100644 index 000000000..d59665e67 --- /dev/null +++ b/src/components/IconBlock.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBlock: React.FC = (props) => ( + + + + +) + +export { IconBlock } diff --git a/src/components/IconBluetooth.tsx b/src/components/IconBluetooth.tsx new file mode 100644 index 000000000..b59939299 --- /dev/null +++ b/src/components/IconBluetooth.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBluetooth: React.FC = (props) => ( + + + + +) + +export { IconBluetooth } diff --git a/src/components/IconBluetoothAudio.tsx b/src/components/IconBluetoothAudio.tsx new file mode 100644 index 000000000..f99db08fb --- /dev/null +++ b/src/components/IconBluetoothAudio.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBluetoothAudio: React.FC = (props) => ( + + + + +) + +export { IconBluetoothAudio } diff --git a/src/components/IconBluetoothConnected.tsx b/src/components/IconBluetoothConnected.tsx new file mode 100644 index 000000000..cef9be5d1 --- /dev/null +++ b/src/components/IconBluetoothConnected.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBluetoothConnected: React.FC = (props) => ( + + + + +) + +export { IconBluetoothConnected } diff --git a/src/components/IconBluetoothDisabled.tsx b/src/components/IconBluetoothDisabled.tsx new file mode 100644 index 000000000..3e277474f --- /dev/null +++ b/src/components/IconBluetoothDisabled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBluetoothDisabled: React.FC = (props) => ( + + + + +) + +export { IconBluetoothDisabled } diff --git a/src/components/IconBluetoothSearching.tsx b/src/components/IconBluetoothSearching.tsx new file mode 100644 index 000000000..9084743db --- /dev/null +++ b/src/components/IconBluetoothSearching.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBluetoothSearching: React.FC = (props) => ( + + + + +) + +export { IconBluetoothSearching } diff --git a/src/components/IconBlurCircular.tsx b/src/components/IconBlurCircular.tsx new file mode 100644 index 000000000..3c4f490fe --- /dev/null +++ b/src/components/IconBlurCircular.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBlurCircular: React.FC = (props) => ( + + + + +) + +export { IconBlurCircular } diff --git a/src/components/IconBlurLinear.tsx b/src/components/IconBlurLinear.tsx new file mode 100644 index 000000000..bef7faf09 --- /dev/null +++ b/src/components/IconBlurLinear.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBlurLinear: React.FC = (props) => ( + + + + +) + +export { IconBlurLinear } diff --git a/src/components/IconBlurOff.tsx b/src/components/IconBlurOff.tsx new file mode 100644 index 000000000..f1ada3668 --- /dev/null +++ b/src/components/IconBlurOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBlurOff: React.FC = (props) => ( + + + + +) + +export { IconBlurOff } diff --git a/src/components/IconBlurOn.tsx b/src/components/IconBlurOn.tsx new file mode 100644 index 000000000..af1e3f580 --- /dev/null +++ b/src/components/IconBlurOn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBlurOn: React.FC = (props) => ( + + + + +) + +export { IconBlurOn } diff --git a/src/components/IconBook.tsx b/src/components/IconBook.tsx new file mode 100644 index 000000000..75eb11c03 --- /dev/null +++ b/src/components/IconBook.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBook: React.FC = (props) => ( + + + + +) + +export { IconBook } diff --git a/src/components/IconBookOnline.tsx b/src/components/IconBookOnline.tsx new file mode 100644 index 000000000..07f06128a --- /dev/null +++ b/src/components/IconBookOnline.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconBookOnline: React.FC = (props) => ( + + + + + + +) + +export { IconBookOnline } diff --git a/src/components/IconBookmark.tsx b/src/components/IconBookmark.tsx new file mode 100644 index 000000000..bae8acc5a --- /dev/null +++ b/src/components/IconBookmark.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBookmark: React.FC = (props) => ( + + + + +) + +export { IconBookmark } diff --git a/src/components/IconBookmarkBorder.tsx b/src/components/IconBookmarkBorder.tsx new file mode 100644 index 000000000..282403da0 --- /dev/null +++ b/src/components/IconBookmarkBorder.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBookmarkBorder: React.FC = (props) => ( + + + + +) + +export { IconBookmarkBorder } diff --git a/src/components/IconBookmarks.tsx b/src/components/IconBookmarks.tsx new file mode 100644 index 000000000..aa036032d --- /dev/null +++ b/src/components/IconBookmarks.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBookmarks: React.FC = (props) => ( + + + + +) + +export { IconBookmarks } diff --git a/src/components/IconBorderAll.tsx b/src/components/IconBorderAll.tsx new file mode 100644 index 000000000..41354c563 --- /dev/null +++ b/src/components/IconBorderAll.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderAll: React.FC = (props) => ( + + + + +) + +export { IconBorderAll } diff --git a/src/components/IconBorderBottom.tsx b/src/components/IconBorderBottom.tsx new file mode 100644 index 000000000..ebf89f81e --- /dev/null +++ b/src/components/IconBorderBottom.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderBottom: React.FC = (props) => ( + + + + +) + +export { IconBorderBottom } diff --git a/src/components/IconBorderClear.tsx b/src/components/IconBorderClear.tsx new file mode 100644 index 000000000..0f25169ea --- /dev/null +++ b/src/components/IconBorderClear.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderClear: React.FC = (props) => ( + + + + +) + +export { IconBorderClear } diff --git a/src/components/IconBorderHorizontal.tsx b/src/components/IconBorderHorizontal.tsx new file mode 100644 index 000000000..46a1bab72 --- /dev/null +++ b/src/components/IconBorderHorizontal.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderHorizontal: React.FC = (props) => ( + + + + +) + +export { IconBorderHorizontal } diff --git a/src/components/IconBorderInner.tsx b/src/components/IconBorderInner.tsx new file mode 100644 index 000000000..8b6818a34 --- /dev/null +++ b/src/components/IconBorderInner.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderInner: React.FC = (props) => ( + + + + +) + +export { IconBorderInner } diff --git a/src/components/IconBorderLeft.tsx b/src/components/IconBorderLeft.tsx new file mode 100644 index 000000000..1f7f2bc47 --- /dev/null +++ b/src/components/IconBorderLeft.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderLeft: React.FC = (props) => ( + + + + +) + +export { IconBorderLeft } diff --git a/src/components/IconBorderOuter.tsx b/src/components/IconBorderOuter.tsx new file mode 100644 index 000000000..55c1370ea --- /dev/null +++ b/src/components/IconBorderOuter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderOuter: React.FC = (props) => ( + + + + +) + +export { IconBorderOuter } diff --git a/src/components/IconBorderRight.tsx b/src/components/IconBorderRight.tsx new file mode 100644 index 000000000..2576323bd --- /dev/null +++ b/src/components/IconBorderRight.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderRight: React.FC = (props) => ( + + + + +) + +export { IconBorderRight } diff --git a/src/components/IconBorderStyle.tsx b/src/components/IconBorderStyle.tsx new file mode 100644 index 000000000..d1c31e467 --- /dev/null +++ b/src/components/IconBorderStyle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderStyle: React.FC = (props) => ( + + + + +) + +export { IconBorderStyle } diff --git a/src/components/IconBorderTop.tsx b/src/components/IconBorderTop.tsx new file mode 100644 index 000000000..95b56e1fb --- /dev/null +++ b/src/components/IconBorderTop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderTop: React.FC = (props) => ( + + + + +) + +export { IconBorderTop } diff --git a/src/components/IconBorderVertical.tsx b/src/components/IconBorderVertical.tsx new file mode 100644 index 000000000..dcf6d9636 --- /dev/null +++ b/src/components/IconBorderVertical.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderVertical: React.FC = (props) => ( + + + + +) + +export { IconBorderVertical } diff --git a/src/components/IconBrandingWatermark.tsx b/src/components/IconBrandingWatermark.tsx new file mode 100644 index 000000000..a424bd4cf --- /dev/null +++ b/src/components/IconBrandingWatermark.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrandingWatermark: React.FC = (props) => ( + + + + +) + +export { IconBrandingWatermark } diff --git a/src/components/IconBrightness1.tsx b/src/components/IconBrightness1.tsx new file mode 100644 index 000000000..55b370fe5 --- /dev/null +++ b/src/components/IconBrightness1.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightness1: React.FC = (props) => ( + + + + +) + +export { IconBrightness1 } diff --git a/src/components/IconBrightness2.tsx b/src/components/IconBrightness2.tsx new file mode 100644 index 000000000..45ffccc11 --- /dev/null +++ b/src/components/IconBrightness2.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightness2: React.FC = (props) => ( + + + + +) + +export { IconBrightness2 } diff --git a/src/components/IconBrightness3.tsx b/src/components/IconBrightness3.tsx new file mode 100644 index 000000000..17ed1149b --- /dev/null +++ b/src/components/IconBrightness3.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightness3: React.FC = (props) => ( + + + + +) + +export { IconBrightness3 } diff --git a/src/components/IconBrightness4.tsx b/src/components/IconBrightness4.tsx new file mode 100644 index 000000000..108e2e94d --- /dev/null +++ b/src/components/IconBrightness4.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightness4: React.FC = (props) => ( + + + + +) + +export { IconBrightness4 } diff --git a/src/components/IconBrightness5.tsx b/src/components/IconBrightness5.tsx new file mode 100644 index 000000000..fde007d88 --- /dev/null +++ b/src/components/IconBrightness5.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightness5: React.FC = (props) => ( + + + + +) + +export { IconBrightness5 } diff --git a/src/components/IconBrightness6.tsx b/src/components/IconBrightness6.tsx new file mode 100644 index 000000000..038cc3e7a --- /dev/null +++ b/src/components/IconBrightness6.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightness6: React.FC = (props) => ( + + + + +) + +export { IconBrightness6 } diff --git a/src/components/IconBrightness7.tsx b/src/components/IconBrightness7.tsx new file mode 100644 index 000000000..c16532d43 --- /dev/null +++ b/src/components/IconBrightness7.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightness7: React.FC = (props) => ( + + + + +) + +export { IconBrightness7 } diff --git a/src/components/IconBrightnessAuto.tsx b/src/components/IconBrightnessAuto.tsx new file mode 100644 index 000000000..9ccc5d7d3 --- /dev/null +++ b/src/components/IconBrightnessAuto.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightnessAuto: React.FC = (props) => ( + + + + +) + +export { IconBrightnessAuto } diff --git a/src/components/IconBrightnessHigh.tsx b/src/components/IconBrightnessHigh.tsx new file mode 100644 index 000000000..65343480f --- /dev/null +++ b/src/components/IconBrightnessHigh.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightnessHigh: React.FC = (props) => ( + + + + +) + +export { IconBrightnessHigh } diff --git a/src/components/IconBrightnessLow.tsx b/src/components/IconBrightnessLow.tsx new file mode 100644 index 000000000..1fa34f8b6 --- /dev/null +++ b/src/components/IconBrightnessLow.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightnessLow: React.FC = (props) => ( + + + + +) + +export { IconBrightnessLow } diff --git a/src/components/IconBrightnessMedium.tsx b/src/components/IconBrightnessMedium.tsx new file mode 100644 index 000000000..96479c7fe --- /dev/null +++ b/src/components/IconBrightnessMedium.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightnessMedium: React.FC = (props) => ( + + + + +) + +export { IconBrightnessMedium } diff --git a/src/components/IconBrokenImage.tsx b/src/components/IconBrokenImage.tsx new file mode 100644 index 000000000..cabb63384 --- /dev/null +++ b/src/components/IconBrokenImage.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrokenImage: React.FC = (props) => ( + + + + + +) + +export { IconBrokenImage } diff --git a/src/components/IconBrowserNotSupported.tsx b/src/components/IconBrowserNotSupported.tsx new file mode 100644 index 000000000..4dc9e41e7 --- /dev/null +++ b/src/components/IconBrowserNotSupported.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrowserNotSupported: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconBrowserNotSupported } diff --git a/src/components/IconBrush.tsx b/src/components/IconBrush.tsx new file mode 100644 index 000000000..522193230 --- /dev/null +++ b/src/components/IconBrush.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrush: React.FC = (props) => ( + + + + +) + +export { IconBrush } diff --git a/src/components/IconBubbleChart.tsx b/src/components/IconBubbleChart.tsx new file mode 100644 index 000000000..d83c6ea97 --- /dev/null +++ b/src/components/IconBubbleChart.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconBubbleChart: React.FC = (props) => ( + + + + + + +) + +export { IconBubbleChart } diff --git a/src/components/IconBugReport.tsx b/src/components/IconBugReport.tsx new file mode 100644 index 000000000..da9713682 --- /dev/null +++ b/src/components/IconBugReport.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBugReport: React.FC = (props) => ( + + + + +) + +export { IconBugReport } diff --git a/src/components/IconBuild.tsx b/src/components/IconBuild.tsx new file mode 100644 index 000000000..670360e49 --- /dev/null +++ b/src/components/IconBuild.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBuild: React.FC = (props) => ( + + + + +) + +export { IconBuild } diff --git a/src/components/IconBuildCircle.tsx b/src/components/IconBuildCircle.tsx new file mode 100644 index 000000000..742aa466a --- /dev/null +++ b/src/components/IconBuildCircle.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconBuildCircle: React.FC = (props) => ( + + + + + + + + + + +) + +export { IconBuildCircle } diff --git a/src/components/IconBurstMode.tsx b/src/components/IconBurstMode.tsx new file mode 100644 index 000000000..40288ce84 --- /dev/null +++ b/src/components/IconBurstMode.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBurstMode: React.FC = (props) => ( + + + + +) + +export { IconBurstMode } diff --git a/src/components/IconBusiness.tsx b/src/components/IconBusiness.tsx new file mode 100644 index 000000000..24d02cb22 --- /dev/null +++ b/src/components/IconBusiness.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBusiness: React.FC = (props) => ( + + + + +) + +export { IconBusiness } diff --git a/src/components/IconBusinessCenter.tsx b/src/components/IconBusinessCenter.tsx new file mode 100644 index 000000000..ce3e57137 --- /dev/null +++ b/src/components/IconBusinessCenter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBusinessCenter: React.FC = (props) => ( + + + + +) + +export { IconBusinessCenter } diff --git a/src/components/IconCached.tsx b/src/components/IconCached.tsx new file mode 100644 index 000000000..6cc435115 --- /dev/null +++ b/src/components/IconCached.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCached: React.FC = (props) => ( + + + + +) + +export { IconCached } diff --git a/src/components/IconCake.tsx b/src/components/IconCake.tsx new file mode 100644 index 000000000..8d689c8e0 --- /dev/null +++ b/src/components/IconCake.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCake: React.FC = (props) => ( + + + + +) + +export { IconCake } diff --git a/src/components/IconCalculate.tsx b/src/components/IconCalculate.tsx new file mode 100644 index 000000000..de66ef033 --- /dev/null +++ b/src/components/IconCalculate.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconCalculate: React.FC = (props) => ( + + + + + + + + +) + +export { IconCalculate } diff --git a/src/components/IconCalendarToday.tsx b/src/components/IconCalendarToday.tsx new file mode 100644 index 000000000..856e41101 --- /dev/null +++ b/src/components/IconCalendarToday.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCalendarToday: React.FC = (props) => ( + + + + +) + +export { IconCalendarToday } diff --git a/src/components/IconCalendarViewDay.tsx b/src/components/IconCalendarViewDay.tsx new file mode 100644 index 000000000..ea74b60a4 --- /dev/null +++ b/src/components/IconCalendarViewDay.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCalendarViewDay: React.FC = (props) => ( + + + + +) + +export { IconCalendarViewDay } diff --git a/src/components/IconCall.tsx b/src/components/IconCall.tsx new file mode 100644 index 000000000..e3b7434ec --- /dev/null +++ b/src/components/IconCall.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCall: React.FC = (props) => ( + + + + +) + +export { IconCall } diff --git a/src/components/IconCallEnd.tsx b/src/components/IconCallEnd.tsx new file mode 100644 index 000000000..4ec40f33d --- /dev/null +++ b/src/components/IconCallEnd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCallEnd: React.FC = (props) => ( + + + + +) + +export { IconCallEnd } diff --git a/src/components/IconCallMade.tsx b/src/components/IconCallMade.tsx new file mode 100644 index 000000000..af2b89614 --- /dev/null +++ b/src/components/IconCallMade.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCallMade: React.FC = (props) => ( + + + + +) + +export { IconCallMade } diff --git a/src/components/IconCallMerge.tsx b/src/components/IconCallMerge.tsx new file mode 100644 index 000000000..749e59e4e --- /dev/null +++ b/src/components/IconCallMerge.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCallMerge: React.FC = (props) => ( + + + + +) + +export { IconCallMerge } diff --git a/src/components/IconCallMissed.tsx b/src/components/IconCallMissed.tsx new file mode 100644 index 000000000..ad9b243b6 --- /dev/null +++ b/src/components/IconCallMissed.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCallMissed: React.FC = (props) => ( + + + + +) + +export { IconCallMissed } diff --git a/src/components/IconCallMissedOutgoing.tsx b/src/components/IconCallMissedOutgoing.tsx new file mode 100644 index 000000000..9e222e110 --- /dev/null +++ b/src/components/IconCallMissedOutgoing.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconCallMissedOutgoing: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconCallMissedOutgoing } diff --git a/src/components/IconCallReceived.tsx b/src/components/IconCallReceived.tsx new file mode 100644 index 000000000..cce23c6d2 --- /dev/null +++ b/src/components/IconCallReceived.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCallReceived: React.FC = (props) => ( + + + + +) + +export { IconCallReceived } diff --git a/src/components/IconCallSplit.tsx b/src/components/IconCallSplit.tsx new file mode 100644 index 000000000..df6aad8a0 --- /dev/null +++ b/src/components/IconCallSplit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCallSplit: React.FC = (props) => ( + + + + +) + +export { IconCallSplit } diff --git a/src/components/IconCallToAction.tsx b/src/components/IconCallToAction.tsx new file mode 100644 index 000000000..39e0a3097 --- /dev/null +++ b/src/components/IconCallToAction.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCallToAction: React.FC = (props) => ( + + + + +) + +export { IconCallToAction } diff --git a/src/components/IconCamera.tsx b/src/components/IconCamera.tsx new file mode 100644 index 000000000..090a15048 --- /dev/null +++ b/src/components/IconCamera.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCamera: React.FC = (props) => ( + + + + +) + +export { IconCamera } diff --git a/src/components/IconCameraAlt.tsx b/src/components/IconCameraAlt.tsx new file mode 100644 index 000000000..bdc11aff8 --- /dev/null +++ b/src/components/IconCameraAlt.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconCameraAlt: React.FC = (props) => ( + + + + + +) + +export { IconCameraAlt } diff --git a/src/components/IconCameraEnhance.tsx b/src/components/IconCameraEnhance.tsx new file mode 100644 index 000000000..afcf4c274 --- /dev/null +++ b/src/components/IconCameraEnhance.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconCameraEnhance: React.FC = (props) => ( + + + + + +) + +export { IconCameraEnhance } diff --git a/src/components/IconCameraFront.tsx b/src/components/IconCameraFront.tsx new file mode 100644 index 000000000..639748750 --- /dev/null +++ b/src/components/IconCameraFront.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCameraFront: React.FC = (props) => ( + + + + +) + +export { IconCameraFront } diff --git a/src/components/IconCameraRear.tsx b/src/components/IconCameraRear.tsx new file mode 100644 index 000000000..82354ecd3 --- /dev/null +++ b/src/components/IconCameraRear.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCameraRear: React.FC = (props) => ( + + + + +) + +export { IconCameraRear } diff --git a/src/components/IconCameraRoll.tsx b/src/components/IconCameraRoll.tsx new file mode 100644 index 000000000..04e76f3cf --- /dev/null +++ b/src/components/IconCameraRoll.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCameraRoll: React.FC = (props) => ( + + + + +) + +export { IconCameraRoll } diff --git a/src/components/IconCampaign.tsx b/src/components/IconCampaign.tsx new file mode 100644 index 000000000..7c317ef41 --- /dev/null +++ b/src/components/IconCampaign.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCampaign: React.FC = (props) => ( + + + + +) + +export { IconCampaign } diff --git a/src/components/IconCancel.tsx b/src/components/IconCancel.tsx new file mode 100644 index 000000000..24eee30c3 --- /dev/null +++ b/src/components/IconCancel.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCancel: React.FC = (props) => ( + + + + +) + +export { IconCancel } diff --git a/src/components/IconCancelPresentation.tsx b/src/components/IconCancelPresentation.tsx new file mode 100644 index 000000000..0abdc30dd --- /dev/null +++ b/src/components/IconCancelPresentation.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconCancelPresentation: React.FC = (props) => ( + + + + + + +) + +export { IconCancelPresentation } diff --git a/src/components/IconCancelScheduleSend.tsx b/src/components/IconCancelScheduleSend.tsx new file mode 100644 index 000000000..7a9fc5326 --- /dev/null +++ b/src/components/IconCancelScheduleSend.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconCancelScheduleSend: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconCancelScheduleSend } diff --git a/src/components/IconCardGiftcard.tsx b/src/components/IconCardGiftcard.tsx new file mode 100644 index 000000000..fa36e6b59 --- /dev/null +++ b/src/components/IconCardGiftcard.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCardGiftcard: React.FC = (props) => ( + + + + +) + +export { IconCardGiftcard } diff --git a/src/components/IconCardMembership.tsx b/src/components/IconCardMembership.tsx new file mode 100644 index 000000000..ad3f16dff --- /dev/null +++ b/src/components/IconCardMembership.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCardMembership: React.FC = (props) => ( + + + + +) + +export { IconCardMembership } diff --git a/src/components/IconCardTravel.tsx b/src/components/IconCardTravel.tsx new file mode 100644 index 000000000..e4a8959a3 --- /dev/null +++ b/src/components/IconCardTravel.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCardTravel: React.FC = (props) => ( + + + + +) + +export { IconCardTravel } diff --git a/src/components/IconCarpenter.tsx b/src/components/IconCarpenter.tsx new file mode 100644 index 000000000..72f7368a1 --- /dev/null +++ b/src/components/IconCarpenter.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconCarpenter: React.FC = (props) => ( + + + + +) + +export { IconCarpenter } diff --git a/src/components/IconCasino.tsx b/src/components/IconCasino.tsx new file mode 100644 index 000000000..48a6d701e --- /dev/null +++ b/src/components/IconCasino.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconCasino: React.FC = (props) => ( + + + + +) + +export { IconCasino } diff --git a/src/components/IconCast.tsx b/src/components/IconCast.tsx new file mode 100644 index 000000000..936f697b2 --- /dev/null +++ b/src/components/IconCast.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconCast: React.FC = (props) => ( + + + + + +) + +export { IconCast } diff --git a/src/components/IconCastConnected.tsx b/src/components/IconCastConnected.tsx new file mode 100644 index 000000000..8da641949 --- /dev/null +++ b/src/components/IconCastConnected.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconCastConnected: React.FC = (props) => ( + + + + + +) + +export { IconCastConnected } diff --git a/src/components/IconCastForEducation.tsx b/src/components/IconCastForEducation.tsx new file mode 100644 index 000000000..5e8eecb32 --- /dev/null +++ b/src/components/IconCastForEducation.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconCastForEducation: React.FC = (props) => ( + + + + + + +) + +export { IconCastForEducation } diff --git a/src/components/IconCategory.tsx b/src/components/IconCategory.tsx new file mode 100644 index 000000000..8b7106ccd --- /dev/null +++ b/src/components/IconCategory.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconCategory: React.FC = (props) => ( + + + + + + +) + +export { IconCategory } diff --git a/src/components/IconCenterFocusStrong.tsx b/src/components/IconCenterFocusStrong.tsx new file mode 100644 index 000000000..e1caf9f1a --- /dev/null +++ b/src/components/IconCenterFocusStrong.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCenterFocusStrong: React.FC = (props) => ( + + + + +) + +export { IconCenterFocusStrong } diff --git a/src/components/IconCenterFocusWeak.tsx b/src/components/IconCenterFocusWeak.tsx new file mode 100644 index 000000000..1c70f3c20 --- /dev/null +++ b/src/components/IconCenterFocusWeak.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCenterFocusWeak: React.FC = (props) => ( + + + + +) + +export { IconCenterFocusWeak } diff --git a/src/components/IconChangeHistory.tsx b/src/components/IconChangeHistory.tsx new file mode 100644 index 000000000..73afcdb5e --- /dev/null +++ b/src/components/IconChangeHistory.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconChangeHistory: React.FC = (props) => ( + + + + +) + +export { IconChangeHistory } diff --git a/src/components/IconChargingStation.tsx b/src/components/IconChargingStation.tsx new file mode 100644 index 000000000..d927e714c --- /dev/null +++ b/src/components/IconChargingStation.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconChargingStation: React.FC = (props) => ( + + + + + + +) + +export { IconChargingStation } diff --git a/src/components/IconChat.tsx b/src/components/IconChat.tsx new file mode 100644 index 000000000..d7cbe0ed0 --- /dev/null +++ b/src/components/IconChat.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconChat: React.FC = (props) => ( + + + + +) + +export { IconChat } diff --git a/src/components/IconChatBubble.tsx b/src/components/IconChatBubble.tsx new file mode 100644 index 000000000..a028640bc --- /dev/null +++ b/src/components/IconChatBubble.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconChatBubble: React.FC = (props) => ( + + + + +) + +export { IconChatBubble } diff --git a/src/components/IconChatBubbleOutline.tsx b/src/components/IconChatBubbleOutline.tsx new file mode 100644 index 000000000..91cb745d7 --- /dev/null +++ b/src/components/IconChatBubbleOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconChatBubbleOutline: React.FC = (props) => ( + + + + +) + +export { IconChatBubbleOutline } diff --git a/src/components/IconCheck.tsx b/src/components/IconCheck.tsx new file mode 100644 index 000000000..9456948c3 --- /dev/null +++ b/src/components/IconCheck.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCheck: React.FC = (props) => ( + + + + +) + +export { IconCheck } diff --git a/src/components/IconCheckBox.tsx b/src/components/IconCheckBox.tsx new file mode 100644 index 000000000..3ea35a4f6 --- /dev/null +++ b/src/components/IconCheckBox.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCheckBox: React.FC = (props) => ( + + + + +) + +export { IconCheckBox } diff --git a/src/components/IconCheckBoxOutlineBlank.tsx b/src/components/IconCheckBoxOutlineBlank.tsx new file mode 100644 index 000000000..d33e9d137 --- /dev/null +++ b/src/components/IconCheckBoxOutlineBlank.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCheckBoxOutlineBlank: React.FC = (props) => ( + + + + +) + +export { IconCheckBoxOutlineBlank } diff --git a/src/components/IconCheckCircle.tsx b/src/components/IconCheckCircle.tsx new file mode 100644 index 000000000..76c53325f --- /dev/null +++ b/src/components/IconCheckCircle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCheckCircle: React.FC = (props) => ( + + + + +) + +export { IconCheckCircle } diff --git a/src/components/IconCheckCircleOutline.tsx b/src/components/IconCheckCircleOutline.tsx new file mode 100644 index 000000000..c485c03a6 --- /dev/null +++ b/src/components/IconCheckCircleOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCheckCircleOutline: React.FC = (props) => ( + + + + +) + +export { IconCheckCircleOutline } diff --git a/src/components/IconCheckroom.tsx b/src/components/IconCheckroom.tsx new file mode 100644 index 000000000..e99884b63 --- /dev/null +++ b/src/components/IconCheckroom.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconCheckroom: React.FC = (props) => ( + + + + + + +) + +export { IconCheckroom } diff --git a/src/components/IconChevronLeft.tsx b/src/components/IconChevronLeft.tsx new file mode 100644 index 000000000..6d386ee85 --- /dev/null +++ b/src/components/IconChevronLeft.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconChevronLeft: React.FC = (props) => ( + + + + +) + +export { IconChevronLeft } diff --git a/src/components/IconChevronRight.tsx b/src/components/IconChevronRight.tsx new file mode 100644 index 000000000..e1d8713c1 --- /dev/null +++ b/src/components/IconChevronRight.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconChevronRight: React.FC = (props) => ( + + + + +) + +export { IconChevronRight } diff --git a/src/components/IconChildCare.tsx b/src/components/IconChildCare.tsx new file mode 100644 index 000000000..bcfe23dc5 --- /dev/null +++ b/src/components/IconChildCare.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconChildCare: React.FC = (props) => ( + + + + + + +) + +export { IconChildCare } diff --git a/src/components/IconChildFriendly.tsx b/src/components/IconChildFriendly.tsx new file mode 100644 index 000000000..324dff27b --- /dev/null +++ b/src/components/IconChildFriendly.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconChildFriendly: React.FC = (props) => ( + + + + +) + +export { IconChildFriendly } diff --git a/src/components/IconChromeReaderMode.tsx b/src/components/IconChromeReaderMode.tsx new file mode 100644 index 000000000..9fb08f5d0 --- /dev/null +++ b/src/components/IconChromeReaderMode.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconChromeReaderMode: React.FC = (props) => ( + + + + +) + +export { IconChromeReaderMode } diff --git a/src/components/IconClass.tsx b/src/components/IconClass.tsx new file mode 100644 index 000000000..e35f7567f --- /dev/null +++ b/src/components/IconClass.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconClass: React.FC = (props) => ( + + + + +) + +export { IconClass } diff --git a/src/components/IconCleanHands.tsx b/src/components/IconCleanHands.tsx new file mode 100644 index 000000000..1ff731cd4 --- /dev/null +++ b/src/components/IconCleanHands.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconCleanHands: React.FC = (props) => ( + + + + +) + +export { IconCleanHands } diff --git a/src/components/IconCleaningServices.tsx b/src/components/IconCleaningServices.tsx new file mode 100644 index 000000000..4ae2b8c03 --- /dev/null +++ b/src/components/IconCleaningServices.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconCleaningServices: React.FC = (props) => ( + + + + + + + + +) + +export { IconCleaningServices } diff --git a/src/components/IconClear.tsx b/src/components/IconClear.tsx new file mode 100644 index 000000000..4522790cd --- /dev/null +++ b/src/components/IconClear.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconClear: React.FC = (props) => ( + + + + +) + +export { IconClear } diff --git a/src/components/IconClearAll.tsx b/src/components/IconClearAll.tsx new file mode 100644 index 000000000..8c1f5e869 --- /dev/null +++ b/src/components/IconClearAll.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconClearAll: React.FC = (props) => ( + + + + +) + +export { IconClearAll } diff --git a/src/components/IconClose.tsx b/src/components/IconClose.tsx new file mode 100644 index 000000000..65a9897f3 --- /dev/null +++ b/src/components/IconClose.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconClose: React.FC = (props) => ( + + + + +) + +export { IconClose } diff --git a/src/components/IconCloseFullscreen.tsx b/src/components/IconCloseFullscreen.tsx new file mode 100644 index 000000000..72a0e0c61 --- /dev/null +++ b/src/components/IconCloseFullscreen.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconCloseFullscreen: React.FC = (props) => ( + + + + +) + +export { IconCloseFullscreen } diff --git a/src/components/IconClosedCaption.tsx b/src/components/IconClosedCaption.tsx new file mode 100644 index 000000000..d66c85e97 --- /dev/null +++ b/src/components/IconClosedCaption.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconClosedCaption: React.FC = (props) => ( + + + + +) + +export { IconClosedCaption } diff --git a/src/components/IconClosedCaptionDisabled.tsx b/src/components/IconClosedCaptionDisabled.tsx new file mode 100644 index 000000000..04cf82539 --- /dev/null +++ b/src/components/IconClosedCaptionDisabled.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconClosedCaptionDisabled: React.FC = (props) => ( + + + + +) + +export { IconClosedCaptionDisabled } diff --git a/src/components/IconCloud.tsx b/src/components/IconCloud.tsx new file mode 100644 index 000000000..54f9da662 --- /dev/null +++ b/src/components/IconCloud.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCloud: React.FC = (props) => ( + + + + +) + +export { IconCloud } diff --git a/src/components/IconCloudCircle.tsx b/src/components/IconCloudCircle.tsx new file mode 100644 index 000000000..c74c20b76 --- /dev/null +++ b/src/components/IconCloudCircle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCloudCircle: React.FC = (props) => ( + + + + +) + +export { IconCloudCircle } diff --git a/src/components/IconCloudDone.tsx b/src/components/IconCloudDone.tsx new file mode 100644 index 000000000..469e6552f --- /dev/null +++ b/src/components/IconCloudDone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCloudDone: React.FC = (props) => ( + + + + +) + +export { IconCloudDone } diff --git a/src/components/IconCloudDownload.tsx b/src/components/IconCloudDownload.tsx new file mode 100644 index 000000000..acd57a297 --- /dev/null +++ b/src/components/IconCloudDownload.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCloudDownload: React.FC = (props) => ( + + + + +) + +export { IconCloudDownload } diff --git a/src/components/IconCloudOff.tsx b/src/components/IconCloudOff.tsx new file mode 100644 index 000000000..49fc8e2cd --- /dev/null +++ b/src/components/IconCloudOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCloudOff: React.FC = (props) => ( + + + + +) + +export { IconCloudOff } diff --git a/src/components/IconCloudQueue.tsx b/src/components/IconCloudQueue.tsx new file mode 100644 index 000000000..4d2e1facf --- /dev/null +++ b/src/components/IconCloudQueue.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCloudQueue: React.FC = (props) => ( + + + + +) + +export { IconCloudQueue } diff --git a/src/components/IconCloudUpload.tsx b/src/components/IconCloudUpload.tsx new file mode 100644 index 000000000..df766da9f --- /dev/null +++ b/src/components/IconCloudUpload.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCloudUpload: React.FC = (props) => ( + + + + +) + +export { IconCloudUpload } diff --git a/src/components/IconCode.tsx b/src/components/IconCode.tsx new file mode 100644 index 000000000..5473e962c --- /dev/null +++ b/src/components/IconCode.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCode: React.FC = (props) => ( + + + + +) + +export { IconCode } diff --git a/src/components/IconCollections.tsx b/src/components/IconCollections.tsx new file mode 100644 index 000000000..4d96c4044 --- /dev/null +++ b/src/components/IconCollections.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCollections: React.FC = (props) => ( + + + + +) + +export { IconCollections } diff --git a/src/components/IconCollectionsBookmark.tsx b/src/components/IconCollectionsBookmark.tsx new file mode 100644 index 000000000..0a1eccfb6 --- /dev/null +++ b/src/components/IconCollectionsBookmark.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconCollectionsBookmark: React.FC = (props) => ( + + + + + + +) + +export { IconCollectionsBookmark } diff --git a/src/components/IconColorLens.tsx b/src/components/IconColorLens.tsx new file mode 100644 index 000000000..54c9b6b96 --- /dev/null +++ b/src/components/IconColorLens.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconColorLens: React.FC = (props) => ( + + + + +) + +export { IconColorLens } diff --git a/src/components/IconColorize.tsx b/src/components/IconColorize.tsx new file mode 100644 index 000000000..881a823f2 --- /dev/null +++ b/src/components/IconColorize.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconColorize: React.FC = (props) => ( + + + + +) + +export { IconColorize } diff --git a/src/components/IconComment.tsx b/src/components/IconComment.tsx new file mode 100644 index 000000000..95c0c318c --- /dev/null +++ b/src/components/IconComment.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconComment: React.FC = (props) => ( + + + + +) + +export { IconComment } diff --git a/src/components/IconCommentBank.tsx b/src/components/IconCommentBank.tsx new file mode 100644 index 000000000..e521188bd --- /dev/null +++ b/src/components/IconCommentBank.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconCommentBank: React.FC = (props) => ( + + + + + + + + +) + +export { IconCommentBank } diff --git a/src/components/IconCommute.tsx b/src/components/IconCommute.tsx new file mode 100644 index 000000000..46c7e267a --- /dev/null +++ b/src/components/IconCommute.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCommute: React.FC = (props) => ( + + + + +) + +export { IconCommute } diff --git a/src/components/IconCompare.tsx b/src/components/IconCompare.tsx new file mode 100644 index 000000000..862c08e9d --- /dev/null +++ b/src/components/IconCompare.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCompare: React.FC = (props) => ( + + + + +) + +export { IconCompare } diff --git a/src/components/IconCompareArrows.tsx b/src/components/IconCompareArrows.tsx new file mode 100644 index 000000000..c0de741f6 --- /dev/null +++ b/src/components/IconCompareArrows.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconCompareArrows: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconCompareArrows } diff --git a/src/components/IconCompassCalibration.tsx b/src/components/IconCompassCalibration.tsx new file mode 100644 index 000000000..4c9e11e58 --- /dev/null +++ b/src/components/IconCompassCalibration.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconCompassCalibration: React.FC = (props) => ( + + + + + +) + +export { IconCompassCalibration } diff --git a/src/components/IconComputer.tsx b/src/components/IconComputer.tsx new file mode 100644 index 000000000..b0f0104ea --- /dev/null +++ b/src/components/IconComputer.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconComputer: React.FC = (props) => ( + + + + +) + +export { IconComputer } diff --git a/src/components/IconConfirmationNumber.tsx b/src/components/IconConfirmationNumber.tsx new file mode 100644 index 000000000..6f02c77d1 --- /dev/null +++ b/src/components/IconConfirmationNumber.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconConfirmationNumber: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconConfirmationNumber } diff --git a/src/components/IconConnectWithoutContact.tsx b/src/components/IconConnectWithoutContact.tsx new file mode 100644 index 000000000..ba8e0384a --- /dev/null +++ b/src/components/IconConnectWithoutContact.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconConnectWithoutContact: React.FC = (props) => ( + + + + +) + +export { IconConnectWithoutContact } diff --git a/src/components/IconConstruction.tsx b/src/components/IconConstruction.tsx new file mode 100644 index 000000000..a5c3bf7e8 --- /dev/null +++ b/src/components/IconConstruction.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' +const IconConstruction: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconConstruction } diff --git a/src/components/IconContactMail.tsx b/src/components/IconContactMail.tsx new file mode 100644 index 000000000..1a16cc7d4 --- /dev/null +++ b/src/components/IconContactMail.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconContactMail: React.FC = (props) => ( + + + + + +) + +export { IconContactMail } diff --git a/src/components/IconContactPage.tsx b/src/components/IconContactPage.tsx new file mode 100644 index 000000000..d92aac5bf --- /dev/null +++ b/src/components/IconContactPage.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconContactPage: React.FC = (props) => ( + + + + +) + +export { IconContactPage } diff --git a/src/components/IconContactPhone.tsx b/src/components/IconContactPhone.tsx new file mode 100644 index 000000000..a5b9f47b4 --- /dev/null +++ b/src/components/IconContactPhone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconContactPhone: React.FC = (props) => ( + + + + +) + +export { IconContactPhone } diff --git a/src/components/IconContactSupport.tsx b/src/components/IconContactSupport.tsx new file mode 100644 index 000000000..9c64b64e9 --- /dev/null +++ b/src/components/IconContactSupport.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconContactSupport: React.FC = (props) => ( + + + + +) + +export { IconContactSupport } diff --git a/src/components/IconContactless.tsx b/src/components/IconContactless.tsx new file mode 100644 index 000000000..0632c1108 --- /dev/null +++ b/src/components/IconContactless.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconContactless: React.FC = (props) => ( + + + + + + + + +) + +export { IconContactless } diff --git a/src/components/IconContacts.tsx b/src/components/IconContacts.tsx new file mode 100644 index 000000000..ff972b760 --- /dev/null +++ b/src/components/IconContacts.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconContacts: React.FC = (props) => ( + + + + +) + +export { IconContacts } diff --git a/src/components/IconContentCopy.tsx b/src/components/IconContentCopy.tsx new file mode 100644 index 000000000..ab9f38981 --- /dev/null +++ b/src/components/IconContentCopy.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconContentCopy: React.FC = (props) => ( + + + + +) + +export { IconContentCopy } diff --git a/src/components/IconContentCut.tsx b/src/components/IconContentCut.tsx new file mode 100644 index 000000000..3c9c881e9 --- /dev/null +++ b/src/components/IconContentCut.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconContentCut: React.FC = (props) => ( + + + + + + + +) + +export { IconContentCut } diff --git a/src/components/IconContentPaste.tsx b/src/components/IconContentPaste.tsx new file mode 100644 index 000000000..b8bff4e79 --- /dev/null +++ b/src/components/IconContentPaste.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconContentPaste: React.FC = (props) => ( + + + + +) + +export { IconContentPaste } diff --git a/src/components/IconControlCamera.tsx b/src/components/IconControlCamera.tsx new file mode 100644 index 000000000..7abe14171 --- /dev/null +++ b/src/components/IconControlCamera.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconControlCamera: React.FC = (props) => ( + + + + + +) + +export { IconControlCamera } diff --git a/src/components/IconControlPoint.tsx b/src/components/IconControlPoint.tsx new file mode 100644 index 000000000..6ad46f26a --- /dev/null +++ b/src/components/IconControlPoint.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconControlPoint: React.FC = (props) => ( + + + + +) + +export { IconControlPoint } diff --git a/src/components/IconControlPointDuplicate.tsx b/src/components/IconControlPointDuplicate.tsx new file mode 100644 index 000000000..3bbbada2f --- /dev/null +++ b/src/components/IconControlPointDuplicate.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconControlPointDuplicate: React.FC = (props) => ( + + + + +) + +export { IconControlPointDuplicate } diff --git a/src/components/IconCopyright.tsx b/src/components/IconCopyright.tsx new file mode 100644 index 000000000..d8a19efe2 --- /dev/null +++ b/src/components/IconCopyright.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconCopyright: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconCopyright } diff --git a/src/components/IconCoronavirus.tsx b/src/components/IconCoronavirus.tsx new file mode 100644 index 000000000..7aa1ec1c7 --- /dev/null +++ b/src/components/IconCoronavirus.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconCoronavirus: React.FC = (props) => ( + + + + +) + +export { IconCoronavirus } diff --git a/src/components/IconCorporateFare.tsx b/src/components/IconCorporateFare.tsx new file mode 100644 index 000000000..6c548f70d --- /dev/null +++ b/src/components/IconCorporateFare.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconCorporateFare: React.FC = (props) => ( + + + + +) + +export { IconCorporateFare } diff --git a/src/components/IconCountertops.tsx b/src/components/IconCountertops.tsx new file mode 100644 index 000000000..5ae61bbf3 --- /dev/null +++ b/src/components/IconCountertops.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconCountertops: React.FC = (props) => ( + + + + +) + +export { IconCountertops } diff --git a/src/components/IconCreate.tsx b/src/components/IconCreate.tsx new file mode 100644 index 000000000..b66f90de9 --- /dev/null +++ b/src/components/IconCreate.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCreate: React.FC = (props) => ( + + + + +) + +export { IconCreate } diff --git a/src/components/IconCreateNewFolder.tsx b/src/components/IconCreateNewFolder.tsx new file mode 100644 index 000000000..b45a70465 --- /dev/null +++ b/src/components/IconCreateNewFolder.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCreateNewFolder: React.FC = (props) => ( + + + + +) + +export { IconCreateNewFolder } diff --git a/src/components/IconCreditCard.tsx b/src/components/IconCreditCard.tsx new file mode 100644 index 000000000..196202366 --- /dev/null +++ b/src/components/IconCreditCard.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCreditCard: React.FC = (props) => ( + + + + +) + +export { IconCreditCard } diff --git a/src/components/IconCrop.tsx b/src/components/IconCrop.tsx new file mode 100644 index 000000000..bf5206ae5 --- /dev/null +++ b/src/components/IconCrop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCrop: React.FC = (props) => ( + + + + +) + +export { IconCrop } diff --git a/src/components/IconCrop169.tsx b/src/components/IconCrop169.tsx new file mode 100644 index 000000000..d2fdf871c --- /dev/null +++ b/src/components/IconCrop169.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCrop169: React.FC = (props) => ( + + + + +) + +export { IconCrop169 } diff --git a/src/components/IconCrop32.tsx b/src/components/IconCrop32.tsx new file mode 100644 index 000000000..b7425609c --- /dev/null +++ b/src/components/IconCrop32.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCrop32: React.FC = (props) => ( + + + + +) + +export { IconCrop32 } diff --git a/src/components/IconCrop54.tsx b/src/components/IconCrop54.tsx new file mode 100644 index 000000000..f149b9c42 --- /dev/null +++ b/src/components/IconCrop54.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCrop54: React.FC = (props) => ( + + + + +) + +export { IconCrop54 } diff --git a/src/components/IconCrop75.tsx b/src/components/IconCrop75.tsx new file mode 100644 index 000000000..2550b9e95 --- /dev/null +++ b/src/components/IconCrop75.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCrop75: React.FC = (props) => ( + + + + +) + +export { IconCrop75 } diff --git a/src/components/IconCropDin.tsx b/src/components/IconCropDin.tsx new file mode 100644 index 000000000..ce044b22b --- /dev/null +++ b/src/components/IconCropDin.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCropDin: React.FC = (props) => ( + + + + +) + +export { IconCropDin } diff --git a/src/components/IconCropFree.tsx b/src/components/IconCropFree.tsx new file mode 100644 index 000000000..65a8d58ca --- /dev/null +++ b/src/components/IconCropFree.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCropFree: React.FC = (props) => ( + + + + +) + +export { IconCropFree } diff --git a/src/components/IconCropLandscape.tsx b/src/components/IconCropLandscape.tsx new file mode 100644 index 000000000..0351624b1 --- /dev/null +++ b/src/components/IconCropLandscape.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCropLandscape: React.FC = (props) => ( + + + + +) + +export { IconCropLandscape } diff --git a/src/components/IconCropOriginal.tsx b/src/components/IconCropOriginal.tsx new file mode 100644 index 000000000..49d355440 --- /dev/null +++ b/src/components/IconCropOriginal.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCropOriginal: React.FC = (props) => ( + + + + +) + +export { IconCropOriginal } diff --git a/src/components/IconCropPortrait.tsx b/src/components/IconCropPortrait.tsx new file mode 100644 index 000000000..031dd8e85 --- /dev/null +++ b/src/components/IconCropPortrait.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCropPortrait: React.FC = (props) => ( + + + + +) + +export { IconCropPortrait } diff --git a/src/components/IconCropRotate.tsx b/src/components/IconCropRotate.tsx new file mode 100644 index 000000000..a1d5d1b44 --- /dev/null +++ b/src/components/IconCropRotate.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCropRotate: React.FC = (props) => ( + + + + +) + +export { IconCropRotate } diff --git a/src/components/IconCropSquare.tsx b/src/components/IconCropSquare.tsx new file mode 100644 index 000000000..f6366e6a7 --- /dev/null +++ b/src/components/IconCropSquare.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCropSquare: React.FC = (props) => ( + + + + +) + +export { IconCropSquare } diff --git a/src/components/IconDashboard.tsx b/src/components/IconDashboard.tsx new file mode 100644 index 000000000..a17799541 --- /dev/null +++ b/src/components/IconDashboard.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDashboard: React.FC = (props) => ( + + + + +) + +export { IconDashboard } diff --git a/src/components/IconDataUsage.tsx b/src/components/IconDataUsage.tsx new file mode 100644 index 000000000..43aef88cb --- /dev/null +++ b/src/components/IconDataUsage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDataUsage: React.FC = (props) => ( + + + + +) + +export { IconDataUsage } diff --git a/src/components/IconDateRange.tsx b/src/components/IconDateRange.tsx new file mode 100644 index 000000000..e7330ea63 --- /dev/null +++ b/src/components/IconDateRange.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDateRange: React.FC = (props) => ( + + + + +) + +export { IconDateRange } diff --git a/src/components/IconDeck.tsx b/src/components/IconDeck.tsx new file mode 100644 index 000000000..784fc56ba --- /dev/null +++ b/src/components/IconDeck.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconDeck: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconDeck } diff --git a/src/components/IconDehaze.tsx b/src/components/IconDehaze.tsx new file mode 100644 index 000000000..8b2220303 --- /dev/null +++ b/src/components/IconDehaze.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDehaze: React.FC = (props) => ( + + + + +) + +export { IconDehaze } diff --git a/src/components/IconDelete.tsx b/src/components/IconDelete.tsx new file mode 100644 index 000000000..f1156cc14 --- /dev/null +++ b/src/components/IconDelete.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDelete: React.FC = (props) => ( + + + + +) + +export { IconDelete } diff --git a/src/components/IconDeleteForever.tsx b/src/components/IconDeleteForever.tsx new file mode 100644 index 000000000..3b026bddd --- /dev/null +++ b/src/components/IconDeleteForever.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconDeleteForever: React.FC = (props) => ( + + + + + +) + +export { IconDeleteForever } diff --git a/src/components/IconDeleteOutline.tsx b/src/components/IconDeleteOutline.tsx new file mode 100644 index 000000000..d0cfe36e2 --- /dev/null +++ b/src/components/IconDeleteOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDeleteOutline: React.FC = (props) => ( + + + + +) + +export { IconDeleteOutline } diff --git a/src/components/IconDeleteSweep.tsx b/src/components/IconDeleteSweep.tsx new file mode 100644 index 000000000..fe44c6cb6 --- /dev/null +++ b/src/components/IconDeleteSweep.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDeleteSweep: React.FC = (props) => ( + + + + +) + +export { IconDeleteSweep } diff --git a/src/components/IconDepartureBoard.tsx b/src/components/IconDepartureBoard.tsx new file mode 100644 index 000000000..7e7189488 --- /dev/null +++ b/src/components/IconDepartureBoard.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDepartureBoard: React.FC = (props) => ( + + + + +) + +export { IconDepartureBoard } diff --git a/src/components/IconDescription.tsx b/src/components/IconDescription.tsx new file mode 100644 index 000000000..15877a002 --- /dev/null +++ b/src/components/IconDescription.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDescription: React.FC = (props) => ( + + + + +) + +export { IconDescription } diff --git a/src/components/IconDesignServices.tsx b/src/components/IconDesignServices.tsx new file mode 100644 index 000000000..b1d160dd2 --- /dev/null +++ b/src/components/IconDesignServices.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconDesignServices: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconDesignServices } diff --git a/src/components/IconDesktopAccessDisabled.tsx b/src/components/IconDesktopAccessDisabled.tsx new file mode 100644 index 000000000..7d4f3981a --- /dev/null +++ b/src/components/IconDesktopAccessDisabled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDesktopAccessDisabled: React.FC = (props) => ( + + + + +) + +export { IconDesktopAccessDisabled } diff --git a/src/components/IconDesktopMac.tsx b/src/components/IconDesktopMac.tsx new file mode 100644 index 000000000..8914cdac1 --- /dev/null +++ b/src/components/IconDesktopMac.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDesktopMac: React.FC = (props) => ( + + + + +) + +export { IconDesktopMac } diff --git a/src/components/IconDesktopWindows.tsx b/src/components/IconDesktopWindows.tsx new file mode 100644 index 000000000..01ba014ba --- /dev/null +++ b/src/components/IconDesktopWindows.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDesktopWindows: React.FC = (props) => ( + + + + +) + +export { IconDesktopWindows } diff --git a/src/components/IconDetails.tsx b/src/components/IconDetails.tsx new file mode 100644 index 000000000..c86a7905b --- /dev/null +++ b/src/components/IconDetails.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconDetails: React.FC = (props) => ( + + + + +) + +export { IconDetails } diff --git a/src/components/IconDeveloperBoard.tsx b/src/components/IconDeveloperBoard.tsx new file mode 100644 index 000000000..6ff860122 --- /dev/null +++ b/src/components/IconDeveloperBoard.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDeveloperBoard: React.FC = (props) => ( + + + + +) + +export { IconDeveloperBoard } diff --git a/src/components/IconDeveloperMode.tsx b/src/components/IconDeveloperMode.tsx new file mode 100644 index 000000000..5d2c4bb9c --- /dev/null +++ b/src/components/IconDeveloperMode.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDeveloperMode: React.FC = (props) => ( + + + + +) + +export { IconDeveloperMode } diff --git a/src/components/IconDeviceHub.tsx b/src/components/IconDeviceHub.tsx new file mode 100644 index 000000000..a5abc59b2 --- /dev/null +++ b/src/components/IconDeviceHub.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconDeviceHub: React.FC = (props) => ( + + + + + +) + +export { IconDeviceHub } diff --git a/src/components/IconDeviceUnknown.tsx b/src/components/IconDeviceUnknown.tsx new file mode 100644 index 000000000..a3a2be174 --- /dev/null +++ b/src/components/IconDeviceUnknown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDeviceUnknown: React.FC = (props) => ( + + + + +) + +export { IconDeviceUnknown } diff --git a/src/components/IconDevices.tsx b/src/components/IconDevices.tsx new file mode 100644 index 000000000..45051d468 --- /dev/null +++ b/src/components/IconDevices.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDevices: React.FC = (props) => ( + + + + +) + +export { IconDevices } diff --git a/src/components/IconDevicesOther.tsx b/src/components/IconDevicesOther.tsx new file mode 100644 index 000000000..1730dfbe9 --- /dev/null +++ b/src/components/IconDevicesOther.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDevicesOther: React.FC = (props) => ( + + + + +) + +export { IconDevicesOther } diff --git a/src/components/IconDialerSip.tsx b/src/components/IconDialerSip.tsx new file mode 100644 index 000000000..1d5be037b --- /dev/null +++ b/src/components/IconDialerSip.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDialerSip: React.FC = (props) => ( + + + + +) + +export { IconDialerSip } diff --git a/src/components/IconDialpad.tsx b/src/components/IconDialpad.tsx new file mode 100644 index 000000000..54c826da6 --- /dev/null +++ b/src/components/IconDialpad.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDialpad: React.FC = (props) => ( + + + + +) + +export { IconDialpad } diff --git a/src/components/IconDirections.tsx b/src/components/IconDirections.tsx new file mode 100644 index 000000000..6c0633ab1 --- /dev/null +++ b/src/components/IconDirections.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirections: React.FC = (props) => ( + + + + +) + +export { IconDirections } diff --git a/src/components/IconDirectionsBike.tsx b/src/components/IconDirectionsBike.tsx new file mode 100644 index 000000000..d8b255ab2 --- /dev/null +++ b/src/components/IconDirectionsBike.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsBike: React.FC = (props) => ( + + + + +) + +export { IconDirectionsBike } diff --git a/src/components/IconDirectionsBoat.tsx b/src/components/IconDirectionsBoat.tsx new file mode 100644 index 000000000..4e3acdc90 --- /dev/null +++ b/src/components/IconDirectionsBoat.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsBoat: React.FC = (props) => ( + + + + +) + +export { IconDirectionsBoat } diff --git a/src/components/IconDirectionsBus.tsx b/src/components/IconDirectionsBus.tsx new file mode 100644 index 000000000..b6ba1ebab --- /dev/null +++ b/src/components/IconDirectionsBus.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsBus: React.FC = (props) => ( + + + + +) + +export { IconDirectionsBus } diff --git a/src/components/IconDirectionsCar.tsx b/src/components/IconDirectionsCar.tsx new file mode 100644 index 000000000..389c540bf --- /dev/null +++ b/src/components/IconDirectionsCar.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsCar: React.FC = (props) => ( + + + + +) + +export { IconDirectionsCar } diff --git a/src/components/IconDirectionsOff.tsx b/src/components/IconDirectionsOff.tsx new file mode 100644 index 000000000..c2d703e02 --- /dev/null +++ b/src/components/IconDirectionsOff.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsOff: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconDirectionsOff } diff --git a/src/components/IconDirectionsRailway.tsx b/src/components/IconDirectionsRailway.tsx new file mode 100644 index 000000000..805c88814 --- /dev/null +++ b/src/components/IconDirectionsRailway.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsRailway: React.FC = (props) => ( + + + + +) + +export { IconDirectionsRailway } diff --git a/src/components/IconDirectionsRun.tsx b/src/components/IconDirectionsRun.tsx new file mode 100644 index 000000000..49044257a --- /dev/null +++ b/src/components/IconDirectionsRun.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsRun: React.FC = (props) => ( + + + + +) + +export { IconDirectionsRun } diff --git a/src/components/IconDirectionsSubway.tsx b/src/components/IconDirectionsSubway.tsx new file mode 100644 index 000000000..57b8032ca --- /dev/null +++ b/src/components/IconDirectionsSubway.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsSubway: React.FC = (props) => ( + + + + +) + +export { IconDirectionsSubway } diff --git a/src/components/IconDirectionsTransit.tsx b/src/components/IconDirectionsTransit.tsx new file mode 100644 index 000000000..3bf44576c --- /dev/null +++ b/src/components/IconDirectionsTransit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsTransit: React.FC = (props) => ( + + + + +) + +export { IconDirectionsTransit } diff --git a/src/components/IconDirectionsWalk.tsx b/src/components/IconDirectionsWalk.tsx new file mode 100644 index 000000000..0e92334b3 --- /dev/null +++ b/src/components/IconDirectionsWalk.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsWalk: React.FC = (props) => ( + + + + +) + +export { IconDirectionsWalk } diff --git a/src/components/IconDisabledByDefault.tsx b/src/components/IconDisabledByDefault.tsx new file mode 100644 index 000000000..4a22cb6c8 --- /dev/null +++ b/src/components/IconDisabledByDefault.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconDisabledByDefault: React.FC = (props) => ( + + + + +) + +export { IconDisabledByDefault } diff --git a/src/components/IconDiscFull.tsx b/src/components/IconDiscFull.tsx new file mode 100644 index 000000000..17d0c1c07 --- /dev/null +++ b/src/components/IconDiscFull.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDiscFull: React.FC = (props) => ( + + + + +) + +export { IconDiscFull } diff --git a/src/components/IconDns.tsx b/src/components/IconDns.tsx new file mode 100644 index 000000000..c7226dfa9 --- /dev/null +++ b/src/components/IconDns.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDns: React.FC = (props) => ( + + + + +) + +export { IconDns } diff --git a/src/components/IconDoNotStep.tsx b/src/components/IconDoNotStep.tsx new file mode 100644 index 000000000..c6ed4c5f2 --- /dev/null +++ b/src/components/IconDoNotStep.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconDoNotStep: React.FC = (props) => ( + + + + + + +) + +export { IconDoNotStep } diff --git a/src/components/IconDoNotTouch.tsx b/src/components/IconDoNotTouch.tsx new file mode 100644 index 000000000..16bba8eec --- /dev/null +++ b/src/components/IconDoNotTouch.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconDoNotTouch: React.FC = (props) => ( + + + + + + +) + +export { IconDoNotTouch } diff --git a/src/components/IconDock.tsx b/src/components/IconDock.tsx new file mode 100644 index 000000000..98fd37e4c --- /dev/null +++ b/src/components/IconDock.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDock: React.FC = (props) => ( + + + + +) + +export { IconDock } diff --git a/src/components/IconDomain.tsx b/src/components/IconDomain.tsx new file mode 100644 index 000000000..d78a58b14 --- /dev/null +++ b/src/components/IconDomain.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconDomain: React.FC = (props) => ( + + + + + + +) + +export { IconDomain } diff --git a/src/components/IconDomainDisabled.tsx b/src/components/IconDomainDisabled.tsx new file mode 100644 index 000000000..8da797814 --- /dev/null +++ b/src/components/IconDomainDisabled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDomainDisabled: React.FC = (props) => ( + + + + +) + +export { IconDomainDisabled } diff --git a/src/components/IconDomainVerification.tsx b/src/components/IconDomainVerification.tsx new file mode 100644 index 000000000..f153d5596 --- /dev/null +++ b/src/components/IconDomainVerification.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconDomainVerification: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconDomainVerification } diff --git a/src/components/IconDone.tsx b/src/components/IconDone.tsx new file mode 100644 index 000000000..9b65e9b3d --- /dev/null +++ b/src/components/IconDone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDone: React.FC = (props) => ( + + + + +) + +export { IconDone } diff --git a/src/components/IconDoneAll.tsx b/src/components/IconDoneAll.tsx new file mode 100644 index 000000000..63c40658e --- /dev/null +++ b/src/components/IconDoneAll.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDoneAll: React.FC = (props) => ( + + + + +) + +export { IconDoneAll } diff --git a/src/components/IconDoneOutline.tsx b/src/components/IconDoneOutline.tsx new file mode 100644 index 000000000..0f220b56b --- /dev/null +++ b/src/components/IconDoneOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDoneOutline: React.FC = (props) => ( + + + + +) + +export { IconDoneOutline } diff --git a/src/components/IconDonutLarge.tsx b/src/components/IconDonutLarge.tsx new file mode 100644 index 000000000..be3bce19f --- /dev/null +++ b/src/components/IconDonutLarge.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconDonutLarge: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconDonutLarge } diff --git a/src/components/IconDonutSmall.tsx b/src/components/IconDonutSmall.tsx new file mode 100644 index 000000000..69a541e52 --- /dev/null +++ b/src/components/IconDonutSmall.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDonutSmall: React.FC = (props) => ( + + + + +) + +export { IconDonutSmall } diff --git a/src/components/IconDoubleArrow.tsx b/src/components/IconDoubleArrow.tsx new file mode 100644 index 000000000..1850bc670 --- /dev/null +++ b/src/components/IconDoubleArrow.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconDoubleArrow: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconDoubleArrow } diff --git a/src/components/IconDrafts.tsx b/src/components/IconDrafts.tsx new file mode 100644 index 000000000..50c14ef59 --- /dev/null +++ b/src/components/IconDrafts.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDrafts: React.FC = (props) => ( + + + + +) + +export { IconDrafts } diff --git a/src/components/IconDragHandle.tsx b/src/components/IconDragHandle.tsx new file mode 100644 index 000000000..7b21e0a42 --- /dev/null +++ b/src/components/IconDragHandle.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconDragHandle: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconDragHandle } diff --git a/src/components/IconDragIndicator.tsx b/src/components/IconDragIndicator.tsx new file mode 100644 index 000000000..e011041c3 --- /dev/null +++ b/src/components/IconDragIndicator.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDragIndicator: React.FC = (props) => ( + + + + +) + +export { IconDragIndicator } diff --git a/src/components/IconDriveEta.tsx b/src/components/IconDriveEta.tsx new file mode 100644 index 000000000..c89e9440c --- /dev/null +++ b/src/components/IconDriveEta.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDriveEta: React.FC = (props) => ( + + + + +) + +export { IconDriveEta } diff --git a/src/components/IconDry.tsx b/src/components/IconDry.tsx new file mode 100644 index 000000000..a788e8466 --- /dev/null +++ b/src/components/IconDry.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconDry: React.FC = (props) => ( + + + + + + +) + +export { IconDry } diff --git a/src/components/IconDuo.tsx b/src/components/IconDuo.tsx new file mode 100644 index 000000000..a8e3a8d9a --- /dev/null +++ b/src/components/IconDuo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDuo: React.FC = (props) => ( + + + + +) + +export { IconDuo } diff --git a/src/components/IconDvr.tsx b/src/components/IconDvr.tsx new file mode 100644 index 000000000..d3faf4886 --- /dev/null +++ b/src/components/IconDvr.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDvr: React.FC = (props) => ( + + + + +) + +export { IconDvr } diff --git a/src/components/IconDynamicFeed.tsx b/src/components/IconDynamicFeed.tsx new file mode 100644 index 000000000..925c372a9 --- /dev/null +++ b/src/components/IconDynamicFeed.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' +const IconDynamicFeed: React.FC = (props) => ( + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDynamicFeed } diff --git a/src/components/IconDynamicForm.tsx b/src/components/IconDynamicForm.tsx new file mode 100644 index 000000000..cc4cb8c77 --- /dev/null +++ b/src/components/IconDynamicForm.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconDynamicForm: React.FC = (props) => ( + + + + + + +) + +export { IconDynamicForm } diff --git a/src/components/IconEast.tsx b/src/components/IconEast.tsx new file mode 100644 index 000000000..8b9494115 --- /dev/null +++ b/src/components/IconEast.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconEast: React.FC = (props) => ( + + + + +) + +export { IconEast } diff --git a/src/components/IconEco.tsx b/src/components/IconEco.tsx new file mode 100644 index 000000000..0536e7d14 --- /dev/null +++ b/src/components/IconEco.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconEco: React.FC = (props) => ( + + + + + + + + + + +) + +export { IconEco } diff --git a/src/components/IconEdit.tsx b/src/components/IconEdit.tsx new file mode 100644 index 000000000..79909b9c9 --- /dev/null +++ b/src/components/IconEdit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEdit: React.FC = (props) => ( + + + + +) + +export { IconEdit } diff --git a/src/components/IconEditAttributes.tsx b/src/components/IconEditAttributes.tsx new file mode 100644 index 000000000..4a5873cfa --- /dev/null +++ b/src/components/IconEditAttributes.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEditAttributes: React.FC = (props) => ( + + + + +) + +export { IconEditAttributes } diff --git a/src/components/IconEditLocation.tsx b/src/components/IconEditLocation.tsx new file mode 100644 index 000000000..43267a4ae --- /dev/null +++ b/src/components/IconEditLocation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEditLocation: React.FC = (props) => ( + + + + +) + +export { IconEditLocation } diff --git a/src/components/IconEditRoad.tsx b/src/components/IconEditRoad.tsx new file mode 100644 index 000000000..091caa11a --- /dev/null +++ b/src/components/IconEditRoad.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconEditRoad: React.FC = (props) => ( + + + + + + + + + + + + + + + +) + +export { IconEditRoad } diff --git a/src/components/IconEject.tsx b/src/components/IconEject.tsx new file mode 100644 index 000000000..6ec5e93bd --- /dev/null +++ b/src/components/IconEject.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEject: React.FC = (props) => ( + + + + +) + +export { IconEject } diff --git a/src/components/IconElderly.tsx b/src/components/IconElderly.tsx new file mode 100644 index 000000000..16c1dcc90 --- /dev/null +++ b/src/components/IconElderly.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconElderly: React.FC = (props) => ( + + + + +) + +export { IconElderly } diff --git a/src/components/IconElectricBike.tsx b/src/components/IconElectricBike.tsx new file mode 100644 index 000000000..61ae8dc5e --- /dev/null +++ b/src/components/IconElectricBike.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconElectricBike: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconElectricBike } diff --git a/src/components/IconElectricCar.tsx b/src/components/IconElectricCar.tsx new file mode 100644 index 000000000..85331a882 --- /dev/null +++ b/src/components/IconElectricCar.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconElectricCar: React.FC = (props) => ( + + + + + + + + + +) + +export { IconElectricCar } diff --git a/src/components/IconElectricMoped.tsx b/src/components/IconElectricMoped.tsx new file mode 100644 index 000000000..f5efb2980 --- /dev/null +++ b/src/components/IconElectricMoped.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconElectricMoped: React.FC = (props) => ( + + + + + + + + + + + + + +) + +export { IconElectricMoped } diff --git a/src/components/IconElectricScooter.tsx b/src/components/IconElectricScooter.tsx new file mode 100644 index 000000000..8fae58102 --- /dev/null +++ b/src/components/IconElectricScooter.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconElectricScooter: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconElectricScooter } diff --git a/src/components/IconElectricalServices.tsx b/src/components/IconElectricalServices.tsx new file mode 100644 index 000000000..367ad7387 --- /dev/null +++ b/src/components/IconElectricalServices.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconElectricalServices: React.FC = (props) => ( + + + + + + + + + + + + + +) + +export { IconElectricalServices } diff --git a/src/components/IconElevator.tsx b/src/components/IconElevator.tsx new file mode 100644 index 000000000..257ae0919 --- /dev/null +++ b/src/components/IconElevator.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconElevator: React.FC = (props) => ( + + + + + + +) + +export { IconElevator } diff --git a/src/components/IconEmail.tsx b/src/components/IconEmail.tsx new file mode 100644 index 000000000..e8cbfc96a --- /dev/null +++ b/src/components/IconEmail.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmail: React.FC = (props) => ( + + + + +) + +export { IconEmail } diff --git a/src/components/IconEmojiEmotions.tsx b/src/components/IconEmojiEmotions.tsx new file mode 100644 index 000000000..dea0707d3 --- /dev/null +++ b/src/components/IconEmojiEmotions.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiEmotions: React.FC = (props) => ( + + + + + + + + + +) + +export { IconEmojiEmotions } diff --git a/src/components/IconEmojiEvents.tsx b/src/components/IconEmojiEvents.tsx new file mode 100644 index 000000000..30ff61000 --- /dev/null +++ b/src/components/IconEmojiEvents.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiEvents: React.FC = (props) => ( + + + + +) + +export { IconEmojiEvents } diff --git a/src/components/IconEmojiFlags.tsx b/src/components/IconEmojiFlags.tsx new file mode 100644 index 000000000..c2cc15a22 --- /dev/null +++ b/src/components/IconEmojiFlags.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiFlags: React.FC = (props) => ( + + + + + + + + + +) + +export { IconEmojiFlags } diff --git a/src/components/IconEmojiFoodBeverage.tsx b/src/components/IconEmojiFoodBeverage.tsx new file mode 100644 index 000000000..c16c4950b --- /dev/null +++ b/src/components/IconEmojiFoodBeverage.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiFoodBeverage: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconEmojiFoodBeverage } diff --git a/src/components/IconEmojiNature.tsx b/src/components/IconEmojiNature.tsx new file mode 100644 index 000000000..9e8d5dcc5 --- /dev/null +++ b/src/components/IconEmojiNature.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiNature: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconEmojiNature } diff --git a/src/components/IconEmojiObjects.tsx b/src/components/IconEmojiObjects.tsx new file mode 100644 index 000000000..3e3d2880e --- /dev/null +++ b/src/components/IconEmojiObjects.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiObjects: React.FC = (props) => ( + + + + + + + + + +) + +export { IconEmojiObjects } diff --git a/src/components/IconEmojiPeople.tsx b/src/components/IconEmojiPeople.tsx new file mode 100644 index 000000000..e0f95c67e --- /dev/null +++ b/src/components/IconEmojiPeople.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiPeople: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconEmojiPeople } diff --git a/src/components/IconEmojiSymbols.tsx b/src/components/IconEmojiSymbols.tsx new file mode 100644 index 000000000..5a8bec2ab --- /dev/null +++ b/src/components/IconEmojiSymbols.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiSymbols: React.FC = (props) => ( + + + + + + + + + + + + + + + + + +) + +export { IconEmojiSymbols } diff --git a/src/components/IconEmojiTransportation.tsx b/src/components/IconEmojiTransportation.tsx new file mode 100644 index 000000000..05479ffb3 --- /dev/null +++ b/src/components/IconEmojiTransportation.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiTransportation: React.FC = (props) => ( + + + + + + + + + + + + + + + + +) + +export { IconEmojiTransportation } diff --git a/src/components/IconEngineering.tsx b/src/components/IconEngineering.tsx new file mode 100644 index 000000000..7363832aa --- /dev/null +++ b/src/components/IconEngineering.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' +const IconEngineering: React.FC = (props) => ( + + + + + + + + + + + + + + +) + +export { IconEngineering } diff --git a/src/components/IconEnhancedEncryption.tsx b/src/components/IconEnhancedEncryption.tsx new file mode 100644 index 000000000..2935f3b5d --- /dev/null +++ b/src/components/IconEnhancedEncryption.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconEnhancedEncryption: React.FC = (props) => ( + + + + + +) + +export { IconEnhancedEncryption } diff --git a/src/components/IconEqualizer.tsx b/src/components/IconEqualizer.tsx new file mode 100644 index 000000000..c04ce05e9 --- /dev/null +++ b/src/components/IconEqualizer.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEqualizer: React.FC = (props) => ( + + + + +) + +export { IconEqualizer } diff --git a/src/components/IconError.tsx b/src/components/IconError.tsx new file mode 100644 index 000000000..c2f5919d0 --- /dev/null +++ b/src/components/IconError.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconError: React.FC = (props) => ( + + + + +) + +export { IconError } diff --git a/src/components/IconErrorOutline.tsx b/src/components/IconErrorOutline.tsx new file mode 100644 index 000000000..755c8429a --- /dev/null +++ b/src/components/IconErrorOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconErrorOutline: React.FC = (props) => ( + + + + +) + +export { IconErrorOutline } diff --git a/src/components/IconEscalator.tsx b/src/components/IconEscalator.tsx new file mode 100644 index 000000000..75b2354d8 --- /dev/null +++ b/src/components/IconEscalator.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconEscalator: React.FC = (props) => ( + + + + + + + + +) + +export { IconEscalator } diff --git a/src/components/IconEscalatorWarning.tsx b/src/components/IconEscalatorWarning.tsx new file mode 100644 index 000000000..48fc69aba --- /dev/null +++ b/src/components/IconEscalatorWarning.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconEscalatorWarning: React.FC = (props) => ( + + + + + + +) + +export { IconEscalatorWarning } diff --git a/src/components/IconEuro.tsx b/src/components/IconEuro.tsx new file mode 100644 index 000000000..8dbf487e4 --- /dev/null +++ b/src/components/IconEuro.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconEuro: React.FC = (props) => ( + + + + + + + + + +) + +export { IconEuro } diff --git a/src/components/IconEuroSymbol.tsx b/src/components/IconEuroSymbol.tsx new file mode 100644 index 000000000..393f928de --- /dev/null +++ b/src/components/IconEuroSymbol.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEuroSymbol: React.FC = (props) => ( + + + + +) + +export { IconEuroSymbol } diff --git a/src/components/IconEvStation.tsx b/src/components/IconEvStation.tsx new file mode 100644 index 000000000..ea960200a --- /dev/null +++ b/src/components/IconEvStation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEvStation: React.FC = (props) => ( + + + + +) + +export { IconEvStation } diff --git a/src/components/IconEvent.tsx b/src/components/IconEvent.tsx new file mode 100644 index 000000000..634086e7b --- /dev/null +++ b/src/components/IconEvent.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEvent: React.FC = (props) => ( + + + + +) + +export { IconEvent } diff --git a/src/components/IconEventAvailable.tsx b/src/components/IconEventAvailable.tsx new file mode 100644 index 000000000..074dd3ba5 --- /dev/null +++ b/src/components/IconEventAvailable.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEventAvailable: React.FC = (props) => ( + + + + +) + +export { IconEventAvailable } diff --git a/src/components/IconEventBusy.tsx b/src/components/IconEventBusy.tsx new file mode 100644 index 000000000..b833dcc6e --- /dev/null +++ b/src/components/IconEventBusy.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEventBusy: React.FC = (props) => ( + + + + +) + +export { IconEventBusy } diff --git a/src/components/IconEventNote.tsx b/src/components/IconEventNote.tsx new file mode 100644 index 000000000..1fe069b3c --- /dev/null +++ b/src/components/IconEventNote.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEventNote: React.FC = (props) => ( + + + + +) + +export { IconEventNote } diff --git a/src/components/IconEventSeat.tsx b/src/components/IconEventSeat.tsx new file mode 100644 index 000000000..b108ef439 --- /dev/null +++ b/src/components/IconEventSeat.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconEventSeat: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconEventSeat } diff --git a/src/components/IconExitToApp.tsx b/src/components/IconExitToApp.tsx new file mode 100644 index 000000000..52f2c3887 --- /dev/null +++ b/src/components/IconExitToApp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExitToApp: React.FC = (props) => ( + + + + +) + +export { IconExitToApp } diff --git a/src/components/IconExpandLess.tsx b/src/components/IconExpandLess.tsx new file mode 100644 index 000000000..65bb4c0ce --- /dev/null +++ b/src/components/IconExpandLess.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExpandLess: React.FC = (props) => ( + + + + +) + +export { IconExpandLess } diff --git a/src/components/IconExpandMore.tsx b/src/components/IconExpandMore.tsx new file mode 100644 index 000000000..fc533173d --- /dev/null +++ b/src/components/IconExpandMore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExpandMore: React.FC = (props) => ( + + + + +) + +export { IconExpandMore } diff --git a/src/components/IconExplicit.tsx b/src/components/IconExplicit.tsx new file mode 100644 index 000000000..965bbc49d --- /dev/null +++ b/src/components/IconExplicit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExplicit: React.FC = (props) => ( + + + + +) + +export { IconExplicit } diff --git a/src/components/IconExplore.tsx b/src/components/IconExplore.tsx new file mode 100644 index 000000000..df706e5c0 --- /dev/null +++ b/src/components/IconExplore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExplore: React.FC = (props) => ( + + + + +) + +export { IconExplore } diff --git a/src/components/IconExploreOff.tsx b/src/components/IconExploreOff.tsx new file mode 100644 index 000000000..7b254a88d --- /dev/null +++ b/src/components/IconExploreOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExploreOff: React.FC = (props) => ( + + + + +) + +export { IconExploreOff } diff --git a/src/components/IconExposure.tsx b/src/components/IconExposure.tsx new file mode 100644 index 000000000..4ce1d329b --- /dev/null +++ b/src/components/IconExposure.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExposure: React.FC = (props) => ( + + + + +) + +export { IconExposure } diff --git a/src/components/IconExposureNeg1.tsx b/src/components/IconExposureNeg1.tsx new file mode 100644 index 000000000..768b14106 --- /dev/null +++ b/src/components/IconExposureNeg1.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExposureNeg1: React.FC = (props) => ( + + + + +) + +export { IconExposureNeg1 } diff --git a/src/components/IconExposureNeg2.tsx b/src/components/IconExposureNeg2.tsx new file mode 100644 index 000000000..f8c8a64bb --- /dev/null +++ b/src/components/IconExposureNeg2.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExposureNeg2: React.FC = (props) => ( + + + + +) + +export { IconExposureNeg2 } diff --git a/src/components/IconExposurePlus1.tsx b/src/components/IconExposurePlus1.tsx new file mode 100644 index 000000000..23ad0dc3e --- /dev/null +++ b/src/components/IconExposurePlus1.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExposurePlus1: React.FC = (props) => ( + + + + +) + +export { IconExposurePlus1 } diff --git a/src/components/IconExposurePlus2.tsx b/src/components/IconExposurePlus2.tsx new file mode 100644 index 000000000..0864771a6 --- /dev/null +++ b/src/components/IconExposurePlus2.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExposurePlus2: React.FC = (props) => ( + + + + +) + +export { IconExposurePlus2 } diff --git a/src/components/IconExposureZero.tsx b/src/components/IconExposureZero.tsx new file mode 100644 index 000000000..b85010e6e --- /dev/null +++ b/src/components/IconExposureZero.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconExposureZero: React.FC = (props) => ( + + + + +) + +export { IconExposureZero } diff --git a/src/components/IconExtension.tsx b/src/components/IconExtension.tsx new file mode 100644 index 000000000..2485eedd2 --- /dev/null +++ b/src/components/IconExtension.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExtension: React.FC = (props) => ( + + + + +) + +export { IconExtension } diff --git a/src/components/IconFace.tsx b/src/components/IconFace.tsx new file mode 100644 index 000000000..d6a91c9f0 --- /dev/null +++ b/src/components/IconFace.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFace: React.FC = (props) => ( + + + + +) + +export { IconFace } diff --git a/src/components/IconFacebook.tsx b/src/components/IconFacebook.tsx new file mode 100644 index 000000000..176e9395a --- /dev/null +++ b/src/components/IconFacebook.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconFacebook: React.FC = (props) => ( + + + + +) + +export { IconFacebook } diff --git a/src/components/IconFactCheck.tsx b/src/components/IconFactCheck.tsx new file mode 100644 index 000000000..bc8e9fc5f --- /dev/null +++ b/src/components/IconFactCheck.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconFactCheck: React.FC = (props) => ( + + + + + + + + + + +) + +export { IconFactCheck } diff --git a/src/components/IconFamilyRestroom.tsx b/src/components/IconFamilyRestroom.tsx new file mode 100644 index 000000000..a1fe271d4 --- /dev/null +++ b/src/components/IconFamilyRestroom.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconFamilyRestroom: React.FC = (props) => ( + + + + + + +) + +export { IconFamilyRestroom } diff --git a/src/components/IconFastForward.tsx b/src/components/IconFastForward.tsx new file mode 100644 index 000000000..7db06f03a --- /dev/null +++ b/src/components/IconFastForward.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFastForward: React.FC = (props) => ( + + + + +) + +export { IconFastForward } diff --git a/src/components/IconFastRewind.tsx b/src/components/IconFastRewind.tsx new file mode 100644 index 000000000..b910f32e9 --- /dev/null +++ b/src/components/IconFastRewind.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFastRewind: React.FC = (props) => ( + + + + +) + +export { IconFastRewind } diff --git a/src/components/IconFastfood.tsx b/src/components/IconFastfood.tsx new file mode 100644 index 000000000..42de7a4b6 --- /dev/null +++ b/src/components/IconFastfood.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFastfood: React.FC = (props) => ( + + + + +) + +export { IconFastfood } diff --git a/src/components/IconFavorite.tsx b/src/components/IconFavorite.tsx new file mode 100644 index 000000000..b26cc7810 --- /dev/null +++ b/src/components/IconFavorite.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFavorite: React.FC = (props) => ( + + + + +) + +export { IconFavorite } diff --git a/src/components/IconFavoriteBorder.tsx b/src/components/IconFavoriteBorder.tsx new file mode 100644 index 000000000..3b143ae19 --- /dev/null +++ b/src/components/IconFavoriteBorder.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFavoriteBorder: React.FC = (props) => ( + + + + +) + +export { IconFavoriteBorder } diff --git a/src/components/IconFeaturedPlayList.tsx b/src/components/IconFeaturedPlayList.tsx new file mode 100644 index 000000000..effbe6cb1 --- /dev/null +++ b/src/components/IconFeaturedPlayList.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFeaturedPlayList: React.FC = (props) => ( + + + + +) + +export { IconFeaturedPlayList } diff --git a/src/components/IconFeaturedVideo.tsx b/src/components/IconFeaturedVideo.tsx new file mode 100644 index 000000000..aba12f9ac --- /dev/null +++ b/src/components/IconFeaturedVideo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFeaturedVideo: React.FC = (props) => ( + + + + +) + +export { IconFeaturedVideo } diff --git a/src/components/IconFeedback.tsx b/src/components/IconFeedback.tsx new file mode 100644 index 000000000..3d2410d20 --- /dev/null +++ b/src/components/IconFeedback.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFeedback: React.FC = (props) => ( + + + + +) + +export { IconFeedback } diff --git a/src/components/IconFence.tsx b/src/components/IconFence.tsx new file mode 100644 index 000000000..d65f710e9 --- /dev/null +++ b/src/components/IconFence.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconFence: React.FC = (props) => ( + + + + + + + + +) + +export { IconFence } diff --git a/src/components/IconFiberDvr.tsx b/src/components/IconFiberDvr.tsx new file mode 100644 index 000000000..73e8c79cc --- /dev/null +++ b/src/components/IconFiberDvr.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconFiberDvr: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconFiberDvr } diff --git a/src/components/IconFiberManualRecord.tsx b/src/components/IconFiberManualRecord.tsx new file mode 100644 index 000000000..c6e82fc80 --- /dev/null +++ b/src/components/IconFiberManualRecord.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFiberManualRecord: React.FC = (props) => ( + + + + +) + +export { IconFiberManualRecord } diff --git a/src/components/IconFiberNew.tsx b/src/components/IconFiberNew.tsx new file mode 100644 index 000000000..1f9bcbffd --- /dev/null +++ b/src/components/IconFiberNew.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconFiberNew: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconFiberNew } diff --git a/src/components/IconFiberPin.tsx b/src/components/IconFiberPin.tsx new file mode 100644 index 000000000..1681e37fe --- /dev/null +++ b/src/components/IconFiberPin.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFiberPin: React.FC = (props) => ( + + + + +) + +export { IconFiberPin } diff --git a/src/components/IconFiberSmartRecord.tsx b/src/components/IconFiberSmartRecord.tsx new file mode 100644 index 000000000..f902bbeb2 --- /dev/null +++ b/src/components/IconFiberSmartRecord.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconFiberSmartRecord: React.FC = (props) => ( + + + + + + + +) + +export { IconFiberSmartRecord } diff --git a/src/components/IconFileCopy.tsx b/src/components/IconFileCopy.tsx new file mode 100644 index 000000000..058606a27 --- /dev/null +++ b/src/components/IconFileCopy.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFileCopy: React.FC = (props) => ( + + + + +) + +export { IconFileCopy } diff --git a/src/components/IconFilter.tsx b/src/components/IconFilter.tsx new file mode 100644 index 000000000..f31b74147 --- /dev/null +++ b/src/components/IconFilter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter: React.FC = (props) => ( + + + + +) + +export { IconFilter } diff --git a/src/components/IconFilter1.tsx b/src/components/IconFilter1.tsx new file mode 100644 index 000000000..835251a82 --- /dev/null +++ b/src/components/IconFilter1.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter1: React.FC = (props) => ( + + + + +) + +export { IconFilter1 } diff --git a/src/components/IconFilter2.tsx b/src/components/IconFilter2.tsx new file mode 100644 index 000000000..ade9457a7 --- /dev/null +++ b/src/components/IconFilter2.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter2: React.FC = (props) => ( + + + + +) + +export { IconFilter2 } diff --git a/src/components/IconFilter3.tsx b/src/components/IconFilter3.tsx new file mode 100644 index 000000000..70de994bc --- /dev/null +++ b/src/components/IconFilter3.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter3: React.FC = (props) => ( + + + + +) + +export { IconFilter3 } diff --git a/src/components/IconFilter4.tsx b/src/components/IconFilter4.tsx new file mode 100644 index 000000000..b7140411e --- /dev/null +++ b/src/components/IconFilter4.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter4: React.FC = (props) => ( + + + + +) + +export { IconFilter4 } diff --git a/src/components/IconFilter5.tsx b/src/components/IconFilter5.tsx new file mode 100644 index 000000000..f655cfd51 --- /dev/null +++ b/src/components/IconFilter5.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter5: React.FC = (props) => ( + + + + +) + +export { IconFilter5 } diff --git a/src/components/IconFilter6.tsx b/src/components/IconFilter6.tsx new file mode 100644 index 000000000..f1aefeb1a --- /dev/null +++ b/src/components/IconFilter6.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter6: React.FC = (props) => ( + + + + +) + +export { IconFilter6 } diff --git a/src/components/IconFilter7.tsx b/src/components/IconFilter7.tsx new file mode 100644 index 000000000..46e7c3834 --- /dev/null +++ b/src/components/IconFilter7.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter7: React.FC = (props) => ( + + + + +) + +export { IconFilter7 } diff --git a/src/components/IconFilter8.tsx b/src/components/IconFilter8.tsx new file mode 100644 index 000000000..ecb8c7417 --- /dev/null +++ b/src/components/IconFilter8.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter8: React.FC = (props) => ( + + + + +) + +export { IconFilter8 } diff --git a/src/components/IconFilter9.tsx b/src/components/IconFilter9.tsx new file mode 100644 index 000000000..64a02811e --- /dev/null +++ b/src/components/IconFilter9.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter9: React.FC = (props) => ( + + + + +) + +export { IconFilter9 } diff --git a/src/components/IconFilter9Plus.tsx b/src/components/IconFilter9Plus.tsx new file mode 100644 index 000000000..54c5321f2 --- /dev/null +++ b/src/components/IconFilter9Plus.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter9Plus: React.FC = (props) => ( + + + + +) + +export { IconFilter9Plus } diff --git a/src/components/IconFilterAlt.tsx b/src/components/IconFilterAlt.tsx new file mode 100644 index 000000000..2910b201f --- /dev/null +++ b/src/components/IconFilterAlt.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterAlt: React.FC = (props) => ( + + + + + + + +) + +export { IconFilterAlt } diff --git a/src/components/IconFilterBAndW.tsx b/src/components/IconFilterBAndW.tsx new file mode 100644 index 000000000..d83d6939f --- /dev/null +++ b/src/components/IconFilterBAndW.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterBAndW: React.FC = (props) => ( + + + + +) + +export { IconFilterBAndW } diff --git a/src/components/IconFilterCenterFocus.tsx b/src/components/IconFilterCenterFocus.tsx new file mode 100644 index 000000000..194db7364 --- /dev/null +++ b/src/components/IconFilterCenterFocus.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterCenterFocus: React.FC = (props) => ( + + + + +) + +export { IconFilterCenterFocus } diff --git a/src/components/IconFilterDrama.tsx b/src/components/IconFilterDrama.tsx new file mode 100644 index 000000000..60f74de70 --- /dev/null +++ b/src/components/IconFilterDrama.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterDrama: React.FC = (props) => ( + + + + +) + +export { IconFilterDrama } diff --git a/src/components/IconFilterFrames.tsx b/src/components/IconFilterFrames.tsx new file mode 100644 index 000000000..8685bae5d --- /dev/null +++ b/src/components/IconFilterFrames.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterFrames: React.FC = (props) => ( + + + + +) + +export { IconFilterFrames } diff --git a/src/components/IconFilterHdr.tsx b/src/components/IconFilterHdr.tsx new file mode 100644 index 000000000..28cc07aec --- /dev/null +++ b/src/components/IconFilterHdr.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterHdr: React.FC = (props) => ( + + + + +) + +export { IconFilterHdr } diff --git a/src/components/IconFilterList.tsx b/src/components/IconFilterList.tsx new file mode 100644 index 000000000..b25f8b2bc --- /dev/null +++ b/src/components/IconFilterList.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterList: React.FC = (props) => ( + + + + +) + +export { IconFilterList } diff --git a/src/components/IconFilterNone.tsx b/src/components/IconFilterNone.tsx new file mode 100644 index 000000000..246796de5 --- /dev/null +++ b/src/components/IconFilterNone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterNone: React.FC = (props) => ( + + + + +) + +export { IconFilterNone } diff --git a/src/components/IconFilterTiltShift.tsx b/src/components/IconFilterTiltShift.tsx new file mode 100644 index 000000000..3d75084d0 --- /dev/null +++ b/src/components/IconFilterTiltShift.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterTiltShift: React.FC = (props) => ( + + + + +) + +export { IconFilterTiltShift } diff --git a/src/components/IconFilterVintage.tsx b/src/components/IconFilterVintage.tsx new file mode 100644 index 000000000..981a1fcae --- /dev/null +++ b/src/components/IconFilterVintage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterVintage: React.FC = (props) => ( + + + + +) + +export { IconFilterVintage } diff --git a/src/components/IconFindInPage.tsx b/src/components/IconFindInPage.tsx new file mode 100644 index 000000000..37ff9817f --- /dev/null +++ b/src/components/IconFindInPage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFindInPage: React.FC = (props) => ( + + + + +) + +export { IconFindInPage } diff --git a/src/components/IconFindReplace.tsx b/src/components/IconFindReplace.tsx new file mode 100644 index 000000000..9788dc6b1 --- /dev/null +++ b/src/components/IconFindReplace.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFindReplace: React.FC = (props) => ( + + + + +) + +export { IconFindReplace } diff --git a/src/components/IconFingerprint.tsx b/src/components/IconFingerprint.tsx new file mode 100644 index 000000000..8a4fba4a2 --- /dev/null +++ b/src/components/IconFingerprint.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFingerprint: React.FC = (props) => ( + + + + +) + +export { IconFingerprint } diff --git a/src/components/IconFireExtinguisher.tsx b/src/components/IconFireExtinguisher.tsx new file mode 100644 index 000000000..14b574ccb --- /dev/null +++ b/src/components/IconFireExtinguisher.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconFireExtinguisher: React.FC = (props) => ( + + + + + + +) + +export { IconFireExtinguisher } diff --git a/src/components/IconFireplace.tsx b/src/components/IconFireplace.tsx new file mode 100644 index 000000000..4386021a3 --- /dev/null +++ b/src/components/IconFireplace.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconFireplace: React.FC = (props) => ( + + + + + + + + +) + +export { IconFireplace } diff --git a/src/components/IconFirstPage.tsx b/src/components/IconFirstPage.tsx new file mode 100644 index 000000000..c019bdf94 --- /dev/null +++ b/src/components/IconFirstPage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFirstPage: React.FC = (props) => ( + + + + +) + +export { IconFirstPage } diff --git a/src/components/IconFitnessCenter.tsx b/src/components/IconFitnessCenter.tsx new file mode 100644 index 000000000..b0fa6c3cf --- /dev/null +++ b/src/components/IconFitnessCenter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFitnessCenter: React.FC = (props) => ( + + + + +) + +export { IconFitnessCenter } diff --git a/src/components/IconFlag.tsx b/src/components/IconFlag.tsx new file mode 100644 index 000000000..92759bcb7 --- /dev/null +++ b/src/components/IconFlag.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlag: React.FC = (props) => ( + + + + +) + +export { IconFlag } diff --git a/src/components/IconFlaky.tsx b/src/components/IconFlaky.tsx new file mode 100644 index 000000000..083ca23ff --- /dev/null +++ b/src/components/IconFlaky.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlaky: React.FC = (props) => ( + + + + + + + + +) + +export { IconFlaky } diff --git a/src/components/IconFlare.tsx b/src/components/IconFlare.tsx new file mode 100644 index 000000000..2454fae2d --- /dev/null +++ b/src/components/IconFlare.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlare: React.FC = (props) => ( + + + + +) + +export { IconFlare } diff --git a/src/components/IconFlashAuto.tsx b/src/components/IconFlashAuto.tsx new file mode 100644 index 000000000..ce1b15adb --- /dev/null +++ b/src/components/IconFlashAuto.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlashAuto: React.FC = (props) => ( + + + + +) + +export { IconFlashAuto } diff --git a/src/components/IconFlashOff.tsx b/src/components/IconFlashOff.tsx new file mode 100644 index 000000000..6f3b734e6 --- /dev/null +++ b/src/components/IconFlashOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlashOff: React.FC = (props) => ( + + + + +) + +export { IconFlashOff } diff --git a/src/components/IconFlashOn.tsx b/src/components/IconFlashOn.tsx new file mode 100644 index 000000000..291145be7 --- /dev/null +++ b/src/components/IconFlashOn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlashOn: React.FC = (props) => ( + + + + +) + +export { IconFlashOn } diff --git a/src/components/IconFlight.tsx b/src/components/IconFlight.tsx new file mode 100644 index 000000000..66bac3c0b --- /dev/null +++ b/src/components/IconFlight.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlight: React.FC = (props) => ( + + + + +) + +export { IconFlight } diff --git a/src/components/IconFlightLand.tsx b/src/components/IconFlightLand.tsx new file mode 100644 index 000000000..f533282eb --- /dev/null +++ b/src/components/IconFlightLand.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlightLand: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconFlightLand } diff --git a/src/components/IconFlightTakeoff.tsx b/src/components/IconFlightTakeoff.tsx new file mode 100644 index 000000000..128a2d6b9 --- /dev/null +++ b/src/components/IconFlightTakeoff.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlightTakeoff: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconFlightTakeoff } diff --git a/src/components/IconFlip.tsx b/src/components/IconFlip.tsx new file mode 100644 index 000000000..86b1cd95f --- /dev/null +++ b/src/components/IconFlip.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlip: React.FC = (props) => ( + + + + +) + +export { IconFlip } diff --git a/src/components/IconFlipCameraAndroid.tsx b/src/components/IconFlipCameraAndroid.tsx new file mode 100644 index 000000000..0580a486b --- /dev/null +++ b/src/components/IconFlipCameraAndroid.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlipCameraAndroid: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconFlipCameraAndroid } diff --git a/src/components/IconFlipCameraIos.tsx b/src/components/IconFlipCameraIos.tsx new file mode 100644 index 000000000..ed72fb168 --- /dev/null +++ b/src/components/IconFlipCameraIos.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlipCameraIos: React.FC = (props) => ( + + + + + + + + + + +) + +export { IconFlipCameraIos } diff --git a/src/components/IconFlipToBack.tsx b/src/components/IconFlipToBack.tsx new file mode 100644 index 000000000..81dcf2550 --- /dev/null +++ b/src/components/IconFlipToBack.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlipToBack: React.FC = (props) => ( + + + + +) + +export { IconFlipToBack } diff --git a/src/components/IconFlipToFront.tsx b/src/components/IconFlipToFront.tsx new file mode 100644 index 000000000..e0ea844fc --- /dev/null +++ b/src/components/IconFlipToFront.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlipToFront: React.FC = (props) => ( + + + + +) + +export { IconFlipToFront } diff --git a/src/components/IconFolder.tsx b/src/components/IconFolder.tsx new file mode 100644 index 000000000..eede167a9 --- /dev/null +++ b/src/components/IconFolder.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFolder: React.FC = (props) => ( + + + + +) + +export { IconFolder } diff --git a/src/components/IconFolderOpen.tsx b/src/components/IconFolderOpen.tsx new file mode 100644 index 000000000..a3d8cb9f6 --- /dev/null +++ b/src/components/IconFolderOpen.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFolderOpen: React.FC = (props) => ( + + + + +) + +export { IconFolderOpen } diff --git a/src/components/IconFolderShared.tsx b/src/components/IconFolderShared.tsx new file mode 100644 index 000000000..a9bcca617 --- /dev/null +++ b/src/components/IconFolderShared.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFolderShared: React.FC = (props) => ( + + + + +) + +export { IconFolderShared } diff --git a/src/components/IconFolderSpecial.tsx b/src/components/IconFolderSpecial.tsx new file mode 100644 index 000000000..9deb0bfd2 --- /dev/null +++ b/src/components/IconFolderSpecial.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFolderSpecial: React.FC = (props) => ( + + + + +) + +export { IconFolderSpecial } diff --git a/src/components/IconFollowTheSigns.tsx b/src/components/IconFollowTheSigns.tsx new file mode 100644 index 000000000..36a7432bf --- /dev/null +++ b/src/components/IconFollowTheSigns.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconFollowTheSigns: React.FC = (props) => ( + + + + +) + +export { IconFollowTheSigns } diff --git a/src/components/IconFontDownload.tsx b/src/components/IconFontDownload.tsx new file mode 100644 index 000000000..b88b1f9f7 --- /dev/null +++ b/src/components/IconFontDownload.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconFontDownload: React.FC = (props) => ( + + + + +) + +export { IconFontDownload } diff --git a/src/components/IconFoodBank.tsx b/src/components/IconFoodBank.tsx new file mode 100644 index 000000000..723364147 --- /dev/null +++ b/src/components/IconFoodBank.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconFoodBank: React.FC = (props) => ( + + + + +) + +export { IconFoodBank } diff --git a/src/components/IconFormatAlignCenter.tsx b/src/components/IconFormatAlignCenter.tsx new file mode 100644 index 000000000..71fd6c3bb --- /dev/null +++ b/src/components/IconFormatAlignCenter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatAlignCenter: React.FC = (props) => ( + + + + +) + +export { IconFormatAlignCenter } diff --git a/src/components/IconFormatAlignJustify.tsx b/src/components/IconFormatAlignJustify.tsx new file mode 100644 index 000000000..317ba717d --- /dev/null +++ b/src/components/IconFormatAlignJustify.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatAlignJustify: React.FC = (props) => ( + + + + +) + +export { IconFormatAlignJustify } diff --git a/src/components/IconFormatAlignLeft.tsx b/src/components/IconFormatAlignLeft.tsx new file mode 100644 index 000000000..ec1b05e85 --- /dev/null +++ b/src/components/IconFormatAlignLeft.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatAlignLeft: React.FC = (props) => ( + + + + +) + +export { IconFormatAlignLeft } diff --git a/src/components/IconFormatAlignRight.tsx b/src/components/IconFormatAlignRight.tsx new file mode 100644 index 000000000..0430a4f36 --- /dev/null +++ b/src/components/IconFormatAlignRight.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatAlignRight: React.FC = (props) => ( + + + + +) + +export { IconFormatAlignRight } diff --git a/src/components/IconFormatBold.tsx b/src/components/IconFormatBold.tsx new file mode 100644 index 000000000..e131fcea7 --- /dev/null +++ b/src/components/IconFormatBold.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatBold: React.FC = (props) => ( + + + + +) + +export { IconFormatBold } diff --git a/src/components/IconFormatClear.tsx b/src/components/IconFormatClear.tsx new file mode 100644 index 000000000..488976fe3 --- /dev/null +++ b/src/components/IconFormatClear.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatClear: React.FC = (props) => ( + + + + +) + +export { IconFormatClear } diff --git a/src/components/IconFormatColorReset.tsx b/src/components/IconFormatColorReset.tsx new file mode 100644 index 000000000..2da6b8fb6 --- /dev/null +++ b/src/components/IconFormatColorReset.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatColorReset: React.FC = (props) => ( + + + + +) + +export { IconFormatColorReset } diff --git a/src/components/IconFormatIndentDecrease.tsx b/src/components/IconFormatIndentDecrease.tsx new file mode 100644 index 000000000..a39c6b946 --- /dev/null +++ b/src/components/IconFormatIndentDecrease.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatIndentDecrease: React.FC = (props) => ( + + + + +) + +export { IconFormatIndentDecrease } diff --git a/src/components/IconFormatIndentIncrease.tsx b/src/components/IconFormatIndentIncrease.tsx new file mode 100644 index 000000000..7f8c68263 --- /dev/null +++ b/src/components/IconFormatIndentIncrease.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatIndentIncrease: React.FC = (props) => ( + + + + +) + +export { IconFormatIndentIncrease } diff --git a/src/components/IconFormatItalic.tsx b/src/components/IconFormatItalic.tsx new file mode 100644 index 000000000..0b311d381 --- /dev/null +++ b/src/components/IconFormatItalic.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatItalic: React.FC = (props) => ( + + + + +) + +export { IconFormatItalic } diff --git a/src/components/IconFormatLineSpacing.tsx b/src/components/IconFormatLineSpacing.tsx new file mode 100644 index 000000000..eb51bc9a8 --- /dev/null +++ b/src/components/IconFormatLineSpacing.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatLineSpacing: React.FC = (props) => ( + + + + +) + +export { IconFormatLineSpacing } diff --git a/src/components/IconFormatListBulleted.tsx b/src/components/IconFormatListBulleted.tsx new file mode 100644 index 000000000..46e4dcbaa --- /dev/null +++ b/src/components/IconFormatListBulleted.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatListBulleted: React.FC = (props) => ( + + + + +) + +export { IconFormatListBulleted } diff --git a/src/components/IconFormatListNumbered.tsx b/src/components/IconFormatListNumbered.tsx new file mode 100644 index 000000000..10bc48cc7 --- /dev/null +++ b/src/components/IconFormatListNumbered.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatListNumbered: React.FC = (props) => ( + + + + +) + +export { IconFormatListNumbered } diff --git a/src/components/IconFormatListNumberedRtl.tsx b/src/components/IconFormatListNumberedRtl.tsx new file mode 100644 index 000000000..4939db07c --- /dev/null +++ b/src/components/IconFormatListNumberedRtl.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatListNumberedRtl: React.FC = (props) => ( + + + + +) + +export { IconFormatListNumberedRtl } diff --git a/src/components/IconFormatPaint.tsx b/src/components/IconFormatPaint.tsx new file mode 100644 index 000000000..2644cf0e6 --- /dev/null +++ b/src/components/IconFormatPaint.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatPaint: React.FC = (props) => ( + + + + +) + +export { IconFormatPaint } diff --git a/src/components/IconFormatQuote.tsx b/src/components/IconFormatQuote.tsx new file mode 100644 index 000000000..80cc83273 --- /dev/null +++ b/src/components/IconFormatQuote.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatQuote: React.FC = (props) => ( + + + + +) + +export { IconFormatQuote } diff --git a/src/components/IconFormatShapes.tsx b/src/components/IconFormatShapes.tsx new file mode 100644 index 000000000..543f143db --- /dev/null +++ b/src/components/IconFormatShapes.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatShapes: React.FC = (props) => ( + + + + +) + +export { IconFormatShapes } diff --git a/src/components/IconFormatSize.tsx b/src/components/IconFormatSize.tsx new file mode 100644 index 000000000..8f023db32 --- /dev/null +++ b/src/components/IconFormatSize.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatSize: React.FC = (props) => ( + + + + +) + +export { IconFormatSize } diff --git a/src/components/IconFormatStrikethrough.tsx b/src/components/IconFormatStrikethrough.tsx new file mode 100644 index 000000000..60d9e13e9 --- /dev/null +++ b/src/components/IconFormatStrikethrough.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatStrikethrough: React.FC = (props) => ( + + + + +) + +export { IconFormatStrikethrough } diff --git a/src/components/IconFormatTextdirectionLToR.tsx b/src/components/IconFormatTextdirectionLToR.tsx new file mode 100644 index 000000000..157389473 --- /dev/null +++ b/src/components/IconFormatTextdirectionLToR.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatTextdirectionLToR: React.FC = (props) => ( + + + + +) + +export { IconFormatTextdirectionLToR } diff --git a/src/components/IconFormatTextdirectionRToL.tsx b/src/components/IconFormatTextdirectionRToL.tsx new file mode 100644 index 000000000..589704ae5 --- /dev/null +++ b/src/components/IconFormatTextdirectionRToL.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatTextdirectionRToL: React.FC = (props) => ( + + + + +) + +export { IconFormatTextdirectionRToL } diff --git a/src/components/IconFormatUnderlined.tsx b/src/components/IconFormatUnderlined.tsx new file mode 100644 index 000000000..7dc2cb426 --- /dev/null +++ b/src/components/IconFormatUnderlined.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatUnderlined: React.FC = (props) => ( + + + + +) + +export { IconFormatUnderlined } diff --git a/src/components/IconForum.tsx b/src/components/IconForum.tsx new file mode 100644 index 000000000..79bc0a5e3 --- /dev/null +++ b/src/components/IconForum.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconForum: React.FC = (props) => ( + + + + +) + +export { IconForum } diff --git a/src/components/IconForward.tsx b/src/components/IconForward.tsx new file mode 100644 index 000000000..b987e1994 --- /dev/null +++ b/src/components/IconForward.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconForward: React.FC = (props) => ( + + + + +) + +export { IconForward } diff --git a/src/components/IconForward10.tsx b/src/components/IconForward10.tsx new file mode 100644 index 000000000..12eb4a43d --- /dev/null +++ b/src/components/IconForward10.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconForward10: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconForward10 } diff --git a/src/components/IconForward30.tsx b/src/components/IconForward30.tsx new file mode 100644 index 000000000..a7970a137 --- /dev/null +++ b/src/components/IconForward30.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconForward30: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconForward30 } diff --git a/src/components/IconForward5.tsx b/src/components/IconForward5.tsx new file mode 100644 index 000000000..a72a11585 --- /dev/null +++ b/src/components/IconForward5.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconForward5: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconForward5 } diff --git a/src/components/IconForwardToInbox.tsx b/src/components/IconForwardToInbox.tsx new file mode 100644 index 000000000..010c98e42 --- /dev/null +++ b/src/components/IconForwardToInbox.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconForwardToInbox: React.FC = (props) => ( + + + + + + +) + +export { IconForwardToInbox } diff --git a/src/components/IconFoundation.tsx b/src/components/IconFoundation.tsx new file mode 100644 index 000000000..eb9cdd7bb --- /dev/null +++ b/src/components/IconFoundation.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconFoundation: React.FC = (props) => ( + + + + +) + +export { IconFoundation } diff --git a/src/components/IconFreeBreakfast.tsx b/src/components/IconFreeBreakfast.tsx new file mode 100644 index 000000000..acb3119b8 --- /dev/null +++ b/src/components/IconFreeBreakfast.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFreeBreakfast: React.FC = (props) => ( + + + + +) + +export { IconFreeBreakfast } diff --git a/src/components/IconFullscreen.tsx b/src/components/IconFullscreen.tsx new file mode 100644 index 000000000..92e78370a --- /dev/null +++ b/src/components/IconFullscreen.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFullscreen: React.FC = (props) => ( + + + + +) + +export { IconFullscreen } diff --git a/src/components/IconFullscreenExit.tsx b/src/components/IconFullscreenExit.tsx new file mode 100644 index 000000000..9690758ff --- /dev/null +++ b/src/components/IconFullscreenExit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFullscreenExit: React.FC = (props) => ( + + + + +) + +export { IconFullscreenExit } diff --git a/src/components/IconFunctions.tsx b/src/components/IconFunctions.tsx new file mode 100644 index 000000000..04331b36c --- /dev/null +++ b/src/components/IconFunctions.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFunctions: React.FC = (props) => ( + + + + +) + +export { IconFunctions } diff --git a/src/components/IconGTranslate.tsx b/src/components/IconGTranslate.tsx new file mode 100644 index 000000000..e2808ff08 --- /dev/null +++ b/src/components/IconGTranslate.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGTranslate: React.FC = (props) => ( + + + + +) + +export { IconGTranslate } diff --git a/src/components/IconGamepad.tsx b/src/components/IconGamepad.tsx new file mode 100644 index 000000000..36fd1ca5c --- /dev/null +++ b/src/components/IconGamepad.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGamepad: React.FC = (props) => ( + + + + +) + +export { IconGamepad } diff --git a/src/components/IconGames.tsx b/src/components/IconGames.tsx new file mode 100644 index 000000000..1e942a19d --- /dev/null +++ b/src/components/IconGames.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGames: React.FC = (props) => ( + + + + +) + +export { IconGames } diff --git a/src/components/IconGavel.tsx b/src/components/IconGavel.tsx new file mode 100644 index 000000000..6c0e8a2c3 --- /dev/null +++ b/src/components/IconGavel.tsx @@ -0,0 +1,42 @@ +import React from 'react' +import { IconProps } from './types' +const IconGavel: React.FC = (props) => ( + + + + + + + + + + + + + +) + +export { IconGavel } diff --git a/src/components/IconGesture.tsx b/src/components/IconGesture.tsx new file mode 100644 index 000000000..7a5622f4b --- /dev/null +++ b/src/components/IconGesture.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGesture: React.FC = (props) => ( + + + + +) + +export { IconGesture } diff --git a/src/components/IconGetApp.tsx b/src/components/IconGetApp.tsx new file mode 100644 index 000000000..64cc28209 --- /dev/null +++ b/src/components/IconGetApp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGetApp: React.FC = (props) => ( + + + + +) + +export { IconGetApp } diff --git a/src/components/IconGif.tsx b/src/components/IconGif.tsx new file mode 100644 index 000000000..4e1a204db --- /dev/null +++ b/src/components/IconGif.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconGif: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconGif } diff --git a/src/components/IconGolfCourse.tsx b/src/components/IconGolfCourse.tsx new file mode 100644 index 000000000..3667cecef --- /dev/null +++ b/src/components/IconGolfCourse.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconGolfCourse: React.FC = (props) => ( + + + + + +) + +export { IconGolfCourse } diff --git a/src/components/IconGpsFixed.tsx b/src/components/IconGpsFixed.tsx new file mode 100644 index 000000000..af3ba0c44 --- /dev/null +++ b/src/components/IconGpsFixed.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGpsFixed: React.FC = (props) => ( + + + + +) + +export { IconGpsFixed } diff --git a/src/components/IconGpsNotFixed.tsx b/src/components/IconGpsNotFixed.tsx new file mode 100644 index 000000000..9a6fb9d9d --- /dev/null +++ b/src/components/IconGpsNotFixed.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGpsNotFixed: React.FC = (props) => ( + + + + +) + +export { IconGpsNotFixed } diff --git a/src/components/IconGpsOff.tsx b/src/components/IconGpsOff.tsx new file mode 100644 index 000000000..558f7f1f5 --- /dev/null +++ b/src/components/IconGpsOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGpsOff: React.FC = (props) => ( + + + + +) + +export { IconGpsOff } diff --git a/src/components/IconGrade.tsx b/src/components/IconGrade.tsx new file mode 100644 index 000000000..66702953f --- /dev/null +++ b/src/components/IconGrade.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGrade: React.FC = (props) => ( + + + + +) + +export { IconGrade } diff --git a/src/components/IconGradient.tsx b/src/components/IconGradient.tsx new file mode 100644 index 000000000..a0b709c9c --- /dev/null +++ b/src/components/IconGradient.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGradient: React.FC = (props) => ( + + + + +) + +export { IconGradient } diff --git a/src/components/IconGrading.tsx b/src/components/IconGrading.tsx new file mode 100644 index 000000000..ad09fdfb3 --- /dev/null +++ b/src/components/IconGrading.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconGrading: React.FC = (props) => ( + + + + + + + + +) + +export { IconGrading } diff --git a/src/components/IconGrain.tsx b/src/components/IconGrain.tsx new file mode 100644 index 000000000..aa54a7f21 --- /dev/null +++ b/src/components/IconGrain.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGrain: React.FC = (props) => ( + + + + +) + +export { IconGrain } diff --git a/src/components/IconGraphicEq.tsx b/src/components/IconGraphicEq.tsx new file mode 100644 index 000000000..e833cf392 --- /dev/null +++ b/src/components/IconGraphicEq.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGraphicEq: React.FC = (props) => ( + + + + +) + +export { IconGraphicEq } diff --git a/src/components/IconGrass.tsx b/src/components/IconGrass.tsx new file mode 100644 index 000000000..2e934d49b --- /dev/null +++ b/src/components/IconGrass.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconGrass: React.FC = (props) => ( + + + + +) + +export { IconGrass } diff --git a/src/components/IconGridOff.tsx b/src/components/IconGridOff.tsx new file mode 100644 index 000000000..ad3fdc368 --- /dev/null +++ b/src/components/IconGridOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGridOff: React.FC = (props) => ( + + + + +) + +export { IconGridOff } diff --git a/src/components/IconGridOn.tsx b/src/components/IconGridOn.tsx new file mode 100644 index 000000000..d5b1b76c8 --- /dev/null +++ b/src/components/IconGridOn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGridOn: React.FC = (props) => ( + + + + +) + +export { IconGridOn } diff --git a/src/components/IconGroup.tsx b/src/components/IconGroup.tsx new file mode 100644 index 000000000..fe4e75a4e --- /dev/null +++ b/src/components/IconGroup.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGroup: React.FC = (props) => ( + + + + +) + +export { IconGroup } diff --git a/src/components/IconGroupAdd.tsx b/src/components/IconGroupAdd.tsx new file mode 100644 index 000000000..84c2fd032 --- /dev/null +++ b/src/components/IconGroupAdd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGroupAdd: React.FC = (props) => ( + + + + +) + +export { IconGroupAdd } diff --git a/src/components/IconGroupWork.tsx b/src/components/IconGroupWork.tsx new file mode 100644 index 000000000..0c4762856 --- /dev/null +++ b/src/components/IconGroupWork.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGroupWork: React.FC = (props) => ( + + + + +) + +export { IconGroupWork } diff --git a/src/components/IconGroups.tsx b/src/components/IconGroups.tsx new file mode 100644 index 000000000..c9d1b2e73 --- /dev/null +++ b/src/components/IconGroups.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconGroups: React.FC = (props) => ( + + + + + + +) + +export { IconGroups } diff --git a/src/components/IconHandyman.tsx b/src/components/IconHandyman.tsx new file mode 100644 index 000000000..831e9fab3 --- /dev/null +++ b/src/components/IconHandyman.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconHandyman: React.FC = (props) => ( + + + + + + + + + + + + + + + +) + +export { IconHandyman } diff --git a/src/components/IconHd.tsx b/src/components/IconHd.tsx new file mode 100644 index 000000000..39ea057cb --- /dev/null +++ b/src/components/IconHd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHd: React.FC = (props) => ( + + + + +) + +export { IconHd } diff --git a/src/components/IconHdrOff.tsx b/src/components/IconHdrOff.tsx new file mode 100644 index 000000000..1a6f24944 --- /dev/null +++ b/src/components/IconHdrOff.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { IconProps } from './types' +const IconHdrOff: React.FC = (props) => ( + + + +) + +export { IconHdrOff } diff --git a/src/components/IconHdrOn.tsx b/src/components/IconHdrOn.tsx new file mode 100644 index 000000000..22000a22d --- /dev/null +++ b/src/components/IconHdrOn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHdrOn: React.FC = (props) => ( + + + + +) + +export { IconHdrOn } diff --git a/src/components/IconHdrStrong.tsx b/src/components/IconHdrStrong.tsx new file mode 100644 index 000000000..f8f037e0e --- /dev/null +++ b/src/components/IconHdrStrong.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHdrStrong: React.FC = (props) => ( + + + + +) + +export { IconHdrStrong } diff --git a/src/components/IconHdrWeak.tsx b/src/components/IconHdrWeak.tsx new file mode 100644 index 000000000..e2bbf1ede --- /dev/null +++ b/src/components/IconHdrWeak.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHdrWeak: React.FC = (props) => ( + + + + +) + +export { IconHdrWeak } diff --git a/src/components/IconHeadset.tsx b/src/components/IconHeadset.tsx new file mode 100644 index 000000000..702e7b7dd --- /dev/null +++ b/src/components/IconHeadset.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHeadset: React.FC = (props) => ( + + + + +) + +export { IconHeadset } diff --git a/src/components/IconHeadsetMic.tsx b/src/components/IconHeadsetMic.tsx new file mode 100644 index 000000000..337398259 --- /dev/null +++ b/src/components/IconHeadsetMic.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHeadsetMic: React.FC = (props) => ( + + + + +) + +export { IconHeadsetMic } diff --git a/src/components/IconHealing.tsx b/src/components/IconHealing.tsx new file mode 100644 index 000000000..73be60b9e --- /dev/null +++ b/src/components/IconHealing.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHealing: React.FC = (props) => ( + + + + +) + +export { IconHealing } diff --git a/src/components/IconHearing.tsx b/src/components/IconHearing.tsx new file mode 100644 index 000000000..eaceeea52 --- /dev/null +++ b/src/components/IconHearing.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHearing: React.FC = (props) => ( + + + + +) + +export { IconHearing } diff --git a/src/components/IconHearingDisabled.tsx b/src/components/IconHearingDisabled.tsx new file mode 100644 index 000000000..3d17ed60c --- /dev/null +++ b/src/components/IconHearingDisabled.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconHearingDisabled: React.FC = (props) => ( + + + + + + +) + +export { IconHearingDisabled } diff --git a/src/components/IconHeight.tsx b/src/components/IconHeight.tsx new file mode 100644 index 000000000..c6ec6b213 --- /dev/null +++ b/src/components/IconHeight.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconHeight: React.FC = (props) => ( + + + + + + + + + +) + +export { IconHeight } diff --git a/src/components/IconHelp.tsx b/src/components/IconHelp.tsx new file mode 100644 index 000000000..51f6b783d --- /dev/null +++ b/src/components/IconHelp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHelp: React.FC = (props) => ( + + + + +) + +export { IconHelp } diff --git a/src/components/IconHelpCenter.tsx b/src/components/IconHelpCenter.tsx new file mode 100644 index 000000000..355119d7e --- /dev/null +++ b/src/components/IconHelpCenter.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconHelpCenter: React.FC = (props) => ( + + + + + + +) + +export { IconHelpCenter } diff --git a/src/components/IconHelpOutline.tsx b/src/components/IconHelpOutline.tsx new file mode 100644 index 000000000..cd9275656 --- /dev/null +++ b/src/components/IconHelpOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHelpOutline: React.FC = (props) => ( + + + + +) + +export { IconHelpOutline } diff --git a/src/components/IconHighQuality.tsx b/src/components/IconHighQuality.tsx new file mode 100644 index 000000000..92c31f713 --- /dev/null +++ b/src/components/IconHighQuality.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHighQuality: React.FC = (props) => ( + + + + +) + +export { IconHighQuality } diff --git a/src/components/IconHighlight.tsx b/src/components/IconHighlight.tsx new file mode 100644 index 000000000..96bcc6b33 --- /dev/null +++ b/src/components/IconHighlight.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconHighlight: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconHighlight } diff --git a/src/components/IconHighlightAlt.tsx b/src/components/IconHighlightAlt.tsx new file mode 100644 index 000000000..b02956e77 --- /dev/null +++ b/src/components/IconHighlightAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHighlightAlt: React.FC = (props) => ( + + + + +) + +export { IconHighlightAlt } diff --git a/src/components/IconHighlightOff.tsx b/src/components/IconHighlightOff.tsx new file mode 100644 index 000000000..c50e913cd --- /dev/null +++ b/src/components/IconHighlightOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHighlightOff: React.FC = (props) => ( + + + + +) + +export { IconHighlightOff } diff --git a/src/components/IconHistory.tsx b/src/components/IconHistory.tsx new file mode 100644 index 000000000..31941687c --- /dev/null +++ b/src/components/IconHistory.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHistory: React.FC = (props) => ( + + + + +) + +export { IconHistory } diff --git a/src/components/IconHistoryEdu.tsx b/src/components/IconHistoryEdu.tsx new file mode 100644 index 000000000..6305e375a --- /dev/null +++ b/src/components/IconHistoryEdu.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconHistoryEdu: React.FC = (props) => ( + + + + + + + + + + +) + +export { IconHistoryEdu } diff --git a/src/components/IconHistoryToggleOff.tsx b/src/components/IconHistoryToggleOff.tsx new file mode 100644 index 000000000..f462a1163 --- /dev/null +++ b/src/components/IconHistoryToggleOff.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconHistoryToggleOff: React.FC = (props) => ( + + + + + + +) + +export { IconHistoryToggleOff } diff --git a/src/components/IconHome.tsx b/src/components/IconHome.tsx new file mode 100644 index 000000000..f57e937bc --- /dev/null +++ b/src/components/IconHome.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHome: React.FC = (props) => ( + + + + +) + +export { IconHome } diff --git a/src/components/IconHomeRepairService.tsx b/src/components/IconHomeRepairService.tsx new file mode 100644 index 000000000..050d0c7ac --- /dev/null +++ b/src/components/IconHomeRepairService.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconHomeRepairService: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconHomeRepairService } diff --git a/src/components/IconHomeWork.tsx b/src/components/IconHomeWork.tsx new file mode 100644 index 000000000..4c9670a85 --- /dev/null +++ b/src/components/IconHomeWork.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconHomeWork: React.FC = (props) => ( + + + + + + +) + +export { IconHomeWork } diff --git a/src/components/IconHorizontalDistribute.tsx b/src/components/IconHorizontalDistribute.tsx new file mode 100644 index 000000000..1c66e08bd --- /dev/null +++ b/src/components/IconHorizontalDistribute.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconHorizontalDistribute: React.FC = (props) => ( + + + + +) + +export { IconHorizontalDistribute } diff --git a/src/components/IconHorizontalRule.tsx b/src/components/IconHorizontalRule.tsx new file mode 100644 index 000000000..d680d9a00 --- /dev/null +++ b/src/components/IconHorizontalRule.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconHorizontalRule: React.FC = (props) => ( + + + + + + +) + +export { IconHorizontalRule } diff --git a/src/components/IconHorizontalSplit.tsx b/src/components/IconHorizontalSplit.tsx new file mode 100644 index 000000000..eaa6061ca --- /dev/null +++ b/src/components/IconHorizontalSplit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHorizontalSplit: React.FC = (props) => ( + + + + +) + +export { IconHorizontalSplit } diff --git a/src/components/IconHotTub.tsx b/src/components/IconHotTub.tsx new file mode 100644 index 000000000..1edc080ca --- /dev/null +++ b/src/components/IconHotTub.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconHotTub: React.FC = (props) => ( + + + + + +) + +export { IconHotTub } diff --git a/src/components/IconHotel.tsx b/src/components/IconHotel.tsx new file mode 100644 index 000000000..1b4144adb --- /dev/null +++ b/src/components/IconHotel.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHotel: React.FC = (props) => ( + + + + +) + +export { IconHotel } diff --git a/src/components/IconHourglassBottom.tsx b/src/components/IconHourglassBottom.tsx new file mode 100644 index 000000000..24aa5d228 --- /dev/null +++ b/src/components/IconHourglassBottom.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconHourglassBottom: React.FC = (props) => ( + + + + + + + + +) + +export { IconHourglassBottom } diff --git a/src/components/IconHourglassDisabled.tsx b/src/components/IconHourglassDisabled.tsx new file mode 100644 index 000000000..f0f394b6a --- /dev/null +++ b/src/components/IconHourglassDisabled.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconHourglassDisabled: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconHourglassDisabled } diff --git a/src/components/IconHourglassEmpty.tsx b/src/components/IconHourglassEmpty.tsx new file mode 100644 index 000000000..77d3e2107 --- /dev/null +++ b/src/components/IconHourglassEmpty.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHourglassEmpty: React.FC = (props) => ( + + + + +) + +export { IconHourglassEmpty } diff --git a/src/components/IconHourglassFull.tsx b/src/components/IconHourglassFull.tsx new file mode 100644 index 000000000..84021506e --- /dev/null +++ b/src/components/IconHourglassFull.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHourglassFull: React.FC = (props) => ( + + + + +) + +export { IconHourglassFull } diff --git a/src/components/IconHourglassTop.tsx b/src/components/IconHourglassTop.tsx new file mode 100644 index 000000000..6b128137c --- /dev/null +++ b/src/components/IconHourglassTop.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconHourglassTop: React.FC = (props) => ( + + + + + + + + +) + +export { IconHourglassTop } diff --git a/src/components/IconHouse.tsx b/src/components/IconHouse.tsx new file mode 100644 index 000000000..59334419f --- /dev/null +++ b/src/components/IconHouse.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconHouse: React.FC = (props) => ( + + + + + + + + +) + +export { IconHouse } diff --git a/src/components/IconHouseSiding.tsx b/src/components/IconHouseSiding.tsx new file mode 100644 index 000000000..fe85998bf --- /dev/null +++ b/src/components/IconHouseSiding.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconHouseSiding: React.FC = (props) => ( + + + + +) + +export { IconHouseSiding } diff --git a/src/components/IconHowToReg.tsx b/src/components/IconHowToReg.tsx new file mode 100644 index 000000000..b18b7e613 --- /dev/null +++ b/src/components/IconHowToReg.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconHowToReg: React.FC = (props) => ( + + + + + + + +) + +export { IconHowToReg } diff --git a/src/components/IconHowToVote.tsx b/src/components/IconHowToVote.tsx new file mode 100644 index 000000000..924bf6b61 --- /dev/null +++ b/src/components/IconHowToVote.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHowToVote: React.FC = (props) => ( + + + + +) + +export { IconHowToVote } diff --git a/src/components/IconHttp.tsx b/src/components/IconHttp.tsx new file mode 100644 index 000000000..2fb6fb459 --- /dev/null +++ b/src/components/IconHttp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHttp: React.FC = (props) => ( + + + + +) + +export { IconHttp } diff --git a/src/components/IconHttps.tsx b/src/components/IconHttps.tsx new file mode 100644 index 000000000..762c1c667 --- /dev/null +++ b/src/components/IconHttps.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHttps: React.FC = (props) => ( + + + + +) + +export { IconHttps } diff --git a/src/components/IconHvac.tsx b/src/components/IconHvac.tsx new file mode 100644 index 000000000..136ff5493 --- /dev/null +++ b/src/components/IconHvac.tsx @@ -0,0 +1,35 @@ +import React from 'react' +import { IconProps } from './types' +const IconHvac: React.FC = (props) => ( + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconHvac } diff --git a/src/components/IconImage.tsx b/src/components/IconImage.tsx new file mode 100644 index 000000000..9de1d2f16 --- /dev/null +++ b/src/components/IconImage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconImage: React.FC = (props) => ( + + + + +) + +export { IconImage } diff --git a/src/components/IconImageAspectRatio.tsx b/src/components/IconImageAspectRatio.tsx new file mode 100644 index 000000000..08e3dfddb --- /dev/null +++ b/src/components/IconImageAspectRatio.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconImageAspectRatio: React.FC = (props) => ( + + + + +) + +export { IconImageAspectRatio } diff --git a/src/components/IconImageNotSupported.tsx b/src/components/IconImageNotSupported.tsx new file mode 100644 index 000000000..1c541ba53 --- /dev/null +++ b/src/components/IconImageNotSupported.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconImageNotSupported: React.FC = (props) => ( + + + + + + +) + +export { IconImageNotSupported } diff --git a/src/components/IconImageSearch.tsx b/src/components/IconImageSearch.tsx new file mode 100644 index 000000000..dc91fd90d --- /dev/null +++ b/src/components/IconImageSearch.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconImageSearch: React.FC = (props) => ( + + + + + +) + +export { IconImageSearch } diff --git a/src/components/IconImportContacts.tsx b/src/components/IconImportContacts.tsx new file mode 100644 index 000000000..bb8eeddb0 --- /dev/null +++ b/src/components/IconImportContacts.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconImportContacts: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconImportContacts } diff --git a/src/components/IconImportExport.tsx b/src/components/IconImportExport.tsx new file mode 100644 index 000000000..fa82aded5 --- /dev/null +++ b/src/components/IconImportExport.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconImportExport: React.FC = (props) => ( + + + + +) + +export { IconImportExport } diff --git a/src/components/IconImportantDevices.tsx b/src/components/IconImportantDevices.tsx new file mode 100644 index 000000000..b1feaba62 --- /dev/null +++ b/src/components/IconImportantDevices.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconImportantDevices: React.FC = (props) => ( + + + + +) + +export { IconImportantDevices } diff --git a/src/components/IconInbox.tsx b/src/components/IconInbox.tsx new file mode 100644 index 000000000..60d8bfa05 --- /dev/null +++ b/src/components/IconInbox.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInbox: React.FC = (props) => ( + + + + +) + +export { IconInbox } diff --git a/src/components/IconIndeterminateCheckBox.tsx b/src/components/IconIndeterminateCheckBox.tsx new file mode 100644 index 000000000..3cec2e45d --- /dev/null +++ b/src/components/IconIndeterminateCheckBox.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconIndeterminateCheckBox: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconIndeterminateCheckBox } diff --git a/src/components/IconInfo.tsx b/src/components/IconInfo.tsx new file mode 100644 index 000000000..d7898cabd --- /dev/null +++ b/src/components/IconInfo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInfo: React.FC = (props) => ( + + + + +) + +export { IconInfo } diff --git a/src/components/IconInput.tsx b/src/components/IconInput.tsx new file mode 100644 index 000000000..f96a01c9e --- /dev/null +++ b/src/components/IconInput.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInput: React.FC = (props) => ( + + + + +) + +export { IconInput } diff --git a/src/components/IconInsertChart.tsx b/src/components/IconInsertChart.tsx new file mode 100644 index 000000000..1ea02956c --- /dev/null +++ b/src/components/IconInsertChart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsertChart: React.FC = (props) => ( + + + + +) + +export { IconInsertChart } diff --git a/src/components/IconInsertChartOutlined.tsx b/src/components/IconInsertChartOutlined.tsx new file mode 100644 index 000000000..1a7012bd1 --- /dev/null +++ b/src/components/IconInsertChartOutlined.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsertChartOutlined: React.FC = (props) => ( + + + + +) + +export { IconInsertChartOutlined } diff --git a/src/components/IconInsertComment.tsx b/src/components/IconInsertComment.tsx new file mode 100644 index 000000000..4368ef2d3 --- /dev/null +++ b/src/components/IconInsertComment.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsertComment: React.FC = (props) => ( + + + + +) + +export { IconInsertComment } diff --git a/src/components/IconInsertDriveFile.tsx b/src/components/IconInsertDriveFile.tsx new file mode 100644 index 000000000..4efa1d0d9 --- /dev/null +++ b/src/components/IconInsertDriveFile.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsertDriveFile: React.FC = (props) => ( + + + + +) + +export { IconInsertDriveFile } diff --git a/src/components/IconInsertEmoticon.tsx b/src/components/IconInsertEmoticon.tsx new file mode 100644 index 000000000..351abe88d --- /dev/null +++ b/src/components/IconInsertEmoticon.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsertEmoticon: React.FC = (props) => ( + + + + +) + +export { IconInsertEmoticon } diff --git a/src/components/IconInsertInvitation.tsx b/src/components/IconInsertInvitation.tsx new file mode 100644 index 000000000..dd45a839d --- /dev/null +++ b/src/components/IconInsertInvitation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsertInvitation: React.FC = (props) => ( + + + + +) + +export { IconInsertInvitation } diff --git a/src/components/IconInsertLink.tsx b/src/components/IconInsertLink.tsx new file mode 100644 index 000000000..5531e143b --- /dev/null +++ b/src/components/IconInsertLink.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsertLink: React.FC = (props) => ( + + + + +) + +export { IconInsertLink } diff --git a/src/components/IconInsertPhoto.tsx b/src/components/IconInsertPhoto.tsx new file mode 100644 index 000000000..95427bd0b --- /dev/null +++ b/src/components/IconInsertPhoto.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsertPhoto: React.FC = (props) => ( + + + + +) + +export { IconInsertPhoto } diff --git a/src/components/IconInsights.tsx b/src/components/IconInsights.tsx new file mode 100644 index 000000000..f71d55951 --- /dev/null +++ b/src/components/IconInsights.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsights: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconInsights } diff --git a/src/components/IconIntegrationInstructions.tsx b/src/components/IconIntegrationInstructions.tsx new file mode 100644 index 000000000..5fb9bb4a1 --- /dev/null +++ b/src/components/IconIntegrationInstructions.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconIntegrationInstructions: React.FC = (props) => ( + + + + + + + + + +) + +export { IconIntegrationInstructions } diff --git a/src/components/IconInvertColors.tsx b/src/components/IconInvertColors.tsx new file mode 100644 index 000000000..9c08d5665 --- /dev/null +++ b/src/components/IconInvertColors.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInvertColors: React.FC = (props) => ( + + + + +) + +export { IconInvertColors } diff --git a/src/components/IconInvertColorsOff.tsx b/src/components/IconInvertColorsOff.tsx new file mode 100644 index 000000000..6de3308c1 --- /dev/null +++ b/src/components/IconInvertColorsOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInvertColorsOff: React.FC = (props) => ( + + + + +) + +export { IconInvertColorsOff } diff --git a/src/components/IconIso.tsx b/src/components/IconIso.tsx new file mode 100644 index 000000000..cf87616c4 --- /dev/null +++ b/src/components/IconIso.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconIso: React.FC = (props) => ( + + + + +) + +export { IconIso } diff --git a/src/components/IconKeyboard.tsx b/src/components/IconKeyboard.tsx new file mode 100644 index 000000000..73195b6fe --- /dev/null +++ b/src/components/IconKeyboard.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboard: React.FC = (props) => ( + + + + +) + +export { IconKeyboard } diff --git a/src/components/IconKeyboardArrowDown.tsx b/src/components/IconKeyboardArrowDown.tsx new file mode 100644 index 000000000..bf1d43bd9 --- /dev/null +++ b/src/components/IconKeyboardArrowDown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardArrowDown: React.FC = (props) => ( + + + + +) + +export { IconKeyboardArrowDown } diff --git a/src/components/IconKeyboardArrowLeft.tsx b/src/components/IconKeyboardArrowLeft.tsx new file mode 100644 index 000000000..123936023 --- /dev/null +++ b/src/components/IconKeyboardArrowLeft.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardArrowLeft: React.FC = (props) => ( + + + + +) + +export { IconKeyboardArrowLeft } diff --git a/src/components/IconKeyboardArrowRight.tsx b/src/components/IconKeyboardArrowRight.tsx new file mode 100644 index 000000000..afc6474f7 --- /dev/null +++ b/src/components/IconKeyboardArrowRight.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardArrowRight: React.FC = (props) => ( + + + + +) + +export { IconKeyboardArrowRight } diff --git a/src/components/IconKeyboardArrowUp.tsx b/src/components/IconKeyboardArrowUp.tsx new file mode 100644 index 000000000..2fada9df6 --- /dev/null +++ b/src/components/IconKeyboardArrowUp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardArrowUp: React.FC = (props) => ( + + + + +) + +export { IconKeyboardArrowUp } diff --git a/src/components/IconKeyboardBackspace.tsx b/src/components/IconKeyboardBackspace.tsx new file mode 100644 index 000000000..d6cd0d6b0 --- /dev/null +++ b/src/components/IconKeyboardBackspace.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardBackspace: React.FC = (props) => ( + + + + +) + +export { IconKeyboardBackspace } diff --git a/src/components/IconKeyboardCapslock.tsx b/src/components/IconKeyboardCapslock.tsx new file mode 100644 index 000000000..96603e15e --- /dev/null +++ b/src/components/IconKeyboardCapslock.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardCapslock: React.FC = (props) => ( + + + + +) + +export { IconKeyboardCapslock } diff --git a/src/components/IconKeyboardHide.tsx b/src/components/IconKeyboardHide.tsx new file mode 100644 index 000000000..bb9eb097f --- /dev/null +++ b/src/components/IconKeyboardHide.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardHide: React.FC = (props) => ( + + + + +) + +export { IconKeyboardHide } diff --git a/src/components/IconKeyboardReturn.tsx b/src/components/IconKeyboardReturn.tsx new file mode 100644 index 000000000..54928596d --- /dev/null +++ b/src/components/IconKeyboardReturn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardReturn: React.FC = (props) => ( + + + + +) + +export { IconKeyboardReturn } diff --git a/src/components/IconKeyboardTab.tsx b/src/components/IconKeyboardTab.tsx new file mode 100644 index 000000000..51716d1c6 --- /dev/null +++ b/src/components/IconKeyboardTab.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardTab: React.FC = (props) => ( + + + + +) + +export { IconKeyboardTab } diff --git a/src/components/IconKeyboardVoice.tsx b/src/components/IconKeyboardVoice.tsx new file mode 100644 index 000000000..6840d88eb --- /dev/null +++ b/src/components/IconKeyboardVoice.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardVoice: React.FC = (props) => ( + + + + +) + +export { IconKeyboardVoice } diff --git a/src/components/IconKingBed.tsx b/src/components/IconKingBed.tsx new file mode 100644 index 000000000..ceff842da --- /dev/null +++ b/src/components/IconKingBed.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconKingBed: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconKingBed } diff --git a/src/components/IconKitchen.tsx b/src/components/IconKitchen.tsx new file mode 100644 index 000000000..b3c8d992c --- /dev/null +++ b/src/components/IconKitchen.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKitchen: React.FC = (props) => ( + + + + +) + +export { IconKitchen } diff --git a/src/components/IconLabel.tsx b/src/components/IconLabel.tsx new file mode 100644 index 000000000..da674bd04 --- /dev/null +++ b/src/components/IconLabel.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLabel: React.FC = (props) => ( + + + + +) + +export { IconLabel } diff --git a/src/components/IconLabelImportant.tsx b/src/components/IconLabelImportant.tsx new file mode 100644 index 000000000..5297528c5 --- /dev/null +++ b/src/components/IconLabelImportant.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLabelImportant: React.FC = (props) => ( + + + + +) + +export { IconLabelImportant } diff --git a/src/components/IconLabelOff.tsx b/src/components/IconLabelOff.tsx new file mode 100644 index 000000000..468416685 --- /dev/null +++ b/src/components/IconLabelOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLabelOff: React.FC = (props) => ( + + + + +) + +export { IconLabelOff } diff --git a/src/components/IconLandscape.tsx b/src/components/IconLandscape.tsx new file mode 100644 index 000000000..d9a16c07f --- /dev/null +++ b/src/components/IconLandscape.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLandscape: React.FC = (props) => ( + + + + +) + +export { IconLandscape } diff --git a/src/components/IconLanguage.tsx b/src/components/IconLanguage.tsx new file mode 100644 index 000000000..b35293bc6 --- /dev/null +++ b/src/components/IconLanguage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLanguage: React.FC = (props) => ( + + + + +) + +export { IconLanguage } diff --git a/src/components/IconLaptop.tsx b/src/components/IconLaptop.tsx new file mode 100644 index 000000000..0a5842d37 --- /dev/null +++ b/src/components/IconLaptop.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconLaptop: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconLaptop } diff --git a/src/components/IconLaptopChromebook.tsx b/src/components/IconLaptopChromebook.tsx new file mode 100644 index 000000000..a1f618c7f --- /dev/null +++ b/src/components/IconLaptopChromebook.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLaptopChromebook: React.FC = (props) => ( + + + + +) + +export { IconLaptopChromebook } diff --git a/src/components/IconLaptopMac.tsx b/src/components/IconLaptopMac.tsx new file mode 100644 index 000000000..8244daab3 --- /dev/null +++ b/src/components/IconLaptopMac.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLaptopMac: React.FC = (props) => ( + + + + +) + +export { IconLaptopMac } diff --git a/src/components/IconLaptopWindows.tsx b/src/components/IconLaptopWindows.tsx new file mode 100644 index 000000000..26d95f5e3 --- /dev/null +++ b/src/components/IconLaptopWindows.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLaptopWindows: React.FC = (props) => ( + + + + +) + +export { IconLaptopWindows } diff --git a/src/components/IconLastPage.tsx b/src/components/IconLastPage.tsx new file mode 100644 index 000000000..46d893daa --- /dev/null +++ b/src/components/IconLastPage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLastPage: React.FC = (props) => ( + + + + +) + +export { IconLastPage } diff --git a/src/components/IconLaunch.tsx b/src/components/IconLaunch.tsx new file mode 100644 index 000000000..a6f862e34 --- /dev/null +++ b/src/components/IconLaunch.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLaunch: React.FC = (props) => ( + + + + +) + +export { IconLaunch } diff --git a/src/components/IconLayers.tsx b/src/components/IconLayers.tsx new file mode 100644 index 000000000..dd5780089 --- /dev/null +++ b/src/components/IconLayers.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLayers: React.FC = (props) => ( + + + + +) + +export { IconLayers } diff --git a/src/components/IconLayersClear.tsx b/src/components/IconLayersClear.tsx new file mode 100644 index 000000000..702b972f6 --- /dev/null +++ b/src/components/IconLayersClear.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLayersClear: React.FC = (props) => ( + + + + +) + +export { IconLayersClear } diff --git a/src/components/IconLeaderboard.tsx b/src/components/IconLeaderboard.tsx new file mode 100644 index 000000000..5fe661f79 --- /dev/null +++ b/src/components/IconLeaderboard.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconLeaderboard: React.FC = (props) => ( + + + + + + +) + +export { IconLeaderboard } diff --git a/src/components/IconLeakAdd.tsx b/src/components/IconLeakAdd.tsx new file mode 100644 index 000000000..54e3dd7d0 --- /dev/null +++ b/src/components/IconLeakAdd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLeakAdd: React.FC = (props) => ( + + + + +) + +export { IconLeakAdd } diff --git a/src/components/IconLeakRemove.tsx b/src/components/IconLeakRemove.tsx new file mode 100644 index 000000000..721ba3a68 --- /dev/null +++ b/src/components/IconLeakRemove.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLeakRemove: React.FC = (props) => ( + + + + +) + +export { IconLeakRemove } diff --git a/src/components/IconLegendToggle.tsx b/src/components/IconLegendToggle.tsx new file mode 100644 index 000000000..11460b2bc --- /dev/null +++ b/src/components/IconLegendToggle.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconLegendToggle: React.FC = (props) => ( + + + + + + +) + +export { IconLegendToggle } diff --git a/src/components/IconLens.tsx b/src/components/IconLens.tsx new file mode 100644 index 000000000..846c1094a --- /dev/null +++ b/src/components/IconLens.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLens: React.FC = (props) => ( + + + + +) + +export { IconLens } diff --git a/src/components/IconLibraryAdd.tsx b/src/components/IconLibraryAdd.tsx new file mode 100644 index 000000000..a003d69d1 --- /dev/null +++ b/src/components/IconLibraryAdd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLibraryAdd: React.FC = (props) => ( + + + + +) + +export { IconLibraryAdd } diff --git a/src/components/IconLibraryAddCheck.tsx b/src/components/IconLibraryAddCheck.tsx new file mode 100644 index 000000000..2fd5da6c8 --- /dev/null +++ b/src/components/IconLibraryAddCheck.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLibraryAddCheck: React.FC = (props) => ( + + + + +) + +export { IconLibraryAddCheck } diff --git a/src/components/IconLibraryBooks.tsx b/src/components/IconLibraryBooks.tsx new file mode 100644 index 000000000..d0de724d3 --- /dev/null +++ b/src/components/IconLibraryBooks.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLibraryBooks: React.FC = (props) => ( + + + + +) + +export { IconLibraryBooks } diff --git a/src/components/IconLibraryMusic.tsx b/src/components/IconLibraryMusic.tsx new file mode 100644 index 000000000..e773ba037 --- /dev/null +++ b/src/components/IconLibraryMusic.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLibraryMusic: React.FC = (props) => ( + + + + +) + +export { IconLibraryMusic } diff --git a/src/components/IconLineStyle.tsx b/src/components/IconLineStyle.tsx new file mode 100644 index 000000000..0bf31a652 --- /dev/null +++ b/src/components/IconLineStyle.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconLineStyle: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconLineStyle } diff --git a/src/components/IconLineWeight.tsx b/src/components/IconLineWeight.tsx new file mode 100644 index 000000000..2dcae3490 --- /dev/null +++ b/src/components/IconLineWeight.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconLineWeight: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconLineWeight } diff --git a/src/components/IconLinearScale.tsx b/src/components/IconLinearScale.tsx new file mode 100644 index 000000000..f43ed3b7f --- /dev/null +++ b/src/components/IconLinearScale.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconLinearScale: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconLinearScale } diff --git a/src/components/IconLink.tsx b/src/components/IconLink.tsx new file mode 100644 index 000000000..3aeddd065 --- /dev/null +++ b/src/components/IconLink.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLink: React.FC = (props) => ( + + + + +) + +export { IconLink } diff --git a/src/components/IconLinkOff.tsx b/src/components/IconLinkOff.tsx new file mode 100644 index 000000000..7be0c270d --- /dev/null +++ b/src/components/IconLinkOff.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconLinkOff: React.FC = (props) => ( + + + + + +) + +export { IconLinkOff } diff --git a/src/components/IconLinkedCamera.tsx b/src/components/IconLinkedCamera.tsx new file mode 100644 index 000000000..215c0984d --- /dev/null +++ b/src/components/IconLinkedCamera.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconLinkedCamera: React.FC = (props) => ( + + + + + + + +) + +export { IconLinkedCamera } diff --git a/src/components/IconList.tsx b/src/components/IconList.tsx new file mode 100644 index 000000000..97c449195 --- /dev/null +++ b/src/components/IconList.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconList: React.FC = (props) => ( + + + + +) + +export { IconList } diff --git a/src/components/IconListAlt.tsx b/src/components/IconListAlt.tsx new file mode 100644 index 000000000..82b0774b1 --- /dev/null +++ b/src/components/IconListAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconListAlt: React.FC = (props) => ( + + + + +) + +export { IconListAlt } diff --git a/src/components/IconLiveHelp.tsx b/src/components/IconLiveHelp.tsx new file mode 100644 index 000000000..f78fbfeb7 --- /dev/null +++ b/src/components/IconLiveHelp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLiveHelp: React.FC = (props) => ( + + + + +) + +export { IconLiveHelp } diff --git a/src/components/IconLiveTv.tsx b/src/components/IconLiveTv.tsx new file mode 100644 index 000000000..bdef7a645 --- /dev/null +++ b/src/components/IconLiveTv.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLiveTv: React.FC = (props) => ( + + + + +) + +export { IconLiveTv } diff --git a/src/components/IconLocalActivity.tsx b/src/components/IconLocalActivity.tsx new file mode 100644 index 000000000..be050304c --- /dev/null +++ b/src/components/IconLocalActivity.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalActivity: React.FC = (props) => ( + + + + +) + +export { IconLocalActivity } diff --git a/src/components/IconLocalAirport.tsx b/src/components/IconLocalAirport.tsx new file mode 100644 index 000000000..e30b7eef1 --- /dev/null +++ b/src/components/IconLocalAirport.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalAirport: React.FC = (props) => ( + + + + + + +) + +export { IconLocalAirport } diff --git a/src/components/IconLocalAtm.tsx b/src/components/IconLocalAtm.tsx new file mode 100644 index 000000000..1d6b13b66 --- /dev/null +++ b/src/components/IconLocalAtm.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalAtm: React.FC = (props) => ( + + + + +) + +export { IconLocalAtm } diff --git a/src/components/IconLocalBar.tsx b/src/components/IconLocalBar.tsx new file mode 100644 index 000000000..376adf07e --- /dev/null +++ b/src/components/IconLocalBar.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalBar: React.FC = (props) => ( + + + + +) + +export { IconLocalBar } diff --git a/src/components/IconLocalCafe.tsx b/src/components/IconLocalCafe.tsx new file mode 100644 index 000000000..d511c2652 --- /dev/null +++ b/src/components/IconLocalCafe.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalCafe: React.FC = (props) => ( + + + + +) + +export { IconLocalCafe } diff --git a/src/components/IconLocalCarWash.tsx b/src/components/IconLocalCarWash.tsx new file mode 100644 index 000000000..eba3ea1b5 --- /dev/null +++ b/src/components/IconLocalCarWash.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalCarWash: React.FC = (props) => ( + + + + +) + +export { IconLocalCarWash } diff --git a/src/components/IconLocalConvenienceStore.tsx b/src/components/IconLocalConvenienceStore.tsx new file mode 100644 index 000000000..1d76498a9 --- /dev/null +++ b/src/components/IconLocalConvenienceStore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalConvenienceStore: React.FC = (props) => ( + + + + +) + +export { IconLocalConvenienceStore } diff --git a/src/components/IconLocalDining.tsx b/src/components/IconLocalDining.tsx new file mode 100644 index 000000000..3dc83f240 --- /dev/null +++ b/src/components/IconLocalDining.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalDining: React.FC = (props) => ( + + + + +) + +export { IconLocalDining } diff --git a/src/components/IconLocalDrink.tsx b/src/components/IconLocalDrink.tsx new file mode 100644 index 000000000..30b57c88d --- /dev/null +++ b/src/components/IconLocalDrink.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalDrink: React.FC = (props) => ( + + + + +) + +export { IconLocalDrink } diff --git a/src/components/IconLocalFireDepartment.tsx b/src/components/IconLocalFireDepartment.tsx new file mode 100644 index 000000000..df801fa8d --- /dev/null +++ b/src/components/IconLocalFireDepartment.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalFireDepartment: React.FC = (props) => ( + + + + + + + + +) + +export { IconLocalFireDepartment } diff --git a/src/components/IconLocalFlorist.tsx b/src/components/IconLocalFlorist.tsx new file mode 100644 index 000000000..f1dd5e98d --- /dev/null +++ b/src/components/IconLocalFlorist.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalFlorist: React.FC = (props) => ( + + + + +) + +export { IconLocalFlorist } diff --git a/src/components/IconLocalGasStation.tsx b/src/components/IconLocalGasStation.tsx new file mode 100644 index 000000000..2ae1eab69 --- /dev/null +++ b/src/components/IconLocalGasStation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalGasStation: React.FC = (props) => ( + + + + +) + +export { IconLocalGasStation } diff --git a/src/components/IconLocalGroceryStore.tsx b/src/components/IconLocalGroceryStore.tsx new file mode 100644 index 000000000..81899d5c0 --- /dev/null +++ b/src/components/IconLocalGroceryStore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalGroceryStore: React.FC = (props) => ( + + + + +) + +export { IconLocalGroceryStore } diff --git a/src/components/IconLocalHospital.tsx b/src/components/IconLocalHospital.tsx new file mode 100644 index 000000000..b8914bb89 --- /dev/null +++ b/src/components/IconLocalHospital.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalHospital: React.FC = (props) => ( + + + + +) + +export { IconLocalHospital } diff --git a/src/components/IconLocalHotel.tsx b/src/components/IconLocalHotel.tsx new file mode 100644 index 000000000..4fa9877da --- /dev/null +++ b/src/components/IconLocalHotel.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalHotel: React.FC = (props) => ( + + + + +) + +export { IconLocalHotel } diff --git a/src/components/IconLocalLaundryService.tsx b/src/components/IconLocalLaundryService.tsx new file mode 100644 index 000000000..2e35f09a7 --- /dev/null +++ b/src/components/IconLocalLaundryService.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalLaundryService: React.FC = (props) => ( + + + + +) + +export { IconLocalLaundryService } diff --git a/src/components/IconLocalLibrary.tsx b/src/components/IconLocalLibrary.tsx new file mode 100644 index 000000000..2b1d43702 --- /dev/null +++ b/src/components/IconLocalLibrary.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalLibrary: React.FC = (props) => ( + + + + +) + +export { IconLocalLibrary } diff --git a/src/components/IconLocalMall.tsx b/src/components/IconLocalMall.tsx new file mode 100644 index 000000000..3b3fbf134 --- /dev/null +++ b/src/components/IconLocalMall.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalMall: React.FC = (props) => ( + + + + +) + +export { IconLocalMall } diff --git a/src/components/IconLocalMovies.tsx b/src/components/IconLocalMovies.tsx new file mode 100644 index 000000000..f7442b7f6 --- /dev/null +++ b/src/components/IconLocalMovies.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalMovies: React.FC = (props) => ( + + + + +) + +export { IconLocalMovies } diff --git a/src/components/IconLocalOffer.tsx b/src/components/IconLocalOffer.tsx new file mode 100644 index 000000000..1240564ba --- /dev/null +++ b/src/components/IconLocalOffer.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalOffer: React.FC = (props) => ( + + + + +) + +export { IconLocalOffer } diff --git a/src/components/IconLocalParking.tsx b/src/components/IconLocalParking.tsx new file mode 100644 index 000000000..acf3bfdd3 --- /dev/null +++ b/src/components/IconLocalParking.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalParking: React.FC = (props) => ( + + + + +) + +export { IconLocalParking } diff --git a/src/components/IconLocalPharmacy.tsx b/src/components/IconLocalPharmacy.tsx new file mode 100644 index 000000000..02e06a388 --- /dev/null +++ b/src/components/IconLocalPharmacy.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalPharmacy: React.FC = (props) => ( + + + + +) + +export { IconLocalPharmacy } diff --git a/src/components/IconLocalPhone.tsx b/src/components/IconLocalPhone.tsx new file mode 100644 index 000000000..189cdc309 --- /dev/null +++ b/src/components/IconLocalPhone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalPhone: React.FC = (props) => ( + + + + +) + +export { IconLocalPhone } diff --git a/src/components/IconLocalPizza.tsx b/src/components/IconLocalPizza.tsx new file mode 100644 index 000000000..6d649b73e --- /dev/null +++ b/src/components/IconLocalPizza.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalPizza: React.FC = (props) => ( + + + + +) + +export { IconLocalPizza } diff --git a/src/components/IconLocalPlay.tsx b/src/components/IconLocalPlay.tsx new file mode 100644 index 000000000..1edf4c678 --- /dev/null +++ b/src/components/IconLocalPlay.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalPlay: React.FC = (props) => ( + + + + +) + +export { IconLocalPlay } diff --git a/src/components/IconLocalPolice.tsx b/src/components/IconLocalPolice.tsx new file mode 100644 index 000000000..d53619f70 --- /dev/null +++ b/src/components/IconLocalPolice.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalPolice: React.FC = (props) => ( + + + + +) + +export { IconLocalPolice } diff --git a/src/components/IconLocalPostOffice.tsx b/src/components/IconLocalPostOffice.tsx new file mode 100644 index 000000000..90aa653c5 --- /dev/null +++ b/src/components/IconLocalPostOffice.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalPostOffice: React.FC = (props) => ( + + + + +) + +export { IconLocalPostOffice } diff --git a/src/components/IconLocalPrintshop.tsx b/src/components/IconLocalPrintshop.tsx new file mode 100644 index 000000000..ac0123298 --- /dev/null +++ b/src/components/IconLocalPrintshop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalPrintshop: React.FC = (props) => ( + + + + +) + +export { IconLocalPrintshop } diff --git a/src/components/IconLocalSee.tsx b/src/components/IconLocalSee.tsx new file mode 100644 index 000000000..b706b5d76 --- /dev/null +++ b/src/components/IconLocalSee.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalSee: React.FC = (props) => ( + + + + + +) + +export { IconLocalSee } diff --git a/src/components/IconLocalShipping.tsx b/src/components/IconLocalShipping.tsx new file mode 100644 index 000000000..18081ee31 --- /dev/null +++ b/src/components/IconLocalShipping.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalShipping: React.FC = (props) => ( + + + + +) + +export { IconLocalShipping } diff --git a/src/components/IconLocalTaxi.tsx b/src/components/IconLocalTaxi.tsx new file mode 100644 index 000000000..ee1a0fb6e --- /dev/null +++ b/src/components/IconLocalTaxi.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalTaxi: React.FC = (props) => ( + + + + +) + +export { IconLocalTaxi } diff --git a/src/components/IconLocationCity.tsx b/src/components/IconLocationCity.tsx new file mode 100644 index 000000000..08fc21b2e --- /dev/null +++ b/src/components/IconLocationCity.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocationCity: React.FC = (props) => ( + + + + +) + +export { IconLocationCity } diff --git a/src/components/IconLocationDisabled.tsx b/src/components/IconLocationDisabled.tsx new file mode 100644 index 000000000..2601e1cff --- /dev/null +++ b/src/components/IconLocationDisabled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocationDisabled: React.FC = (props) => ( + + + + +) + +export { IconLocationDisabled } diff --git a/src/components/IconLocationOff.tsx b/src/components/IconLocationOff.tsx new file mode 100644 index 000000000..6d1463e9e --- /dev/null +++ b/src/components/IconLocationOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocationOff: React.FC = (props) => ( + + + + +) + +export { IconLocationOff } diff --git a/src/components/IconLocationOn.tsx b/src/components/IconLocationOn.tsx new file mode 100644 index 000000000..04a1d9b57 --- /dev/null +++ b/src/components/IconLocationOn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocationOn: React.FC = (props) => ( + + + + +) + +export { IconLocationOn } diff --git a/src/components/IconLocationSearching.tsx b/src/components/IconLocationSearching.tsx new file mode 100644 index 000000000..f654484a4 --- /dev/null +++ b/src/components/IconLocationSearching.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocationSearching: React.FC = (props) => ( + + + + +) + +export { IconLocationSearching } diff --git a/src/components/IconLock.tsx b/src/components/IconLock.tsx new file mode 100644 index 000000000..d7302e41d --- /dev/null +++ b/src/components/IconLock.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLock: React.FC = (props) => ( + + + + +) + +export { IconLock } diff --git a/src/components/IconLockOpen.tsx b/src/components/IconLockOpen.tsx new file mode 100644 index 000000000..5fa2a9b0b --- /dev/null +++ b/src/components/IconLockOpen.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLockOpen: React.FC = (props) => ( + + + + +) + +export { IconLockOpen } diff --git a/src/components/IconLogin.tsx b/src/components/IconLogin.tsx new file mode 100644 index 000000000..867241453 --- /dev/null +++ b/src/components/IconLogin.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconLogin: React.FC = (props) => ( + + + + + + + + +) + +export { IconLogin } diff --git a/src/components/IconLooks.tsx b/src/components/IconLooks.tsx new file mode 100644 index 000000000..40082cc20 --- /dev/null +++ b/src/components/IconLooks.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLooks: React.FC = (props) => ( + + + + +) + +export { IconLooks } diff --git a/src/components/IconLooks3.tsx b/src/components/IconLooks3.tsx new file mode 100644 index 000000000..9aa75d3f4 --- /dev/null +++ b/src/components/IconLooks3.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLooks3: React.FC = (props) => ( + + + + +) + +export { IconLooks3 } diff --git a/src/components/IconLooks4.tsx b/src/components/IconLooks4.tsx new file mode 100644 index 000000000..f7b4b59e5 --- /dev/null +++ b/src/components/IconLooks4.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLooks4: React.FC = (props) => ( + + + + +) + +export { IconLooks4 } diff --git a/src/components/IconLooks5.tsx b/src/components/IconLooks5.tsx new file mode 100644 index 000000000..e6fff4d22 --- /dev/null +++ b/src/components/IconLooks5.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLooks5: React.FC = (props) => ( + + + + +) + +export { IconLooks5 } diff --git a/src/components/IconLooks6.tsx b/src/components/IconLooks6.tsx new file mode 100644 index 000000000..5d0b8dc62 --- /dev/null +++ b/src/components/IconLooks6.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLooks6: React.FC = (props) => ( + + + + +) + +export { IconLooks6 } diff --git a/src/components/IconLooksOne.tsx b/src/components/IconLooksOne.tsx new file mode 100644 index 000000000..0e41ce0e8 --- /dev/null +++ b/src/components/IconLooksOne.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLooksOne: React.FC = (props) => ( + + + + +) + +export { IconLooksOne } diff --git a/src/components/IconLooksTwo.tsx b/src/components/IconLooksTwo.tsx new file mode 100644 index 000000000..068c9c583 --- /dev/null +++ b/src/components/IconLooksTwo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLooksTwo: React.FC = (props) => ( + + + + +) + +export { IconLooksTwo } diff --git a/src/components/IconLoop.tsx b/src/components/IconLoop.tsx new file mode 100644 index 000000000..bb4407d9f --- /dev/null +++ b/src/components/IconLoop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLoop: React.FC = (props) => ( + + + + +) + +export { IconLoop } diff --git a/src/components/IconLoupe.tsx b/src/components/IconLoupe.tsx new file mode 100644 index 000000000..66083cda2 --- /dev/null +++ b/src/components/IconLoupe.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLoupe: React.FC = (props) => ( + + + + +) + +export { IconLoupe } diff --git a/src/components/IconLowPriority.tsx b/src/components/IconLowPriority.tsx new file mode 100644 index 000000000..7eb87315b --- /dev/null +++ b/src/components/IconLowPriority.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLowPriority: React.FC = (props) => ( + + + + +) + +export { IconLowPriority } diff --git a/src/components/IconLoyalty.tsx b/src/components/IconLoyalty.tsx new file mode 100644 index 000000000..29a411536 --- /dev/null +++ b/src/components/IconLoyalty.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLoyalty: React.FC = (props) => ( + + + + +) + +export { IconLoyalty } diff --git a/src/components/IconLuggage.tsx b/src/components/IconLuggage.tsx new file mode 100644 index 000000000..7009c7445 --- /dev/null +++ b/src/components/IconLuggage.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconLuggage: React.FC = (props) => ( + + + + + + +) + +export { IconLuggage } diff --git a/src/components/IconMail.tsx b/src/components/IconMail.tsx new file mode 100644 index 000000000..4044719e6 --- /dev/null +++ b/src/components/IconMail.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMail: React.FC = (props) => ( + + + + +) + +export { IconMail } diff --git a/src/components/IconMailOutline.tsx b/src/components/IconMailOutline.tsx new file mode 100644 index 000000000..32420f523 --- /dev/null +++ b/src/components/IconMailOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMailOutline: React.FC = (props) => ( + + + + +) + +export { IconMailOutline } diff --git a/src/components/IconMap.tsx b/src/components/IconMap.tsx new file mode 100644 index 000000000..3ebf3a899 --- /dev/null +++ b/src/components/IconMap.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMap: React.FC = (props) => ( + + + + +) + +export { IconMap } diff --git a/src/components/IconMapsUgc.tsx b/src/components/IconMapsUgc.tsx new file mode 100644 index 000000000..bba09a876 --- /dev/null +++ b/src/components/IconMapsUgc.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' +const IconMapsUgc: React.FC = (props) => ( + + + + +) + +export { IconMapsUgc } diff --git a/src/components/IconMarkChatRead.tsx b/src/components/IconMarkChatRead.tsx new file mode 100644 index 000000000..46c752df4 --- /dev/null +++ b/src/components/IconMarkChatRead.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconMarkChatRead: React.FC = (props) => ( + + + + + + +) + +export { IconMarkChatRead } diff --git a/src/components/IconMarkChatUnread.tsx b/src/components/IconMarkChatUnread.tsx new file mode 100644 index 000000000..0a960c1e3 --- /dev/null +++ b/src/components/IconMarkChatUnread.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconMarkChatUnread: React.FC = (props) => ( + + + + + + +) + +export { IconMarkChatUnread } diff --git a/src/components/IconMarkEmailRead.tsx b/src/components/IconMarkEmailRead.tsx new file mode 100644 index 000000000..2bc925722 --- /dev/null +++ b/src/components/IconMarkEmailRead.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconMarkEmailRead: React.FC = (props) => ( + + + + + + +) + +export { IconMarkEmailRead } diff --git a/src/components/IconMarkEmailUnread.tsx b/src/components/IconMarkEmailUnread.tsx new file mode 100644 index 000000000..622effc06 --- /dev/null +++ b/src/components/IconMarkEmailUnread.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconMarkEmailUnread: React.FC = (props) => ( + + + + + + +) + +export { IconMarkEmailUnread } diff --git a/src/components/IconMarkunread.tsx b/src/components/IconMarkunread.tsx new file mode 100644 index 000000000..b3bf454a1 --- /dev/null +++ b/src/components/IconMarkunread.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMarkunread: React.FC = (props) => ( + + + + +) + +export { IconMarkunread } diff --git a/src/components/IconMarkunreadMailbox.tsx b/src/components/IconMarkunreadMailbox.tsx new file mode 100644 index 000000000..26f7558a1 --- /dev/null +++ b/src/components/IconMarkunreadMailbox.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMarkunreadMailbox: React.FC = (props) => ( + + + + +) + +export { IconMarkunreadMailbox } diff --git a/src/components/IconMasks.tsx b/src/components/IconMasks.tsx new file mode 100644 index 000000000..cbcb7450b --- /dev/null +++ b/src/components/IconMasks.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconMasks: React.FC = (props) => ( + + + + +) + +export { IconMasks } diff --git a/src/components/IconMaximize.tsx b/src/components/IconMaximize.tsx new file mode 100644 index 000000000..34a2bbdb5 --- /dev/null +++ b/src/components/IconMaximize.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMaximize: React.FC = (props) => ( + + + + +) + +export { IconMaximize } diff --git a/src/components/IconMediation.tsx b/src/components/IconMediation.tsx new file mode 100644 index 000000000..54893a69c --- /dev/null +++ b/src/components/IconMediation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMediation: React.FC = (props) => ( + + + + +) + +export { IconMediation } diff --git a/src/components/IconMedicalServices.tsx b/src/components/IconMedicalServices.tsx new file mode 100644 index 000000000..7d66258a5 --- /dev/null +++ b/src/components/IconMedicalServices.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconMedicalServices: React.FC = (props) => ( + + + + + + + + + + +) + +export { IconMedicalServices } diff --git a/src/components/IconMeetingRoom.tsx b/src/components/IconMeetingRoom.tsx new file mode 100644 index 000000000..1c1f336ac --- /dev/null +++ b/src/components/IconMeetingRoom.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { IconProps } from './types' +const IconMeetingRoom: React.FC = (props) => ( + + + +) + +export { IconMeetingRoom } diff --git a/src/components/IconMemory.tsx b/src/components/IconMemory.tsx new file mode 100644 index 000000000..7bf738b08 --- /dev/null +++ b/src/components/IconMemory.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMemory: React.FC = (props) => ( + + + + +) + +export { IconMemory } diff --git a/src/components/IconMenu.tsx b/src/components/IconMenu.tsx new file mode 100644 index 000000000..7d9caba1a --- /dev/null +++ b/src/components/IconMenu.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMenu: React.FC = (props) => ( + + + + +) + +export { IconMenu } diff --git a/src/components/IconMenuBook.tsx b/src/components/IconMenuBook.tsx new file mode 100644 index 000000000..55de022f2 --- /dev/null +++ b/src/components/IconMenuBook.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' +const IconMenuBook: React.FC = (props) => ( + + + + + + + + + + + + + + + + +) + +export { IconMenuBook } diff --git a/src/components/IconMenuOpen.tsx b/src/components/IconMenuOpen.tsx new file mode 100644 index 000000000..36e9acb13 --- /dev/null +++ b/src/components/IconMenuOpen.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMenuOpen: React.FC = (props) => ( + + + + +) + +export { IconMenuOpen } diff --git a/src/components/IconMergeType.tsx b/src/components/IconMergeType.tsx new file mode 100644 index 000000000..851a311a0 --- /dev/null +++ b/src/components/IconMergeType.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMergeType: React.FC = (props) => ( + + + + +) + +export { IconMergeType } diff --git a/src/components/IconMessage.tsx b/src/components/IconMessage.tsx new file mode 100644 index 000000000..df6cd209c --- /dev/null +++ b/src/components/IconMessage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMessage: React.FC = (props) => ( + + + + +) + +export { IconMessage } diff --git a/src/components/IconMic.tsx b/src/components/IconMic.tsx new file mode 100644 index 000000000..46b1b3f23 --- /dev/null +++ b/src/components/IconMic.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMic: React.FC = (props) => ( + + + + +) + +export { IconMic } diff --git a/src/components/IconMicNone.tsx b/src/components/IconMicNone.tsx new file mode 100644 index 000000000..b7c5bf18a --- /dev/null +++ b/src/components/IconMicNone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMicNone: React.FC = (props) => ( + + + + +) + +export { IconMicNone } diff --git a/src/components/IconMicOff.tsx b/src/components/IconMicOff.tsx new file mode 100644 index 000000000..c6bb1cd70 --- /dev/null +++ b/src/components/IconMicOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMicOff: React.FC = (props) => ( + + + + +) + +export { IconMicOff } diff --git a/src/components/IconMicrowave.tsx b/src/components/IconMicrowave.tsx new file mode 100644 index 000000000..3bd8a25a7 --- /dev/null +++ b/src/components/IconMicrowave.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconMicrowave: React.FC = (props) => ( + + + + +) + +export { IconMicrowave } diff --git a/src/components/IconMilitaryTech.tsx b/src/components/IconMilitaryTech.tsx new file mode 100644 index 000000000..59fc8e685 --- /dev/null +++ b/src/components/IconMilitaryTech.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconMilitaryTech: React.FC = (props) => ( + + + + + + + + +) + +export { IconMilitaryTech } diff --git a/src/components/IconMinimize.tsx b/src/components/IconMinimize.tsx new file mode 100644 index 000000000..cb99b6069 --- /dev/null +++ b/src/components/IconMinimize.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMinimize: React.FC = (props) => ( + + + + +) + +export { IconMinimize } diff --git a/src/components/IconMiscellaneousServices.tsx b/src/components/IconMiscellaneousServices.tsx new file mode 100644 index 000000000..fbfb65d0e --- /dev/null +++ b/src/components/IconMiscellaneousServices.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconMiscellaneousServices: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconMiscellaneousServices } diff --git a/src/components/IconMissedVideoCall.tsx b/src/components/IconMissedVideoCall.tsx new file mode 100644 index 000000000..788fd286b --- /dev/null +++ b/src/components/IconMissedVideoCall.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMissedVideoCall: React.FC = (props) => ( + + + + +) + +export { IconMissedVideoCall } diff --git a/src/components/IconMms.tsx b/src/components/IconMms.tsx new file mode 100644 index 000000000..19fa60b7c --- /dev/null +++ b/src/components/IconMms.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMms: React.FC = (props) => ( + + + + +) + +export { IconMms } diff --git a/src/components/IconMobileFriendly.tsx b/src/components/IconMobileFriendly.tsx new file mode 100644 index 000000000..8d033909e --- /dev/null +++ b/src/components/IconMobileFriendly.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMobileFriendly: React.FC = (props) => ( + + + + +) + +export { IconMobileFriendly } diff --git a/src/components/IconMobileOff.tsx b/src/components/IconMobileOff.tsx new file mode 100644 index 000000000..61c1b5fce --- /dev/null +++ b/src/components/IconMobileOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMobileOff: React.FC = (props) => ( + + + + +) + +export { IconMobileOff } diff --git a/src/components/IconMobileScreenShare.tsx b/src/components/IconMobileScreenShare.tsx new file mode 100644 index 000000000..c3084d8e0 --- /dev/null +++ b/src/components/IconMobileScreenShare.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMobileScreenShare: React.FC = (props) => ( + + + + +) + +export { IconMobileScreenShare } diff --git a/src/components/IconModeComment.tsx b/src/components/IconModeComment.tsx new file mode 100644 index 000000000..ae5d70ea3 --- /dev/null +++ b/src/components/IconModeComment.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconModeComment: React.FC = (props) => ( + + + + +) + +export { IconModeComment } diff --git a/src/components/IconModelTraining.tsx b/src/components/IconModelTraining.tsx new file mode 100644 index 000000000..e0f5b0955 --- /dev/null +++ b/src/components/IconModelTraining.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconModelTraining: React.FC = (props) => ( + + + + + + +) + +export { IconModelTraining } diff --git a/src/components/IconMonetizationOn.tsx b/src/components/IconMonetizationOn.tsx new file mode 100644 index 000000000..e73df5c25 --- /dev/null +++ b/src/components/IconMonetizationOn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMonetizationOn: React.FC = (props) => ( + + + + +) + +export { IconMonetizationOn } diff --git a/src/components/IconMoney.tsx b/src/components/IconMoney.tsx new file mode 100644 index 000000000..fecf1e5b8 --- /dev/null +++ b/src/components/IconMoney.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconMoney: React.FC = (props) => ( + + + + + + +) + +export { IconMoney } diff --git a/src/components/IconMoneyOff.tsx b/src/components/IconMoneyOff.tsx new file mode 100644 index 000000000..8000bb416 --- /dev/null +++ b/src/components/IconMoneyOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMoneyOff: React.FC = (props) => ( + + + + +) + +export { IconMoneyOff } diff --git a/src/components/IconMonochromePhotos.tsx b/src/components/IconMonochromePhotos.tsx new file mode 100644 index 000000000..f1b43b82a --- /dev/null +++ b/src/components/IconMonochromePhotos.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconMonochromePhotos: React.FC = (props) => ( + + + + + +) + +export { IconMonochromePhotos } diff --git a/src/components/IconMood.tsx b/src/components/IconMood.tsx new file mode 100644 index 000000000..e49bfe002 --- /dev/null +++ b/src/components/IconMood.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMood: React.FC = (props) => ( + + + + +) + +export { IconMood } diff --git a/src/components/IconMoodBad.tsx b/src/components/IconMoodBad.tsx new file mode 100644 index 000000000..d3145c922 --- /dev/null +++ b/src/components/IconMoodBad.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMoodBad: React.FC = (props) => ( + + + + +) + +export { IconMoodBad } diff --git a/src/components/IconMoped.tsx b/src/components/IconMoped.tsx new file mode 100644 index 000000000..d7baaad37 --- /dev/null +++ b/src/components/IconMoped.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconMoped: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconMoped } diff --git a/src/components/IconMore.tsx b/src/components/IconMore.tsx new file mode 100644 index 000000000..06cc66aeb --- /dev/null +++ b/src/components/IconMore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMore: React.FC = (props) => ( + + + + +) + +export { IconMore } diff --git a/src/components/IconMoreHoriz.tsx b/src/components/IconMoreHoriz.tsx new file mode 100644 index 000000000..707b087bd --- /dev/null +++ b/src/components/IconMoreHoriz.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMoreHoriz: React.FC = (props) => ( + + + + +) + +export { IconMoreHoriz } diff --git a/src/components/IconMoreTime.tsx b/src/components/IconMoreTime.tsx new file mode 100644 index 000000000..768e6ec5c --- /dev/null +++ b/src/components/IconMoreTime.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconMoreTime: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconMoreTime } diff --git a/src/components/IconMoreVert.tsx b/src/components/IconMoreVert.tsx new file mode 100644 index 000000000..b6d9bc40f --- /dev/null +++ b/src/components/IconMoreVert.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMoreVert: React.FC = (props) => ( + + + + +) + +export { IconMoreVert } diff --git a/src/components/IconMotionPhotosOn.tsx b/src/components/IconMotionPhotosOn.tsx new file mode 100644 index 000000000..d64c07ae4 --- /dev/null +++ b/src/components/IconMotionPhotosOn.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconMotionPhotosOn: React.FC = (props) => ( + + + + + + +) + +export { IconMotionPhotosOn } diff --git a/src/components/IconMotionPhotosPause.tsx b/src/components/IconMotionPhotosPause.tsx new file mode 100644 index 000000000..bf08e37e8 --- /dev/null +++ b/src/components/IconMotionPhotosPause.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconMotionPhotosPause: React.FC = (props) => ( + + + + +) + +export { IconMotionPhotosPause } diff --git a/src/components/IconMotionPhotosPaused.tsx b/src/components/IconMotionPhotosPaused.tsx new file mode 100644 index 000000000..2ca37555f --- /dev/null +++ b/src/components/IconMotionPhotosPaused.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconMotionPhotosPaused: React.FC = (props) => ( + + + + + + +) + +export { IconMotionPhotosPaused } diff --git a/src/components/IconMouse.tsx b/src/components/IconMouse.tsx new file mode 100644 index 000000000..75df3034b --- /dev/null +++ b/src/components/IconMouse.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMouse: React.FC = (props) => ( + + + + +) + +export { IconMouse } diff --git a/src/components/IconMoveToInbox.tsx b/src/components/IconMoveToInbox.tsx new file mode 100644 index 000000000..edd387f30 --- /dev/null +++ b/src/components/IconMoveToInbox.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMoveToInbox: React.FC = (props) => ( + + + + +) + +export { IconMoveToInbox } diff --git a/src/components/IconMovie.tsx b/src/components/IconMovie.tsx new file mode 100644 index 000000000..c9e7408fd --- /dev/null +++ b/src/components/IconMovie.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMovie: React.FC = (props) => ( + + + + +) + +export { IconMovie } diff --git a/src/components/IconMovieCreation.tsx b/src/components/IconMovieCreation.tsx new file mode 100644 index 000000000..0c730835d --- /dev/null +++ b/src/components/IconMovieCreation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMovieCreation: React.FC = (props) => ( + + + + +) + +export { IconMovieCreation } diff --git a/src/components/IconMovieFilter.tsx b/src/components/IconMovieFilter.tsx new file mode 100644 index 000000000..39aa790e4 --- /dev/null +++ b/src/components/IconMovieFilter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMovieFilter: React.FC = (props) => ( + + + + +) + +export { IconMovieFilter } diff --git a/src/components/IconMultilineChart.tsx b/src/components/IconMultilineChart.tsx new file mode 100644 index 000000000..451fcb8a9 --- /dev/null +++ b/src/components/IconMultilineChart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMultilineChart: React.FC = (props) => ( + + + + +) + +export { IconMultilineChart } diff --git a/src/components/IconMultipleStop.tsx b/src/components/IconMultipleStop.tsx new file mode 100644 index 000000000..d533961b6 --- /dev/null +++ b/src/components/IconMultipleStop.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconMultipleStop: React.FC = (props) => ( + + + + + + +) + +export { IconMultipleStop } diff --git a/src/components/IconMuseum.tsx b/src/components/IconMuseum.tsx new file mode 100644 index 000000000..59642ae89 --- /dev/null +++ b/src/components/IconMuseum.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconMuseum: React.FC = (props) => ( + + + + + + + + +) + +export { IconMuseum } diff --git a/src/components/IconMusicNote.tsx b/src/components/IconMusicNote.tsx new file mode 100644 index 000000000..29bc1f3a0 --- /dev/null +++ b/src/components/IconMusicNote.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMusicNote: React.FC = (props) => ( + + + + +) + +export { IconMusicNote } diff --git a/src/components/IconMusicOff.tsx b/src/components/IconMusicOff.tsx new file mode 100644 index 000000000..16bbee244 --- /dev/null +++ b/src/components/IconMusicOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMusicOff: React.FC = (props) => ( + + + + +) + +export { IconMusicOff } diff --git a/src/components/IconMusicVideo.tsx b/src/components/IconMusicVideo.tsx new file mode 100644 index 000000000..bdf78d4a2 --- /dev/null +++ b/src/components/IconMusicVideo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMusicVideo: React.FC = (props) => ( + + + + +) + +export { IconMusicVideo } diff --git a/src/components/IconMyLocation.tsx b/src/components/IconMyLocation.tsx new file mode 100644 index 000000000..812ca5225 --- /dev/null +++ b/src/components/IconMyLocation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMyLocation: React.FC = (props) => ( + + + + +) + +export { IconMyLocation } diff --git a/src/components/IconNat.tsx b/src/components/IconNat.tsx new file mode 100644 index 000000000..109fed837 --- /dev/null +++ b/src/components/IconNat.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconNat: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconNat } diff --git a/src/components/IconNature.tsx b/src/components/IconNature.tsx new file mode 100644 index 000000000..7d263b3b7 --- /dev/null +++ b/src/components/IconNature.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNature: React.FC = (props) => ( + + + + +) + +export { IconNature } diff --git a/src/components/IconNaturePeople.tsx b/src/components/IconNaturePeople.tsx new file mode 100644 index 000000000..bb2da7390 --- /dev/null +++ b/src/components/IconNaturePeople.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNaturePeople: React.FC = (props) => ( + + + + +) + +export { IconNaturePeople } diff --git a/src/components/IconNavigateBefore.tsx b/src/components/IconNavigateBefore.tsx new file mode 100644 index 000000000..da6d9e716 --- /dev/null +++ b/src/components/IconNavigateBefore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNavigateBefore: React.FC = (props) => ( + + + + +) + +export { IconNavigateBefore } diff --git a/src/components/IconNavigateNext.tsx b/src/components/IconNavigateNext.tsx new file mode 100644 index 000000000..c2b5ef9c6 --- /dev/null +++ b/src/components/IconNavigateNext.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNavigateNext: React.FC = (props) => ( + + + + +) + +export { IconNavigateNext } diff --git a/src/components/IconNavigation.tsx b/src/components/IconNavigation.tsx new file mode 100644 index 000000000..ce2e45da1 --- /dev/null +++ b/src/components/IconNavigation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNavigation: React.FC = (props) => ( + + + + +) + +export { IconNavigation } diff --git a/src/components/IconNearMe.tsx b/src/components/IconNearMe.tsx new file mode 100644 index 000000000..b895c9eac --- /dev/null +++ b/src/components/IconNearMe.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNearMe: React.FC = (props) => ( + + + + +) + +export { IconNearMe } diff --git a/src/components/IconNearMeDisabled.tsx b/src/components/IconNearMeDisabled.tsx new file mode 100644 index 000000000..17d31354c --- /dev/null +++ b/src/components/IconNearMeDisabled.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNearMeDisabled: React.FC = (props) => ( + + + + +) + +export { IconNearMeDisabled } diff --git a/src/components/IconNetworkCheck.tsx b/src/components/IconNetworkCheck.tsx new file mode 100644 index 000000000..cfc5d7a3c --- /dev/null +++ b/src/components/IconNetworkCheck.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNetworkCheck: React.FC = (props) => ( + + + + +) + +export { IconNetworkCheck } diff --git a/src/components/IconNetworkLocked.tsx b/src/components/IconNetworkLocked.tsx new file mode 100644 index 000000000..c50c38a4b --- /dev/null +++ b/src/components/IconNetworkLocked.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNetworkLocked: React.FC = (props) => ( + + + + +) + +export { IconNetworkLocked } diff --git a/src/components/IconNewReleases.tsx b/src/components/IconNewReleases.tsx new file mode 100644 index 000000000..bfb62157b --- /dev/null +++ b/src/components/IconNewReleases.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNewReleases: React.FC = (props) => ( + + + + +) + +export { IconNewReleases } diff --git a/src/components/IconNextPlan.tsx b/src/components/IconNextPlan.tsx new file mode 100644 index 000000000..68a41e9c9 --- /dev/null +++ b/src/components/IconNextPlan.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconNextPlan: React.FC = (props) => ( + + + + + + + + +) + +export { IconNextPlan } diff --git a/src/components/IconNextWeek.tsx b/src/components/IconNextWeek.tsx new file mode 100644 index 000000000..86141f428 --- /dev/null +++ b/src/components/IconNextWeek.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconNextWeek: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconNextWeek } diff --git a/src/components/IconNfc.tsx b/src/components/IconNfc.tsx new file mode 100644 index 000000000..412e9dcbb --- /dev/null +++ b/src/components/IconNfc.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconNfc: React.FC = (props) => ( + + + + + +) + +export { IconNfc } diff --git a/src/components/IconNightShelter.tsx b/src/components/IconNightShelter.tsx new file mode 100644 index 000000000..88956f920 --- /dev/null +++ b/src/components/IconNightShelter.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNightShelter: React.FC = (props) => ( + + + + +) + +export { IconNightShelter } diff --git a/src/components/IconNightsStay.tsx b/src/components/IconNightsStay.tsx new file mode 100644 index 000000000..18197daa1 --- /dev/null +++ b/src/components/IconNightsStay.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconNightsStay: React.FC = (props) => ( + + + + + + + + + + + + + +) + +export { IconNightsStay } diff --git a/src/components/IconNoBackpack.tsx b/src/components/IconNoBackpack.tsx new file mode 100644 index 000000000..deef2ee46 --- /dev/null +++ b/src/components/IconNoBackpack.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoBackpack: React.FC = (props) => ( + + + + +) + +export { IconNoBackpack } diff --git a/src/components/IconNoCell.tsx b/src/components/IconNoCell.tsx new file mode 100644 index 000000000..11c3b39a8 --- /dev/null +++ b/src/components/IconNoCell.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoCell: React.FC = (props) => ( + + + + + + +) + +export { IconNoCell } diff --git a/src/components/IconNoDrinks.tsx b/src/components/IconNoDrinks.tsx new file mode 100644 index 000000000..f4bd91955 --- /dev/null +++ b/src/components/IconNoDrinks.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoDrinks: React.FC = (props) => ( + + + + + + +) + +export { IconNoDrinks } diff --git a/src/components/IconNoEncryption.tsx b/src/components/IconNoEncryption.tsx new file mode 100644 index 000000000..035d83ddd --- /dev/null +++ b/src/components/IconNoEncryption.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoEncryption: React.FC = (props) => ( + + + + +) + +export { IconNoEncryption } diff --git a/src/components/IconNoFlash.tsx b/src/components/IconNoFlash.tsx new file mode 100644 index 000000000..9f74fec6c --- /dev/null +++ b/src/components/IconNoFlash.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoFlash: React.FC = (props) => ( + + + + + + +) + +export { IconNoFlash } diff --git a/src/components/IconNoFood.tsx b/src/components/IconNoFood.tsx new file mode 100644 index 000000000..d72b85693 --- /dev/null +++ b/src/components/IconNoFood.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoFood: React.FC = (props) => ( + + + + + + +) + +export { IconNoFood } diff --git a/src/components/IconNoLuggage.tsx b/src/components/IconNoLuggage.tsx new file mode 100644 index 000000000..74c4b0e90 --- /dev/null +++ b/src/components/IconNoLuggage.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoLuggage: React.FC = (props) => ( + + + + +) + +export { IconNoLuggage } diff --git a/src/components/IconNoMeals.tsx b/src/components/IconNoMeals.tsx new file mode 100644 index 000000000..1663269fe --- /dev/null +++ b/src/components/IconNoMeals.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoMeals: React.FC = (props) => ( + + + + +) + +export { IconNoMeals } diff --git a/src/components/IconNoMeetingRoom.tsx b/src/components/IconNoMeetingRoom.tsx new file mode 100644 index 000000000..301b9d21e --- /dev/null +++ b/src/components/IconNoMeetingRoom.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoMeetingRoom: React.FC = (props) => ( + + + +) + +export { IconNoMeetingRoom } diff --git a/src/components/IconNoPhotography.tsx b/src/components/IconNoPhotography.tsx new file mode 100644 index 000000000..60f0725ec --- /dev/null +++ b/src/components/IconNoPhotography.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoPhotography: React.FC = (props) => ( + + + + + + +) + +export { IconNoPhotography } diff --git a/src/components/IconNoSim.tsx b/src/components/IconNoSim.tsx new file mode 100644 index 000000000..cc8146294 --- /dev/null +++ b/src/components/IconNoSim.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoSim: React.FC = (props) => ( + + + + +) + +export { IconNoSim } diff --git a/src/components/IconNoStroller.tsx b/src/components/IconNoStroller.tsx new file mode 100644 index 000000000..c1a45d147 --- /dev/null +++ b/src/components/IconNoStroller.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoStroller: React.FC = (props) => ( + + + + + + +) + +export { IconNoStroller } diff --git a/src/components/IconNoTransfer.tsx b/src/components/IconNoTransfer.tsx new file mode 100644 index 000000000..3ea36eb24 --- /dev/null +++ b/src/components/IconNoTransfer.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoTransfer: React.FC = (props) => ( + + + + +) + +export { IconNoTransfer } diff --git a/src/components/IconNorth.tsx b/src/components/IconNorth.tsx new file mode 100644 index 000000000..e619a6452 --- /dev/null +++ b/src/components/IconNorth.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNorth: React.FC = (props) => ( + + + + +) + +export { IconNorth } diff --git a/src/components/IconNorthEast.tsx b/src/components/IconNorthEast.tsx new file mode 100644 index 000000000..eabcd4d27 --- /dev/null +++ b/src/components/IconNorthEast.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNorthEast: React.FC = (props) => ( + + + + +) + +export { IconNorthEast } diff --git a/src/components/IconNorthWest.tsx b/src/components/IconNorthWest.tsx new file mode 100644 index 000000000..dec1c0309 --- /dev/null +++ b/src/components/IconNorthWest.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNorthWest: React.FC = (props) => ( + + + + +) + +export { IconNorthWest } diff --git a/src/components/IconNotAccessible.tsx b/src/components/IconNotAccessible.tsx new file mode 100644 index 000000000..3eea7975b --- /dev/null +++ b/src/components/IconNotAccessible.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotAccessible: React.FC = (props) => ( + + + + + + +) + +export { IconNotAccessible } diff --git a/src/components/IconNotInterested.tsx b/src/components/IconNotInterested.tsx new file mode 100644 index 000000000..8b63141cc --- /dev/null +++ b/src/components/IconNotInterested.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotInterested: React.FC = (props) => ( + + + + +) + +export { IconNotInterested } diff --git a/src/components/IconNotListedLocation.tsx b/src/components/IconNotListedLocation.tsx new file mode 100644 index 000000000..df4067e1f --- /dev/null +++ b/src/components/IconNotListedLocation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotListedLocation: React.FC = (props) => ( + + + + +) + +export { IconNotListedLocation } diff --git a/src/components/IconNotStarted.tsx b/src/components/IconNotStarted.tsx new file mode 100644 index 000000000..67f9bcc64 --- /dev/null +++ b/src/components/IconNotStarted.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotStarted: React.FC = (props) => ( + + + + + + +) + +export { IconNotStarted } diff --git a/src/components/IconNote.tsx b/src/components/IconNote.tsx new file mode 100644 index 000000000..7ce7a384d --- /dev/null +++ b/src/components/IconNote.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNote: React.FC = (props) => ( + + + + +) + +export { IconNote } diff --git a/src/components/IconNoteAdd.tsx b/src/components/IconNoteAdd.tsx new file mode 100644 index 000000000..773735850 --- /dev/null +++ b/src/components/IconNoteAdd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoteAdd: React.FC = (props) => ( + + + + +) + +export { IconNoteAdd } diff --git a/src/components/IconNotes.tsx b/src/components/IconNotes.tsx new file mode 100644 index 000000000..09d14baf1 --- /dev/null +++ b/src/components/IconNotes.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotes: React.FC = (props) => ( + + + + +) + +export { IconNotes } diff --git a/src/components/IconNotificationImportant.tsx b/src/components/IconNotificationImportant.tsx new file mode 100644 index 000000000..969ad77da --- /dev/null +++ b/src/components/IconNotificationImportant.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotificationImportant: React.FC = (props) => ( + + + + +) + +export { IconNotificationImportant } diff --git a/src/components/IconNotifications.tsx b/src/components/IconNotifications.tsx new file mode 100644 index 000000000..6720fe981 --- /dev/null +++ b/src/components/IconNotifications.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotifications: React.FC = (props) => ( + + + +) + +export { IconNotifications } diff --git a/src/components/IconNotificationsActive.tsx b/src/components/IconNotificationsActive.tsx new file mode 100644 index 000000000..95fd9ae62 --- /dev/null +++ b/src/components/IconNotificationsActive.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotificationsActive: React.FC = (props) => ( + + + + +) + +export { IconNotificationsActive } diff --git a/src/components/IconNotificationsNone.tsx b/src/components/IconNotificationsNone.tsx new file mode 100644 index 000000000..8da099cb2 --- /dev/null +++ b/src/components/IconNotificationsNone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotificationsNone: React.FC = (props) => ( + + + + +) + +export { IconNotificationsNone } diff --git a/src/components/IconNotificationsOff.tsx b/src/components/IconNotificationsOff.tsx new file mode 100644 index 000000000..0f2e9c6cc --- /dev/null +++ b/src/components/IconNotificationsOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotificationsOff: React.FC = (props) => ( + + + + +) + +export { IconNotificationsOff } diff --git a/src/components/IconNotificationsPaused.tsx b/src/components/IconNotificationsPaused.tsx new file mode 100644 index 000000000..67e20c23c --- /dev/null +++ b/src/components/IconNotificationsPaused.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotificationsPaused: React.FC = (props) => ( + + + + +) + +export { IconNotificationsPaused } diff --git a/src/components/IconOfflineBolt.tsx b/src/components/IconOfflineBolt.tsx new file mode 100644 index 000000000..d3a583925 --- /dev/null +++ b/src/components/IconOfflineBolt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconOfflineBolt: React.FC = (props) => ( + + + + +) + +export { IconOfflineBolt } diff --git a/src/components/IconOfflinePin.tsx b/src/components/IconOfflinePin.tsx new file mode 100644 index 000000000..f46361df6 --- /dev/null +++ b/src/components/IconOfflinePin.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconOfflinePin: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconOfflinePin } diff --git a/src/components/IconOndemandVideo.tsx b/src/components/IconOndemandVideo.tsx new file mode 100644 index 000000000..c82591bdf --- /dev/null +++ b/src/components/IconOndemandVideo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconOndemandVideo: React.FC = (props) => ( + + + + +) + +export { IconOndemandVideo } diff --git a/src/components/IconOnlinePrediction.tsx b/src/components/IconOnlinePrediction.tsx new file mode 100644 index 000000000..44c31c513 --- /dev/null +++ b/src/components/IconOnlinePrediction.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconOnlinePrediction: React.FC = (props) => ( + + + + + + +) + +export { IconOnlinePrediction } diff --git a/src/components/IconOpacity.tsx b/src/components/IconOpacity.tsx new file mode 100644 index 000000000..4efc52c33 --- /dev/null +++ b/src/components/IconOpacity.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconOpacity: React.FC = (props) => ( + + + + +) + +export { IconOpacity } diff --git a/src/components/IconOpenInBrowser.tsx b/src/components/IconOpenInBrowser.tsx new file mode 100644 index 000000000..637978453 --- /dev/null +++ b/src/components/IconOpenInBrowser.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconOpenInBrowser: React.FC = (props) => ( + + + + +) + +export { IconOpenInBrowser } diff --git a/src/components/IconOpenInFull.tsx b/src/components/IconOpenInFull.tsx new file mode 100644 index 000000000..c4df93b08 --- /dev/null +++ b/src/components/IconOpenInFull.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconOpenInFull: React.FC = (props) => ( + + + + +) + +export { IconOpenInFull } diff --git a/src/components/IconOpenInNew.tsx b/src/components/IconOpenInNew.tsx new file mode 100644 index 000000000..50f5aebd8 --- /dev/null +++ b/src/components/IconOpenInNew.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconOpenInNew: React.FC = (props) => ( + + + + +) + +export { IconOpenInNew } diff --git a/src/components/IconOpenWith.tsx b/src/components/IconOpenWith.tsx new file mode 100644 index 000000000..ad18954a3 --- /dev/null +++ b/src/components/IconOpenWith.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconOpenWith: React.FC = (props) => ( + + + + +) + +export { IconOpenWith } diff --git a/src/components/IconOutbond.tsx b/src/components/IconOutbond.tsx new file mode 100644 index 000000000..92790ab85 --- /dev/null +++ b/src/components/IconOutbond.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconOutbond: React.FC = (props) => ( + + + + +) + +export { IconOutbond } diff --git a/src/components/IconOutdoorGrill.tsx b/src/components/IconOutdoorGrill.tsx new file mode 100644 index 000000000..3ea950c4a --- /dev/null +++ b/src/components/IconOutdoorGrill.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconOutdoorGrill: React.FC = (props) => ( + + + + + + + + + + + + + +) + +export { IconOutdoorGrill } diff --git a/src/components/IconOutlet.tsx b/src/components/IconOutlet.tsx new file mode 100644 index 000000000..1cdadd71d --- /dev/null +++ b/src/components/IconOutlet.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconOutlet: React.FC = (props) => ( + + + + +) + +export { IconOutlet } diff --git a/src/components/IconOutlinedFlag.tsx b/src/components/IconOutlinedFlag.tsx new file mode 100644 index 000000000..8b536ed19 --- /dev/null +++ b/src/components/IconOutlinedFlag.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconOutlinedFlag: React.FC = (props) => ( + + + + +) + +export { IconOutlinedFlag } diff --git a/src/components/IconPages.tsx b/src/components/IconPages.tsx new file mode 100644 index 000000000..151718721 --- /dev/null +++ b/src/components/IconPages.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPages: React.FC = (props) => ( + + + + +) + +export { IconPages } diff --git a/src/components/IconPageview.tsx b/src/components/IconPageview.tsx new file mode 100644 index 000000000..0f2e07461 --- /dev/null +++ b/src/components/IconPageview.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPageview: React.FC = (props) => ( + + + + +) + +export { IconPageview } diff --git a/src/components/IconPalette.tsx b/src/components/IconPalette.tsx new file mode 100644 index 000000000..c9e894259 --- /dev/null +++ b/src/components/IconPalette.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPalette: React.FC = (props) => ( + + + + +) + +export { IconPalette } diff --git a/src/components/IconPanTool.tsx b/src/components/IconPanTool.tsx new file mode 100644 index 000000000..36de9c99f --- /dev/null +++ b/src/components/IconPanTool.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconPanTool: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconPanTool } diff --git a/src/components/IconPanorama.tsx b/src/components/IconPanorama.tsx new file mode 100644 index 000000000..58ef8ea8f --- /dev/null +++ b/src/components/IconPanorama.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPanorama: React.FC = (props) => ( + + + + +) + +export { IconPanorama } diff --git a/src/components/IconPanoramaFishEye.tsx b/src/components/IconPanoramaFishEye.tsx new file mode 100644 index 000000000..fc5e9219d --- /dev/null +++ b/src/components/IconPanoramaFishEye.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPanoramaFishEye: React.FC = (props) => ( + + + + +) + +export { IconPanoramaFishEye } diff --git a/src/components/IconPanoramaHorizontal.tsx b/src/components/IconPanoramaHorizontal.tsx new file mode 100644 index 000000000..696993163 --- /dev/null +++ b/src/components/IconPanoramaHorizontal.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPanoramaHorizontal: React.FC = (props) => ( + + + + +) + +export { IconPanoramaHorizontal } diff --git a/src/components/IconPanoramaVertical.tsx b/src/components/IconPanoramaVertical.tsx new file mode 100644 index 000000000..0e64edd61 --- /dev/null +++ b/src/components/IconPanoramaVertical.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPanoramaVertical: React.FC = (props) => ( + + + + +) + +export { IconPanoramaVertical } diff --git a/src/components/IconPanoramaWideAngle.tsx b/src/components/IconPanoramaWideAngle.tsx new file mode 100644 index 000000000..2dff10619 --- /dev/null +++ b/src/components/IconPanoramaWideAngle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPanoramaWideAngle: React.FC = (props) => ( + + + + +) + +export { IconPanoramaWideAngle } diff --git a/src/components/IconPartyMode.tsx b/src/components/IconPartyMode.tsx new file mode 100644 index 000000000..34af91ed4 --- /dev/null +++ b/src/components/IconPartyMode.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPartyMode: React.FC = (props) => ( + + + + +) + +export { IconPartyMode } diff --git a/src/components/IconPause.tsx b/src/components/IconPause.tsx new file mode 100644 index 000000000..7b698c3a9 --- /dev/null +++ b/src/components/IconPause.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPause: React.FC = (props) => ( + + + + +) + +export { IconPause } diff --git a/src/components/IconPauseCircleFilled.tsx b/src/components/IconPauseCircleFilled.tsx new file mode 100644 index 000000000..f85a23239 --- /dev/null +++ b/src/components/IconPauseCircleFilled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPauseCircleFilled: React.FC = (props) => ( + + + + +) + +export { IconPauseCircleFilled } diff --git a/src/components/IconPauseCircleOutline.tsx b/src/components/IconPauseCircleOutline.tsx new file mode 100644 index 000000000..b97a0e53f --- /dev/null +++ b/src/components/IconPauseCircleOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPauseCircleOutline: React.FC = (props) => ( + + + + +) + +export { IconPauseCircleOutline } diff --git a/src/components/IconPausePresentation.tsx b/src/components/IconPausePresentation.tsx new file mode 100644 index 000000000..0f285d734 --- /dev/null +++ b/src/components/IconPausePresentation.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconPausePresentation: React.FC = (props) => ( + + + + + + +) + +export { IconPausePresentation } diff --git a/src/components/IconPayment.tsx b/src/components/IconPayment.tsx new file mode 100644 index 000000000..1b3330843 --- /dev/null +++ b/src/components/IconPayment.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPayment: React.FC = (props) => ( + + + + +) + +export { IconPayment } diff --git a/src/components/IconPayments.tsx b/src/components/IconPayments.tsx new file mode 100644 index 000000000..243d71435 --- /dev/null +++ b/src/components/IconPayments.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPayments: React.FC = (props) => ( + + + + +) + +export { IconPayments } diff --git a/src/components/IconPedalBike.tsx b/src/components/IconPedalBike.tsx new file mode 100644 index 000000000..07ca3153c --- /dev/null +++ b/src/components/IconPedalBike.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconPedalBike: React.FC = (props) => ( + + + + + + + + +) + +export { IconPedalBike } diff --git a/src/components/IconPending.tsx b/src/components/IconPending.tsx new file mode 100644 index 000000000..cea277836 --- /dev/null +++ b/src/components/IconPending.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconPending: React.FC = (props) => ( + + + + + + + + +) + +export { IconPending } diff --git a/src/components/IconPendingActions.tsx b/src/components/IconPendingActions.tsx new file mode 100644 index 000000000..13136bd49 --- /dev/null +++ b/src/components/IconPendingActions.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconPendingActions: React.FC = (props) => ( + + + + + + +) + +export { IconPendingActions } diff --git a/src/components/IconPeople.tsx b/src/components/IconPeople.tsx new file mode 100644 index 000000000..fa0a84c2a --- /dev/null +++ b/src/components/IconPeople.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPeople: React.FC = (props) => ( + + + + +) + +export { IconPeople } diff --git a/src/components/IconPeopleAlt.tsx b/src/components/IconPeopleAlt.tsx new file mode 100644 index 000000000..87da69fea --- /dev/null +++ b/src/components/IconPeopleAlt.tsx @@ -0,0 +1,42 @@ +import React from 'react' +import { IconProps } from './types' +const IconPeopleAlt: React.FC = (props) => ( + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconPeopleAlt } diff --git a/src/components/IconPeopleOutline.tsx b/src/components/IconPeopleOutline.tsx new file mode 100644 index 000000000..16e4c603d --- /dev/null +++ b/src/components/IconPeopleOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPeopleOutline: React.FC = (props) => ( + + + + +) + +export { IconPeopleOutline } diff --git a/src/components/IconPermCameraMic.tsx b/src/components/IconPermCameraMic.tsx new file mode 100644 index 000000000..34b2c0b72 --- /dev/null +++ b/src/components/IconPermCameraMic.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPermCameraMic: React.FC = (props) => ( + + + + +) + +export { IconPermCameraMic } diff --git a/src/components/IconPermContactCalendar.tsx b/src/components/IconPermContactCalendar.tsx new file mode 100644 index 000000000..ce217a6aa --- /dev/null +++ b/src/components/IconPermContactCalendar.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPermContactCalendar: React.FC = (props) => ( + + + + +) + +export { IconPermContactCalendar } diff --git a/src/components/IconPermDataSetting.tsx b/src/components/IconPermDataSetting.tsx new file mode 100644 index 000000000..87d342b1f --- /dev/null +++ b/src/components/IconPermDataSetting.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPermDataSetting: React.FC = (props) => ( + + + + +) + +export { IconPermDataSetting } diff --git a/src/components/IconPermDeviceInformation.tsx b/src/components/IconPermDeviceInformation.tsx new file mode 100644 index 000000000..5bdacbc7c --- /dev/null +++ b/src/components/IconPermDeviceInformation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPermDeviceInformation: React.FC = (props) => ( + + + + +) + +export { IconPermDeviceInformation } diff --git a/src/components/IconPermIdentity.tsx b/src/components/IconPermIdentity.tsx new file mode 100644 index 000000000..d88ac399b --- /dev/null +++ b/src/components/IconPermIdentity.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPermIdentity: React.FC = (props) => ( + + + + +) + +export { IconPermIdentity } diff --git a/src/components/IconPermMedia.tsx b/src/components/IconPermMedia.tsx new file mode 100644 index 000000000..87bde2679 --- /dev/null +++ b/src/components/IconPermMedia.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPermMedia: React.FC = (props) => ( + + + + +) + +export { IconPermMedia } diff --git a/src/components/IconPermPhoneMsg.tsx b/src/components/IconPermPhoneMsg.tsx new file mode 100644 index 000000000..3eff804e9 --- /dev/null +++ b/src/components/IconPermPhoneMsg.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPermPhoneMsg: React.FC = (props) => ( + + + + +) + +export { IconPermPhoneMsg } diff --git a/src/components/IconPermScanWifi.tsx b/src/components/IconPermScanWifi.tsx new file mode 100644 index 000000000..b2c1653ae --- /dev/null +++ b/src/components/IconPermScanWifi.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPermScanWifi: React.FC = (props) => ( + + + + +) + +export { IconPermScanWifi } diff --git a/src/components/IconPerson.tsx b/src/components/IconPerson.tsx new file mode 100644 index 000000000..33734cfe2 --- /dev/null +++ b/src/components/IconPerson.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPerson: React.FC = (props) => ( + + + + +) + +export { IconPerson } diff --git a/src/components/IconPersonAdd.tsx b/src/components/IconPersonAdd.tsx new file mode 100644 index 000000000..833ae51ca --- /dev/null +++ b/src/components/IconPersonAdd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonAdd: React.FC = (props) => ( + + + + +) + +export { IconPersonAdd } diff --git a/src/components/IconPersonAddAlt1.tsx b/src/components/IconPersonAddAlt1.tsx new file mode 100644 index 000000000..f5ab182d3 --- /dev/null +++ b/src/components/IconPersonAddAlt1.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonAddAlt1: React.FC = (props) => ( + + + + + + + + +) + +export { IconPersonAddAlt1 } diff --git a/src/components/IconPersonAddDisabled.tsx b/src/components/IconPersonAddDisabled.tsx new file mode 100644 index 000000000..5a67668c8 --- /dev/null +++ b/src/components/IconPersonAddDisabled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonAddDisabled: React.FC = (props) => ( + + + + + +) + +export { IconPersonAddDisabled } diff --git a/src/components/IconPersonOutline.tsx b/src/components/IconPersonOutline.tsx new file mode 100644 index 000000000..bb0ecd8a9 --- /dev/null +++ b/src/components/IconPersonOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonOutline: React.FC = (props) => ( + + + + +) + +export { IconPersonOutline } diff --git a/src/components/IconPersonPin.tsx b/src/components/IconPersonPin.tsx new file mode 100644 index 000000000..ddf114cd6 --- /dev/null +++ b/src/components/IconPersonPin.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonPin: React.FC = (props) => ( + + + + +) + +export { IconPersonPin } diff --git a/src/components/IconPersonPinCircle.tsx b/src/components/IconPersonPinCircle.tsx new file mode 100644 index 000000000..65562c4bd --- /dev/null +++ b/src/components/IconPersonPinCircle.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonPinCircle: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconPersonPinCircle } diff --git a/src/components/IconPersonRemove.tsx b/src/components/IconPersonRemove.tsx new file mode 100644 index 000000000..8af77efd9 --- /dev/null +++ b/src/components/IconPersonRemove.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonRemove: React.FC = (props) => ( + + + + + + + + +) + +export { IconPersonRemove } diff --git a/src/components/IconPersonRemoveAlt1.tsx b/src/components/IconPersonRemoveAlt1.tsx new file mode 100644 index 000000000..772937fe9 --- /dev/null +++ b/src/components/IconPersonRemoveAlt1.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonRemoveAlt1: React.FC = (props) => ( + + + + + + + + +) + +export { IconPersonRemoveAlt1 } diff --git a/src/components/IconPersonSearch.tsx b/src/components/IconPersonSearch.tsx new file mode 100644 index 000000000..a66400257 --- /dev/null +++ b/src/components/IconPersonSearch.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonSearch: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconPersonSearch } diff --git a/src/components/IconPersonalVideo.tsx b/src/components/IconPersonalVideo.tsx new file mode 100644 index 000000000..d4091beb7 --- /dev/null +++ b/src/components/IconPersonalVideo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonalVideo: React.FC = (props) => ( + + + + +) + +export { IconPersonalVideo } diff --git a/src/components/IconPestControl.tsx b/src/components/IconPestControl.tsx new file mode 100644 index 000000000..cb60dc505 --- /dev/null +++ b/src/components/IconPestControl.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconPestControl: React.FC = (props) => ( + + + + + + + + + + +) + +export { IconPestControl } diff --git a/src/components/IconPestControlRodent.tsx b/src/components/IconPestControlRodent.tsx new file mode 100644 index 000000000..9120a9974 --- /dev/null +++ b/src/components/IconPestControlRodent.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconPestControlRodent: React.FC = (props) => ( + + + + + + + + +) + +export { IconPestControlRodent } diff --git a/src/components/IconPets.tsx b/src/components/IconPets.tsx new file mode 100644 index 000000000..8f7da4970 --- /dev/null +++ b/src/components/IconPets.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' +const IconPets: React.FC = (props) => ( + + + + + + + + +) + +export { IconPets } diff --git a/src/components/IconPhone.tsx b/src/components/IconPhone.tsx new file mode 100644 index 000000000..75122c2e4 --- /dev/null +++ b/src/components/IconPhone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhone: React.FC = (props) => ( + + + + +) + +export { IconPhone } diff --git a/src/components/IconPhoneAndroid.tsx b/src/components/IconPhoneAndroid.tsx new file mode 100644 index 000000000..6a35aba10 --- /dev/null +++ b/src/components/IconPhoneAndroid.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneAndroid: React.FC = (props) => ( + + + + +) + +export { IconPhoneAndroid } diff --git a/src/components/IconPhoneBluetoothSpeaker.tsx b/src/components/IconPhoneBluetoothSpeaker.tsx new file mode 100644 index 000000000..1829136df --- /dev/null +++ b/src/components/IconPhoneBluetoothSpeaker.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneBluetoothSpeaker: React.FC = (props) => ( + + + + +) + +export { IconPhoneBluetoothSpeaker } diff --git a/src/components/IconPhoneCallback.tsx b/src/components/IconPhoneCallback.tsx new file mode 100644 index 000000000..a2ed3a8cb --- /dev/null +++ b/src/components/IconPhoneCallback.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneCallback: React.FC = (props) => ( + + + + +) + +export { IconPhoneCallback } diff --git a/src/components/IconPhoneDisabled.tsx b/src/components/IconPhoneDisabled.tsx new file mode 100644 index 000000000..8455c1009 --- /dev/null +++ b/src/components/IconPhoneDisabled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneDisabled: React.FC = (props) => ( + + + + +) + +export { IconPhoneDisabled } diff --git a/src/components/IconPhoneEnabled.tsx b/src/components/IconPhoneEnabled.tsx new file mode 100644 index 000000000..adea13f05 --- /dev/null +++ b/src/components/IconPhoneEnabled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneEnabled: React.FC = (props) => ( + + + + +) + +export { IconPhoneEnabled } diff --git a/src/components/IconPhoneForwarded.tsx b/src/components/IconPhoneForwarded.tsx new file mode 100644 index 000000000..4e1a96c46 --- /dev/null +++ b/src/components/IconPhoneForwarded.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneForwarded: React.FC = (props) => ( + + + + +) + +export { IconPhoneForwarded } diff --git a/src/components/IconPhoneInTalk.tsx b/src/components/IconPhoneInTalk.tsx new file mode 100644 index 000000000..19bcfd514 --- /dev/null +++ b/src/components/IconPhoneInTalk.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneInTalk: React.FC = (props) => ( + + + + +) + +export { IconPhoneInTalk } diff --git a/src/components/IconPhoneIphone.tsx b/src/components/IconPhoneIphone.tsx new file mode 100644 index 000000000..e57de1d54 --- /dev/null +++ b/src/components/IconPhoneIphone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneIphone: React.FC = (props) => ( + + + + +) + +export { IconPhoneIphone } diff --git a/src/components/IconPhoneLocked.tsx b/src/components/IconPhoneLocked.tsx new file mode 100644 index 000000000..b62ca731e --- /dev/null +++ b/src/components/IconPhoneLocked.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneLocked: React.FC = (props) => ( + + + + +) + +export { IconPhoneLocked } diff --git a/src/components/IconPhoneMissed.tsx b/src/components/IconPhoneMissed.tsx new file mode 100644 index 000000000..eb71b1658 --- /dev/null +++ b/src/components/IconPhoneMissed.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneMissed: React.FC = (props) => ( + + + + +) + +export { IconPhoneMissed } diff --git a/src/components/IconPhonePaused.tsx b/src/components/IconPhonePaused.tsx new file mode 100644 index 000000000..a1b94242b --- /dev/null +++ b/src/components/IconPhonePaused.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhonePaused: React.FC = (props) => ( + + + + +) + +export { IconPhonePaused } diff --git a/src/components/IconPhonelink.tsx b/src/components/IconPhonelink.tsx new file mode 100644 index 000000000..173fe7206 --- /dev/null +++ b/src/components/IconPhonelink.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhonelink: React.FC = (props) => ( + + + + +) + +export { IconPhonelink } diff --git a/src/components/IconPhonelinkErase.tsx b/src/components/IconPhonelinkErase.tsx new file mode 100644 index 000000000..344457fa5 --- /dev/null +++ b/src/components/IconPhonelinkErase.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhonelinkErase: React.FC = (props) => ( + + + + +) + +export { IconPhonelinkErase } diff --git a/src/components/IconPhonelinkLock.tsx b/src/components/IconPhonelinkLock.tsx new file mode 100644 index 000000000..1b0850fa5 --- /dev/null +++ b/src/components/IconPhonelinkLock.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhonelinkLock: React.FC = (props) => ( + + + + +) + +export { IconPhonelinkLock } diff --git a/src/components/IconPhonelinkOff.tsx b/src/components/IconPhonelinkOff.tsx new file mode 100644 index 000000000..4d80f2831 --- /dev/null +++ b/src/components/IconPhonelinkOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhonelinkOff: React.FC = (props) => ( + + + + +) + +export { IconPhonelinkOff } diff --git a/src/components/IconPhonelinkRing.tsx b/src/components/IconPhonelinkRing.tsx new file mode 100644 index 000000000..841da56b4 --- /dev/null +++ b/src/components/IconPhonelinkRing.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhonelinkRing: React.FC = (props) => ( + + + + +) + +export { IconPhonelinkRing } diff --git a/src/components/IconPhonelinkSetup.tsx b/src/components/IconPhonelinkSetup.tsx new file mode 100644 index 000000000..d25b962ab --- /dev/null +++ b/src/components/IconPhonelinkSetup.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhonelinkSetup: React.FC = (props) => ( + + + + +) + +export { IconPhonelinkSetup } diff --git a/src/components/IconPhoto.tsx b/src/components/IconPhoto.tsx new file mode 100644 index 000000000..a6fc13e97 --- /dev/null +++ b/src/components/IconPhoto.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoto: React.FC = (props) => ( + + + + +) + +export { IconPhoto } diff --git a/src/components/IconPhotoAlbum.tsx b/src/components/IconPhotoAlbum.tsx new file mode 100644 index 000000000..02a6c7c02 --- /dev/null +++ b/src/components/IconPhotoAlbum.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhotoAlbum: React.FC = (props) => ( + + + + +) + +export { IconPhotoAlbum } diff --git a/src/components/IconPhotoCamera.tsx b/src/components/IconPhotoCamera.tsx new file mode 100644 index 000000000..edeaef049 --- /dev/null +++ b/src/components/IconPhotoCamera.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhotoCamera: React.FC = (props) => ( + + + + + +) + +export { IconPhotoCamera } diff --git a/src/components/IconPhotoFilter.tsx b/src/components/IconPhotoFilter.tsx new file mode 100644 index 000000000..f708082ce --- /dev/null +++ b/src/components/IconPhotoFilter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhotoFilter: React.FC = (props) => ( + + + + +) + +export { IconPhotoFilter } diff --git a/src/components/IconPhotoLibrary.tsx b/src/components/IconPhotoLibrary.tsx new file mode 100644 index 000000000..8d6271371 --- /dev/null +++ b/src/components/IconPhotoLibrary.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhotoLibrary: React.FC = (props) => ( + + + + +) + +export { IconPhotoLibrary } diff --git a/src/components/IconPhotoSizeSelectActual.tsx b/src/components/IconPhotoSizeSelectActual.tsx new file mode 100644 index 000000000..0ecd2c192 --- /dev/null +++ b/src/components/IconPhotoSizeSelectActual.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhotoSizeSelectActual: React.FC = (props) => ( + + + + +) + +export { IconPhotoSizeSelectActual } diff --git a/src/components/IconPhotoSizeSelectLarge.tsx b/src/components/IconPhotoSizeSelectLarge.tsx new file mode 100644 index 000000000..6ae4824e2 --- /dev/null +++ b/src/components/IconPhotoSizeSelectLarge.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhotoSizeSelectLarge: React.FC = (props) => ( + + + + +) + +export { IconPhotoSizeSelectLarge } diff --git a/src/components/IconPhotoSizeSelectSmall.tsx b/src/components/IconPhotoSizeSelectSmall.tsx new file mode 100644 index 000000000..b7d527c28 --- /dev/null +++ b/src/components/IconPhotoSizeSelectSmall.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhotoSizeSelectSmall: React.FC = (props) => ( + + + + +) + +export { IconPhotoSizeSelectSmall } diff --git a/src/components/IconPictureAsPdf.tsx b/src/components/IconPictureAsPdf.tsx new file mode 100644 index 000000000..509fc4965 --- /dev/null +++ b/src/components/IconPictureAsPdf.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPictureAsPdf: React.FC = (props) => ( + + + + +) + +export { IconPictureAsPdf } diff --git a/src/components/IconPictureInPicture.tsx b/src/components/IconPictureInPicture.tsx new file mode 100644 index 000000000..0660216ba --- /dev/null +++ b/src/components/IconPictureInPicture.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPictureInPicture: React.FC = (props) => ( + + + + +) + +export { IconPictureInPicture } diff --git a/src/components/IconPictureInPictureAlt.tsx b/src/components/IconPictureInPictureAlt.tsx new file mode 100644 index 000000000..db5531665 --- /dev/null +++ b/src/components/IconPictureInPictureAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPictureInPictureAlt: React.FC = (props) => ( + + + + +) + +export { IconPictureInPictureAlt } diff --git a/src/components/IconPieChart.tsx b/src/components/IconPieChart.tsx new file mode 100644 index 000000000..2f1dd347d --- /dev/null +++ b/src/components/IconPieChart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPieChart: React.FC = (props) => ( + + + + +) + +export { IconPieChart } diff --git a/src/components/IconPinDrop.tsx b/src/components/IconPinDrop.tsx new file mode 100644 index 000000000..eac3cc7a4 --- /dev/null +++ b/src/components/IconPinDrop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPinDrop: React.FC = (props) => ( + + + + +) + +export { IconPinDrop } diff --git a/src/components/IconPlace.tsx b/src/components/IconPlace.tsx new file mode 100644 index 000000000..c46660258 --- /dev/null +++ b/src/components/IconPlace.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlace: React.FC = (props) => ( + + + + +) + +export { IconPlace } diff --git a/src/components/IconPlagiarism.tsx b/src/components/IconPlagiarism.tsx new file mode 100644 index 000000000..c68501ccf --- /dev/null +++ b/src/components/IconPlagiarism.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlagiarism: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconPlagiarism } diff --git a/src/components/IconPlayArrow.tsx b/src/components/IconPlayArrow.tsx new file mode 100644 index 000000000..c393ac994 --- /dev/null +++ b/src/components/IconPlayArrow.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlayArrow: React.FC = (props) => ( + + + + +) + +export { IconPlayArrow } diff --git a/src/components/IconPlayCircleFilled.tsx b/src/components/IconPlayCircleFilled.tsx new file mode 100644 index 000000000..95455ad5a --- /dev/null +++ b/src/components/IconPlayCircleFilled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlayCircleFilled: React.FC = (props) => ( + + + + +) + +export { IconPlayCircleFilled } diff --git a/src/components/IconPlayCircleOutline.tsx b/src/components/IconPlayCircleOutline.tsx new file mode 100644 index 000000000..478ab3954 --- /dev/null +++ b/src/components/IconPlayCircleOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlayCircleOutline: React.FC = (props) => ( + + + + +) + +export { IconPlayCircleOutline } diff --git a/src/components/IconPlayForWork.tsx b/src/components/IconPlayForWork.tsx new file mode 100644 index 000000000..c07f34572 --- /dev/null +++ b/src/components/IconPlayForWork.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlayForWork: React.FC = (props) => ( + + + + +) + +export { IconPlayForWork } diff --git a/src/components/IconPlaylistAdd.tsx b/src/components/IconPlaylistAdd.tsx new file mode 100644 index 000000000..6d17492ca --- /dev/null +++ b/src/components/IconPlaylistAdd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlaylistAdd: React.FC = (props) => ( + + + + +) + +export { IconPlaylistAdd } diff --git a/src/components/IconPlaylistAddCheck.tsx b/src/components/IconPlaylistAddCheck.tsx new file mode 100644 index 000000000..457a22272 --- /dev/null +++ b/src/components/IconPlaylistAddCheck.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlaylistAddCheck: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconPlaylistAddCheck } diff --git a/src/components/IconPlaylistPlay.tsx b/src/components/IconPlaylistPlay.tsx new file mode 100644 index 000000000..ec962781f --- /dev/null +++ b/src/components/IconPlaylistPlay.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlaylistPlay: React.FC = (props) => ( + + + + +) + +export { IconPlaylistPlay } diff --git a/src/components/IconPlumbing.tsx b/src/components/IconPlumbing.tsx new file mode 100644 index 000000000..499e81002 --- /dev/null +++ b/src/components/IconPlumbing.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlumbing: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconPlumbing } diff --git a/src/components/IconPlusOne.tsx b/src/components/IconPlusOne.tsx new file mode 100644 index 000000000..34387e679 --- /dev/null +++ b/src/components/IconPlusOne.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlusOne: React.FC = (props) => ( + + + + +) + +export { IconPlusOne } diff --git a/src/components/IconPointOfSale.tsx b/src/components/IconPointOfSale.tsx new file mode 100644 index 000000000..be47a8d1b --- /dev/null +++ b/src/components/IconPointOfSale.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconPointOfSale: React.FC = (props) => ( + + + + + + +) + +export { IconPointOfSale } diff --git a/src/components/IconPolicy.tsx b/src/components/IconPolicy.tsx new file mode 100644 index 000000000..2f967e484 --- /dev/null +++ b/src/components/IconPolicy.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconPolicy: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconPolicy } diff --git a/src/components/IconPoll.tsx b/src/components/IconPoll.tsx new file mode 100644 index 000000000..f565f22d5 --- /dev/null +++ b/src/components/IconPoll.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPoll: React.FC = (props) => ( + + + + +) + +export { IconPoll } diff --git a/src/components/IconPolymer.tsx b/src/components/IconPolymer.tsx new file mode 100644 index 000000000..aab47b69c --- /dev/null +++ b/src/components/IconPolymer.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPolymer: React.FC = (props) => ( + + + + +) + +export { IconPolymer } diff --git a/src/components/IconPool.tsx b/src/components/IconPool.tsx new file mode 100644 index 000000000..b9b3822f5 --- /dev/null +++ b/src/components/IconPool.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconPool: React.FC = (props) => ( + + + + + +) + +export { IconPool } diff --git a/src/components/IconPortableWifiOff.tsx b/src/components/IconPortableWifiOff.tsx new file mode 100644 index 000000000..337bd8b35 --- /dev/null +++ b/src/components/IconPortableWifiOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPortableWifiOff: React.FC = (props) => ( + + + + +) + +export { IconPortableWifiOff } diff --git a/src/components/IconPortrait.tsx b/src/components/IconPortrait.tsx new file mode 100644 index 000000000..ed9808da0 --- /dev/null +++ b/src/components/IconPortrait.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPortrait: React.FC = (props) => ( + + + + +) + +export { IconPortrait } diff --git a/src/components/IconPostAdd.tsx b/src/components/IconPostAdd.tsx new file mode 100644 index 000000000..4fe270bcb --- /dev/null +++ b/src/components/IconPostAdd.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconPostAdd: React.FC = (props) => ( + + + + + + + + + + + + + + + +) + +export { IconPostAdd } diff --git a/src/components/IconPower.tsx b/src/components/IconPower.tsx new file mode 100644 index 000000000..c639021d2 --- /dev/null +++ b/src/components/IconPower.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPower: React.FC = (props) => ( + + + + +) + +export { IconPower } diff --git a/src/components/IconPowerInput.tsx b/src/components/IconPowerInput.tsx new file mode 100644 index 000000000..b7d71c4cf --- /dev/null +++ b/src/components/IconPowerInput.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPowerInput: React.FC = (props) => ( + + + + +) + +export { IconPowerInput } diff --git a/src/components/IconPowerOff.tsx b/src/components/IconPowerOff.tsx new file mode 100644 index 000000000..9fa05a348 --- /dev/null +++ b/src/components/IconPowerOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPowerOff: React.FC = (props) => ( + + + + +) + +export { IconPowerOff } diff --git a/src/components/IconPowerSettingsNew.tsx b/src/components/IconPowerSettingsNew.tsx new file mode 100644 index 000000000..184f04fb8 --- /dev/null +++ b/src/components/IconPowerSettingsNew.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPowerSettingsNew: React.FC = (props) => ( + + + + +) + +export { IconPowerSettingsNew } diff --git a/src/components/IconPregnantWoman.tsx b/src/components/IconPregnantWoman.tsx new file mode 100644 index 000000000..dbc2cd4f0 --- /dev/null +++ b/src/components/IconPregnantWoman.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconPregnantWoman: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconPregnantWoman } diff --git a/src/components/IconPresentToAll.tsx b/src/components/IconPresentToAll.tsx new file mode 100644 index 000000000..3796c96a8 --- /dev/null +++ b/src/components/IconPresentToAll.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPresentToAll: React.FC = (props) => ( + + + + +) + +export { IconPresentToAll } diff --git a/src/components/IconPreview.tsx b/src/components/IconPreview.tsx new file mode 100644 index 000000000..39825b8a1 --- /dev/null +++ b/src/components/IconPreview.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconPreview: React.FC = (props) => ( + + + + + + +) + +export { IconPreview } diff --git a/src/components/IconPrint.tsx b/src/components/IconPrint.tsx new file mode 100644 index 000000000..ec8860e45 --- /dev/null +++ b/src/components/IconPrint.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPrint: React.FC = (props) => ( + + + + +) + +export { IconPrint } diff --git a/src/components/IconPrintDisabled.tsx b/src/components/IconPrintDisabled.tsx new file mode 100644 index 000000000..6248dd00f --- /dev/null +++ b/src/components/IconPrintDisabled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPrintDisabled: React.FC = (props) => ( + + + + +) + +export { IconPrintDisabled } diff --git a/src/components/IconPriorityHigh.tsx b/src/components/IconPriorityHigh.tsx new file mode 100644 index 000000000..f08947090 --- /dev/null +++ b/src/components/IconPriorityHigh.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconPriorityHigh: React.FC = (props) => ( + + + + + +) + +export { IconPriorityHigh } diff --git a/src/components/IconPrivacyTip.tsx b/src/components/IconPrivacyTip.tsx new file mode 100644 index 000000000..89c2e9fc1 --- /dev/null +++ b/src/components/IconPrivacyTip.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconPrivacyTip: React.FC = (props) => ( + + + + + + +) + +export { IconPrivacyTip } diff --git a/src/components/IconPsychology.tsx b/src/components/IconPsychology.tsx new file mode 100644 index 000000000..5c754c94b --- /dev/null +++ b/src/components/IconPsychology.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconPsychology: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconPsychology } diff --git a/src/components/IconPublic.tsx b/src/components/IconPublic.tsx new file mode 100644 index 000000000..80689cd85 --- /dev/null +++ b/src/components/IconPublic.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPublic: React.FC = (props) => ( + + + + +) + +export { IconPublic } diff --git a/src/components/IconPublicOff.tsx b/src/components/IconPublicOff.tsx new file mode 100644 index 000000000..220d5a18a --- /dev/null +++ b/src/components/IconPublicOff.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconPublicOff: React.FC = (props) => ( + + + + + + +) + +export { IconPublicOff } diff --git a/src/components/IconPublish.tsx b/src/components/IconPublish.tsx new file mode 100644 index 000000000..997318743 --- /dev/null +++ b/src/components/IconPublish.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPublish: React.FC = (props) => ( + + + + +) + +export { IconPublish } diff --git a/src/components/IconPublishedWithChanges.tsx b/src/components/IconPublishedWithChanges.tsx new file mode 100644 index 000000000..f58b8ff5f --- /dev/null +++ b/src/components/IconPublishedWithChanges.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconPublishedWithChanges: React.FC = (props) => ( + + + + +) + +export { IconPublishedWithChanges } diff --git a/src/components/IconPushPin.tsx b/src/components/IconPushPin.tsx new file mode 100644 index 000000000..5e635989f --- /dev/null +++ b/src/components/IconPushPin.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconPushPin: React.FC = (props) => ( + + + + + + + + +) + +export { IconPushPin } diff --git a/src/components/IconQrCode.tsx b/src/components/IconQrCode.tsx new file mode 100644 index 000000000..cab92d4ff --- /dev/null +++ b/src/components/IconQrCode.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' +const IconQrCode: React.FC = (props) => ( + + + + + + + + + + + + + + + + + + + + +) + +export { IconQrCode } diff --git a/src/components/IconQrCode2.tsx b/src/components/IconQrCode2.tsx new file mode 100644 index 000000000..d0d72bafc --- /dev/null +++ b/src/components/IconQrCode2.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconQrCode2: React.FC = (props) => ( + + + + + + +) + +export { IconQrCode2 } diff --git a/src/components/IconQrCodeScanner.tsx b/src/components/IconQrCodeScanner.tsx new file mode 100644 index 000000000..8a83e2bb4 --- /dev/null +++ b/src/components/IconQrCodeScanner.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconQrCodeScanner: React.FC = (props) => ( + + + + +) + +export { IconQrCodeScanner } diff --git a/src/components/IconQueryBuilder.tsx b/src/components/IconQueryBuilder.tsx new file mode 100644 index 000000000..15e62580e --- /dev/null +++ b/src/components/IconQueryBuilder.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconQueryBuilder: React.FC = (props) => ( + + + + + +) + +export { IconQueryBuilder } diff --git a/src/components/IconQuestionAnswer.tsx b/src/components/IconQuestionAnswer.tsx new file mode 100644 index 000000000..b34822eb4 --- /dev/null +++ b/src/components/IconQuestionAnswer.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconQuestionAnswer: React.FC = (props) => ( + + + + +) + +export { IconQuestionAnswer } diff --git a/src/components/IconQueue.tsx b/src/components/IconQueue.tsx new file mode 100644 index 000000000..2d3bb48f5 --- /dev/null +++ b/src/components/IconQueue.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconQueue: React.FC = (props) => ( + + + + +) + +export { IconQueue } diff --git a/src/components/IconQueueMusic.tsx b/src/components/IconQueueMusic.tsx new file mode 100644 index 000000000..e30d59b4a --- /dev/null +++ b/src/components/IconQueueMusic.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconQueueMusic: React.FC = (props) => ( + + + + +) + +export { IconQueueMusic } diff --git a/src/components/IconQueuePlayNext.tsx b/src/components/IconQueuePlayNext.tsx new file mode 100644 index 000000000..1b02959ae --- /dev/null +++ b/src/components/IconQueuePlayNext.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconQueuePlayNext: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconQueuePlayNext } diff --git a/src/components/IconQuickreply.tsx b/src/components/IconQuickreply.tsx new file mode 100644 index 000000000..dd86aae4f --- /dev/null +++ b/src/components/IconQuickreply.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconQuickreply: React.FC = (props) => ( + + + + + + + + + + + + + + + +) + +export { IconQuickreply } diff --git a/src/components/IconRadio.tsx b/src/components/IconRadio.tsx new file mode 100644 index 000000000..7fe93e297 --- /dev/null +++ b/src/components/IconRadio.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRadio: React.FC = (props) => ( + + + + +) + +export { IconRadio } diff --git a/src/components/IconRadioButtonChecked.tsx b/src/components/IconRadioButtonChecked.tsx new file mode 100644 index 000000000..9cf19f61d --- /dev/null +++ b/src/components/IconRadioButtonChecked.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRadioButtonChecked: React.FC = (props) => ( + + + + +) + +export { IconRadioButtonChecked } diff --git a/src/components/IconRadioButtonUnchecked.tsx b/src/components/IconRadioButtonUnchecked.tsx new file mode 100644 index 000000000..72513df21 --- /dev/null +++ b/src/components/IconRadioButtonUnchecked.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRadioButtonUnchecked: React.FC = (props) => ( + + + + +) + +export { IconRadioButtonUnchecked } diff --git a/src/components/IconRateReview.tsx b/src/components/IconRateReview.tsx new file mode 100644 index 000000000..d034a93c2 --- /dev/null +++ b/src/components/IconRateReview.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconRateReview: React.FC = (props) => ( + + + + +) + +export { IconRateReview } diff --git a/src/components/IconReadMore.tsx b/src/components/IconReadMore.tsx new file mode 100644 index 000000000..86a287c34 --- /dev/null +++ b/src/components/IconReadMore.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconReadMore: React.FC = (props) => ( + + + + + + + + + + + + + +) + +export { IconReadMore } diff --git a/src/components/IconReceipt.tsx b/src/components/IconReceipt.tsx new file mode 100644 index 000000000..f82db8a94 --- /dev/null +++ b/src/components/IconReceipt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconReceipt: React.FC = (props) => ( + + + + +) + +export { IconReceipt } diff --git a/src/components/IconReceiptLong.tsx b/src/components/IconReceiptLong.tsx new file mode 100644 index 000000000..97adf4c1b --- /dev/null +++ b/src/components/IconReceiptLong.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconReceiptLong: React.FC = (props) => ( + + + + + + + + + + +) + +export { IconReceiptLong } diff --git a/src/components/IconRecentActors.tsx b/src/components/IconRecentActors.tsx new file mode 100644 index 000000000..8f813b38d --- /dev/null +++ b/src/components/IconRecentActors.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRecentActors: React.FC = (props) => ( + + + + +) + +export { IconRecentActors } diff --git a/src/components/IconRecordVoiceOver.tsx b/src/components/IconRecordVoiceOver.tsx new file mode 100644 index 000000000..7f80b4885 --- /dev/null +++ b/src/components/IconRecordVoiceOver.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconRecordVoiceOver: React.FC = (props) => ( + + + + + +) + +export { IconRecordVoiceOver } diff --git a/src/components/IconRedeem.tsx b/src/components/IconRedeem.tsx new file mode 100644 index 000000000..85d686b70 --- /dev/null +++ b/src/components/IconRedeem.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRedeem: React.FC = (props) => ( + + + + +) + +export { IconRedeem } diff --git a/src/components/IconRedo.tsx b/src/components/IconRedo.tsx new file mode 100644 index 000000000..c5903c7ce --- /dev/null +++ b/src/components/IconRedo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRedo: React.FC = (props) => ( + + + + +) + +export { IconRedo } diff --git a/src/components/IconReduceCapacity.tsx b/src/components/IconReduceCapacity.tsx new file mode 100644 index 000000000..cd731ec7f --- /dev/null +++ b/src/components/IconReduceCapacity.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconReduceCapacity: React.FC = (props) => ( + + + + +) + +export { IconReduceCapacity } diff --git a/src/components/IconRefresh.tsx b/src/components/IconRefresh.tsx new file mode 100644 index 000000000..357d77a3b --- /dev/null +++ b/src/components/IconRefresh.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRefresh: React.FC = (props) => ( + + + + +) + +export { IconRefresh } diff --git a/src/components/IconRemove.tsx b/src/components/IconRemove.tsx new file mode 100644 index 000000000..344c49acf --- /dev/null +++ b/src/components/IconRemove.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRemove: React.FC = (props) => ( + + + + +) + +export { IconRemove } diff --git a/src/components/IconRemoveCircle.tsx b/src/components/IconRemoveCircle.tsx new file mode 100644 index 000000000..8dc930f26 --- /dev/null +++ b/src/components/IconRemoveCircle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRemoveCircle: React.FC = (props) => ( + + + + +) + +export { IconRemoveCircle } diff --git a/src/components/IconRemoveCircleOutline.tsx b/src/components/IconRemoveCircleOutline.tsx new file mode 100644 index 000000000..c7f15e4e4 --- /dev/null +++ b/src/components/IconRemoveCircleOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRemoveCircleOutline: React.FC = (props) => ( + + + + +) + +export { IconRemoveCircleOutline } diff --git a/src/components/IconRemoveFromQueue.tsx b/src/components/IconRemoveFromQueue.tsx new file mode 100644 index 000000000..6be88964e --- /dev/null +++ b/src/components/IconRemoveFromQueue.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconRemoveFromQueue: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconRemoveFromQueue } diff --git a/src/components/IconRemoveRedEye.tsx b/src/components/IconRemoveRedEye.tsx new file mode 100644 index 000000000..ce5db81c1 --- /dev/null +++ b/src/components/IconRemoveRedEye.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRemoveRedEye: React.FC = (props) => ( + + + + +) + +export { IconRemoveRedEye } diff --git a/src/components/IconRemoveShoppingCart.tsx b/src/components/IconRemoveShoppingCart.tsx new file mode 100644 index 000000000..9ba39fec4 --- /dev/null +++ b/src/components/IconRemoveShoppingCart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRemoveShoppingCart: React.FC = (props) => ( + + + + +) + +export { IconRemoveShoppingCart } diff --git a/src/components/IconReorder.tsx b/src/components/IconReorder.tsx new file mode 100644 index 000000000..a8482b573 --- /dev/null +++ b/src/components/IconReorder.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconReorder: React.FC = (props) => ( + + + + +) + +export { IconReorder } diff --git a/src/components/IconRepeat.tsx b/src/components/IconRepeat.tsx new file mode 100644 index 000000000..8fbf80d68 --- /dev/null +++ b/src/components/IconRepeat.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRepeat: React.FC = (props) => ( + + + + +) + +export { IconRepeat } diff --git a/src/components/IconRepeatOne.tsx b/src/components/IconRepeatOne.tsx new file mode 100644 index 000000000..3fb113938 --- /dev/null +++ b/src/components/IconRepeatOne.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRepeatOne: React.FC = (props) => ( + + + + +) + +export { IconRepeatOne } diff --git a/src/components/IconReplay.tsx b/src/components/IconReplay.tsx new file mode 100644 index 000000000..e8e9519d0 --- /dev/null +++ b/src/components/IconReplay.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconReplay: React.FC = (props) => ( + + + + +) + +export { IconReplay } diff --git a/src/components/IconReplay10.tsx b/src/components/IconReplay10.tsx new file mode 100644 index 000000000..1d69024c9 --- /dev/null +++ b/src/components/IconReplay10.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' +const IconReplay10: React.FC = (props) => ( + + + + + + + + + + + + + + +) + +export { IconReplay10 } diff --git a/src/components/IconReplay30.tsx b/src/components/IconReplay30.tsx new file mode 100644 index 000000000..92e99d6f8 --- /dev/null +++ b/src/components/IconReplay30.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' +const IconReplay30: React.FC = (props) => ( + + + + + + + + + + + + + + +) + +export { IconReplay30 } diff --git a/src/components/IconReplay5.tsx b/src/components/IconReplay5.tsx new file mode 100644 index 000000000..ea799bb18 --- /dev/null +++ b/src/components/IconReplay5.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconReplay5: React.FC = (props) => ( + + + + + + + + + + + + + +) + +export { IconReplay5 } diff --git a/src/components/IconReply.tsx b/src/components/IconReply.tsx new file mode 100644 index 000000000..3be7a9c49 --- /dev/null +++ b/src/components/IconReply.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconReply: React.FC = (props) => ( + + + + +) + +export { IconReply } diff --git a/src/components/IconReplyAll.tsx b/src/components/IconReplyAll.tsx new file mode 100644 index 000000000..822765cb9 --- /dev/null +++ b/src/components/IconReplyAll.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconReplyAll: React.FC = (props) => ( + + + + +) + +export { IconReplyAll } diff --git a/src/components/IconReport.tsx b/src/components/IconReport.tsx new file mode 100644 index 000000000..0582619fc --- /dev/null +++ b/src/components/IconReport.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconReport: React.FC = (props) => ( + + + + +) + +export { IconReport } diff --git a/src/components/IconReportOff.tsx b/src/components/IconReportOff.tsx new file mode 100644 index 000000000..036ba589c --- /dev/null +++ b/src/components/IconReportOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconReportOff: React.FC = (props) => ( + + + + +) + +export { IconReportOff } diff --git a/src/components/IconReportProblem.tsx b/src/components/IconReportProblem.tsx new file mode 100644 index 000000000..1b4000465 --- /dev/null +++ b/src/components/IconReportProblem.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconReportProblem: React.FC = (props) => ( + + + + +) + +export { IconReportProblem } diff --git a/src/components/IconRequestPage.tsx b/src/components/IconRequestPage.tsx new file mode 100644 index 000000000..9a2fbac03 --- /dev/null +++ b/src/components/IconRequestPage.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconRequestPage: React.FC = (props) => ( + + + + +) + +export { IconRequestPage } diff --git a/src/components/IconRequestQuote.tsx b/src/components/IconRequestQuote.tsx new file mode 100644 index 000000000..fdeb6e552 --- /dev/null +++ b/src/components/IconRequestQuote.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconRequestQuote: React.FC = (props) => ( + + + + + + +) + +export { IconRequestQuote } diff --git a/src/components/IconRestaurant.tsx b/src/components/IconRestaurant.tsx new file mode 100644 index 000000000..4dff9f3c2 --- /dev/null +++ b/src/components/IconRestaurant.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRestaurant: React.FC = (props) => ( + + + + +) + +export { IconRestaurant } diff --git a/src/components/IconRestaurantMenu.tsx b/src/components/IconRestaurantMenu.tsx new file mode 100644 index 000000000..785a1e0fe --- /dev/null +++ b/src/components/IconRestaurantMenu.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRestaurantMenu: React.FC = (props) => ( + + + + +) + +export { IconRestaurantMenu } diff --git a/src/components/IconRestore.tsx b/src/components/IconRestore.tsx new file mode 100644 index 000000000..223bcbcd8 --- /dev/null +++ b/src/components/IconRestore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRestore: React.FC = (props) => ( + + + + +) + +export { IconRestore } diff --git a/src/components/IconRestoreFromTrash.tsx b/src/components/IconRestoreFromTrash.tsx new file mode 100644 index 000000000..5207ba312 --- /dev/null +++ b/src/components/IconRestoreFromTrash.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRestoreFromTrash: React.FC = (props) => ( + + + + +) + +export { IconRestoreFromTrash } diff --git a/src/components/IconRestorePage.tsx b/src/components/IconRestorePage.tsx new file mode 100644 index 000000000..7ecee1618 --- /dev/null +++ b/src/components/IconRestorePage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRestorePage: React.FC = (props) => ( + + + + +) + +export { IconRestorePage } diff --git a/src/components/IconRiceBowl.tsx b/src/components/IconRiceBowl.tsx new file mode 100644 index 000000000..da2d55084 --- /dev/null +++ b/src/components/IconRiceBowl.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconRiceBowl: React.FC = (props) => ( + + + + +) + +export { IconRiceBowl } diff --git a/src/components/IconRingVolume.tsx b/src/components/IconRingVolume.tsx new file mode 100644 index 000000000..c018bbe9e --- /dev/null +++ b/src/components/IconRingVolume.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRingVolume: React.FC = (props) => ( + + + + +) + +export { IconRingVolume } diff --git a/src/components/IconRoofing.tsx b/src/components/IconRoofing.tsx new file mode 100644 index 000000000..4f772bd87 --- /dev/null +++ b/src/components/IconRoofing.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconRoofing: React.FC = (props) => ( + + + + +) + +export { IconRoofing } diff --git a/src/components/IconRoom.tsx b/src/components/IconRoom.tsx new file mode 100644 index 000000000..76ef7521c --- /dev/null +++ b/src/components/IconRoom.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRoom: React.FC = (props) => ( + + + + +) + +export { IconRoom } diff --git a/src/components/IconRoomPreferences.tsx b/src/components/IconRoomPreferences.tsx new file mode 100644 index 000000000..9bb1bef50 --- /dev/null +++ b/src/components/IconRoomPreferences.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconRoomPreferences: React.FC = (props) => ( + + + + + + +) + +export { IconRoomPreferences } diff --git a/src/components/IconRoomService.tsx b/src/components/IconRoomService.tsx new file mode 100644 index 000000000..3cb4f84f1 --- /dev/null +++ b/src/components/IconRoomService.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRoomService: React.FC = (props) => ( + + + + +) + +export { IconRoomService } diff --git a/src/components/IconRotate90DegreesCcw.tsx b/src/components/IconRotate90DegreesCcw.tsx new file mode 100644 index 000000000..a6a90b4a7 --- /dev/null +++ b/src/components/IconRotate90DegreesCcw.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRotate90DegreesCcw: React.FC = (props) => ( + + + + +) + +export { IconRotate90DegreesCcw } diff --git a/src/components/IconRotateLeft.tsx b/src/components/IconRotateLeft.tsx new file mode 100644 index 000000000..dc9781a84 --- /dev/null +++ b/src/components/IconRotateLeft.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRotateLeft: React.FC = (props) => ( + + + + +) + +export { IconRotateLeft } diff --git a/src/components/IconRotateRight.tsx b/src/components/IconRotateRight.tsx new file mode 100644 index 000000000..de83ec457 --- /dev/null +++ b/src/components/IconRotateRight.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRotateRight: React.FC = (props) => ( + + + + +) + +export { IconRotateRight } diff --git a/src/components/IconRoundedCorner.tsx b/src/components/IconRoundedCorner.tsx new file mode 100644 index 000000000..6ee14394b --- /dev/null +++ b/src/components/IconRoundedCorner.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconRoundedCorner: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconRoundedCorner } diff --git a/src/components/IconRouter.tsx b/src/components/IconRouter.tsx new file mode 100644 index 000000000..63c9391ac --- /dev/null +++ b/src/components/IconRouter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRouter: React.FC = (props) => ( + + + + +) + +export { IconRouter } diff --git a/src/components/IconRowing.tsx b/src/components/IconRowing.tsx new file mode 100644 index 000000000..b8540cfec --- /dev/null +++ b/src/components/IconRowing.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconRowing: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconRowing } diff --git a/src/components/IconRssFeed.tsx b/src/components/IconRssFeed.tsx new file mode 100644 index 000000000..1687c7fe3 --- /dev/null +++ b/src/components/IconRssFeed.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconRssFeed: React.FC = (props) => ( + + + + + +) + +export { IconRssFeed } diff --git a/src/components/IconRule.tsx b/src/components/IconRule.tsx new file mode 100644 index 000000000..eb8c8e893 --- /dev/null +++ b/src/components/IconRule.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconRule: React.FC = (props) => ( + + + + + + +) + +export { IconRule } diff --git a/src/components/IconRuleFolder.tsx b/src/components/IconRuleFolder.tsx new file mode 100644 index 000000000..bf1c2e0ec --- /dev/null +++ b/src/components/IconRuleFolder.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconRuleFolder: React.FC = (props) => ( + + + + + + +) + +export { IconRuleFolder } diff --git a/src/components/IconRunCircle.tsx b/src/components/IconRunCircle.tsx new file mode 100644 index 000000000..d2df68723 --- /dev/null +++ b/src/components/IconRunCircle.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconRunCircle: React.FC = (props) => ( + + + + + + + + +) + +export { IconRunCircle } diff --git a/src/components/IconRvHookup.tsx b/src/components/IconRvHookup.tsx new file mode 100644 index 000000000..c7bb3dfe6 --- /dev/null +++ b/src/components/IconRvHookup.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconRvHookup: React.FC = (props) => ( + + + + + +) + +export { IconRvHookup } diff --git a/src/components/IconSanitizer.tsx b/src/components/IconSanitizer.tsx new file mode 100644 index 000000000..696ab1c34 --- /dev/null +++ b/src/components/IconSanitizer.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSanitizer: React.FC = (props) => ( + + + + +) + +export { IconSanitizer } diff --git a/src/components/IconSatellite.tsx b/src/components/IconSatellite.tsx new file mode 100644 index 000000000..6a62e5712 --- /dev/null +++ b/src/components/IconSatellite.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSatellite: React.FC = (props) => ( + + + + +) + +export { IconSatellite } diff --git a/src/components/IconSave.tsx b/src/components/IconSave.tsx new file mode 100644 index 000000000..f08802658 --- /dev/null +++ b/src/components/IconSave.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSave: React.FC = (props) => ( + + + + +) + +export { IconSave } diff --git a/src/components/IconSaveAlt.tsx b/src/components/IconSaveAlt.tsx new file mode 100644 index 000000000..1ca0a9e28 --- /dev/null +++ b/src/components/IconSaveAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSaveAlt: React.FC = (props) => ( + + + + +) + +export { IconSaveAlt } diff --git a/src/components/IconScanner.tsx b/src/components/IconScanner.tsx new file mode 100644 index 000000000..ae0d2e202 --- /dev/null +++ b/src/components/IconScanner.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconScanner: React.FC = (props) => ( + + + + +) + +export { IconScanner } diff --git a/src/components/IconScatterPlot.tsx b/src/components/IconScatterPlot.tsx new file mode 100644 index 000000000..b4b8e9aad --- /dev/null +++ b/src/components/IconScatterPlot.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' +const IconScatterPlot: React.FC = (props) => ( + + + + + + + + +) + +export { IconScatterPlot } diff --git a/src/components/IconSchedule.tsx b/src/components/IconSchedule.tsx new file mode 100644 index 000000000..3b026fe4b --- /dev/null +++ b/src/components/IconSchedule.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconSchedule: React.FC = (props) => ( + + + + + +) + +export { IconSchedule } diff --git a/src/components/IconSchool.tsx b/src/components/IconSchool.tsx new file mode 100644 index 000000000..2d837d55c --- /dev/null +++ b/src/components/IconSchool.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSchool: React.FC = (props) => ( + + + + +) + +export { IconSchool } diff --git a/src/components/IconScience.tsx b/src/components/IconScience.tsx new file mode 100644 index 000000000..fbd438027 --- /dev/null +++ b/src/components/IconScience.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconScience: React.FC = (props) => ( + + + + + + + + +) + +export { IconScience } diff --git a/src/components/IconScore.tsx b/src/components/IconScore.tsx new file mode 100644 index 000000000..e8833b1f1 --- /dev/null +++ b/src/components/IconScore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconScore: React.FC = (props) => ( + + + + +) + +export { IconScore } diff --git a/src/components/IconScreenLockLandscape.tsx b/src/components/IconScreenLockLandscape.tsx new file mode 100644 index 000000000..844aa16f4 --- /dev/null +++ b/src/components/IconScreenLockLandscape.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconScreenLockLandscape: React.FC = (props) => ( + + + + +) + +export { IconScreenLockLandscape } diff --git a/src/components/IconScreenLockPortrait.tsx b/src/components/IconScreenLockPortrait.tsx new file mode 100644 index 000000000..424c41a28 --- /dev/null +++ b/src/components/IconScreenLockPortrait.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconScreenLockPortrait: React.FC = (props) => ( + + + + +) + +export { IconScreenLockPortrait } diff --git a/src/components/IconScreenLockRotation.tsx b/src/components/IconScreenLockRotation.tsx new file mode 100644 index 000000000..2336c0eb1 --- /dev/null +++ b/src/components/IconScreenLockRotation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconScreenLockRotation: React.FC = (props) => ( + + + + +) + +export { IconScreenLockRotation } diff --git a/src/components/IconScreenRotation.tsx b/src/components/IconScreenRotation.tsx new file mode 100644 index 000000000..59202be7c --- /dev/null +++ b/src/components/IconScreenRotation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconScreenRotation: React.FC = (props) => ( + + + + +) + +export { IconScreenRotation } diff --git a/src/components/IconScreenShare.tsx b/src/components/IconScreenShare.tsx new file mode 100644 index 000000000..5f492e0c3 --- /dev/null +++ b/src/components/IconScreenShare.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconScreenShare: React.FC = (props) => ( + + + + +) + +export { IconScreenShare } diff --git a/src/components/IconSdCard.tsx b/src/components/IconSdCard.tsx new file mode 100644 index 000000000..64051035d --- /dev/null +++ b/src/components/IconSdCard.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSdCard: React.FC = (props) => ( + + + + +) + +export { IconSdCard } diff --git a/src/components/IconSdStorage.tsx b/src/components/IconSdStorage.tsx new file mode 100644 index 000000000..9d82d526b --- /dev/null +++ b/src/components/IconSdStorage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSdStorage: React.FC = (props) => ( + + + + +) + +export { IconSdStorage } diff --git a/src/components/IconSearch.tsx b/src/components/IconSearch.tsx new file mode 100644 index 000000000..32fe7dc1f --- /dev/null +++ b/src/components/IconSearch.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSearch: React.FC = (props) => ( + + + + +) + +export { IconSearch } diff --git a/src/components/IconSearchOff.tsx b/src/components/IconSearchOff.tsx new file mode 100644 index 000000000..d95043ed2 --- /dev/null +++ b/src/components/IconSearchOff.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconSearchOff: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconSearchOff } diff --git a/src/components/IconSecurity.tsx b/src/components/IconSecurity.tsx new file mode 100644 index 000000000..d8809b288 --- /dev/null +++ b/src/components/IconSecurity.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSecurity: React.FC = (props) => ( + + + + +) + +export { IconSecurity } diff --git a/src/components/IconSelectAll.tsx b/src/components/IconSelectAll.tsx new file mode 100644 index 000000000..ab4996d5b --- /dev/null +++ b/src/components/IconSelectAll.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSelectAll: React.FC = (props) => ( + + + + +) + +export { IconSelectAll } diff --git a/src/components/IconSelfImprovement.tsx b/src/components/IconSelfImprovement.tsx new file mode 100644 index 000000000..de53c9325 --- /dev/null +++ b/src/components/IconSelfImprovement.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconSelfImprovement: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconSelfImprovement } diff --git a/src/components/IconSend.tsx b/src/components/IconSend.tsx new file mode 100644 index 000000000..0bac7231c --- /dev/null +++ b/src/components/IconSend.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSend: React.FC = (props) => ( + + + + +) + +export { IconSend } diff --git a/src/components/IconSensorDoor.tsx b/src/components/IconSensorDoor.tsx new file mode 100644 index 000000000..2a8fdc8fe --- /dev/null +++ b/src/components/IconSensorDoor.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSensorDoor: React.FC = (props) => ( + + + + + + +) + +export { IconSensorDoor } diff --git a/src/components/IconSensorWindow.tsx b/src/components/IconSensorWindow.tsx new file mode 100644 index 000000000..f87857228 --- /dev/null +++ b/src/components/IconSensorWindow.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSensorWindow: React.FC = (props) => ( + + + + + + +) + +export { IconSensorWindow } diff --git a/src/components/IconSentimentDissatisfied.tsx b/src/components/IconSentimentDissatisfied.tsx new file mode 100644 index 000000000..2ab4bd444 --- /dev/null +++ b/src/components/IconSentimentDissatisfied.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSentimentDissatisfied: React.FC = (props) => ( + + + + + + +) + +export { IconSentimentDissatisfied } diff --git a/src/components/IconSentimentSatisfied.tsx b/src/components/IconSentimentSatisfied.tsx new file mode 100644 index 000000000..d67fa5ea1 --- /dev/null +++ b/src/components/IconSentimentSatisfied.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSentimentSatisfied: React.FC = (props) => ( + + + + + + +) + +export { IconSentimentSatisfied } diff --git a/src/components/IconSentimentSatisfiedAlt.tsx b/src/components/IconSentimentSatisfiedAlt.tsx new file mode 100644 index 000000000..e449de64c --- /dev/null +++ b/src/components/IconSentimentSatisfiedAlt.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSentimentSatisfiedAlt: React.FC = (props) => ( + + + + + + + + + +) + +export { IconSentimentSatisfiedAlt } diff --git a/src/components/IconSentimentVeryDissatisfied.tsx b/src/components/IconSentimentVeryDissatisfied.tsx new file mode 100644 index 000000000..745522f43 --- /dev/null +++ b/src/components/IconSentimentVeryDissatisfied.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSentimentVeryDissatisfied: React.FC = (props) => ( + + + + + + +) + +export { IconSentimentVeryDissatisfied } diff --git a/src/components/IconSentimentVerySatisfied.tsx b/src/components/IconSentimentVerySatisfied.tsx new file mode 100644 index 000000000..f3426f887 --- /dev/null +++ b/src/components/IconSentimentVerySatisfied.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSentimentVerySatisfied: React.FC = (props) => ( + + + + + + +) + +export { IconSentimentVerySatisfied } diff --git a/src/components/IconSetMeal.tsx b/src/components/IconSetMeal.tsx new file mode 100644 index 000000000..a9cc1f16e --- /dev/null +++ b/src/components/IconSetMeal.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSetMeal: React.FC = (props) => ( + + + + +) + +export { IconSetMeal } diff --git a/src/components/IconSettings.tsx b/src/components/IconSettings.tsx new file mode 100644 index 000000000..c0cb5bb3a --- /dev/null +++ b/src/components/IconSettings.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettings: React.FC = (props) => ( + + + + + + +) + +export { IconSettings } diff --git a/src/components/IconSettingsApplications.tsx b/src/components/IconSettingsApplications.tsx new file mode 100644 index 000000000..4ecb33c0c --- /dev/null +++ b/src/components/IconSettingsApplications.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsApplications: React.FC = (props) => ( + + + + +) + +export { IconSettingsApplications } diff --git a/src/components/IconSettingsBackupRestore.tsx b/src/components/IconSettingsBackupRestore.tsx new file mode 100644 index 000000000..26adc7661 --- /dev/null +++ b/src/components/IconSettingsBackupRestore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsBackupRestore: React.FC = (props) => ( + + + + +) + +export { IconSettingsBackupRestore } diff --git a/src/components/IconSettingsBluetooth.tsx b/src/components/IconSettingsBluetooth.tsx new file mode 100644 index 000000000..303ebf8df --- /dev/null +++ b/src/components/IconSettingsBluetooth.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsBluetooth: React.FC = (props) => ( + + + + +) + +export { IconSettingsBluetooth } diff --git a/src/components/IconSettingsBrightness.tsx b/src/components/IconSettingsBrightness.tsx new file mode 100644 index 000000000..67f26fc2a --- /dev/null +++ b/src/components/IconSettingsBrightness.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsBrightness: React.FC = (props) => ( + + + + +) + +export { IconSettingsBrightness } diff --git a/src/components/IconSettingsCell.tsx b/src/components/IconSettingsCell.tsx new file mode 100644 index 000000000..cbb1e9a84 --- /dev/null +++ b/src/components/IconSettingsCell.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsCell: React.FC = (props) => ( + + + + +) + +export { IconSettingsCell } diff --git a/src/components/IconSettingsEthernet.tsx b/src/components/IconSettingsEthernet.tsx new file mode 100644 index 000000000..c735f2040 --- /dev/null +++ b/src/components/IconSettingsEthernet.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsEthernet: React.FC = (props) => ( + + + + +) + +export { IconSettingsEthernet } diff --git a/src/components/IconSettingsInputAntenna.tsx b/src/components/IconSettingsInputAntenna.tsx new file mode 100644 index 000000000..f24713de7 --- /dev/null +++ b/src/components/IconSettingsInputAntenna.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsInputAntenna: React.FC = (props) => ( + + + + +) + +export { IconSettingsInputAntenna } diff --git a/src/components/IconSettingsInputComponent.tsx b/src/components/IconSettingsInputComponent.tsx new file mode 100644 index 000000000..4a51b6b63 --- /dev/null +++ b/src/components/IconSettingsInputComponent.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsInputComponent: React.FC = (props) => ( + + + + +) + +export { IconSettingsInputComponent } diff --git a/src/components/IconSettingsInputComposite.tsx b/src/components/IconSettingsInputComposite.tsx new file mode 100644 index 000000000..c10d633ee --- /dev/null +++ b/src/components/IconSettingsInputComposite.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsInputComposite: React.FC = (props) => ( + + + + +) + +export { IconSettingsInputComposite } diff --git a/src/components/IconSettingsInputHdmi.tsx b/src/components/IconSettingsInputHdmi.tsx new file mode 100644 index 000000000..9608b925d --- /dev/null +++ b/src/components/IconSettingsInputHdmi.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsInputHdmi: React.FC = (props) => ( + + + + +) + +export { IconSettingsInputHdmi } diff --git a/src/components/IconSettingsInputSvideo.tsx b/src/components/IconSettingsInputSvideo.tsx new file mode 100644 index 000000000..daafd1f81 --- /dev/null +++ b/src/components/IconSettingsInputSvideo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsInputSvideo: React.FC = (props) => ( + + + + +) + +export { IconSettingsInputSvideo } diff --git a/src/components/IconSettingsOverscan.tsx b/src/components/IconSettingsOverscan.tsx new file mode 100644 index 000000000..77ee541fd --- /dev/null +++ b/src/components/IconSettingsOverscan.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsOverscan: React.FC = (props) => ( + + + + +) + +export { IconSettingsOverscan } diff --git a/src/components/IconSettingsPhone.tsx b/src/components/IconSettingsPhone.tsx new file mode 100644 index 000000000..f8e1b2400 --- /dev/null +++ b/src/components/IconSettingsPhone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsPhone: React.FC = (props) => ( + + + + +) + +export { IconSettingsPhone } diff --git a/src/components/IconSettingsPower.tsx b/src/components/IconSettingsPower.tsx new file mode 100644 index 000000000..276d364f7 --- /dev/null +++ b/src/components/IconSettingsPower.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsPower: React.FC = (props) => ( + + + + +) + +export { IconSettingsPower } diff --git a/src/components/IconSettingsRemote.tsx b/src/components/IconSettingsRemote.tsx new file mode 100644 index 000000000..d061306cf --- /dev/null +++ b/src/components/IconSettingsRemote.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsRemote: React.FC = (props) => ( + + + + +) + +export { IconSettingsRemote } diff --git a/src/components/IconSettingsSystemDaydream.tsx b/src/components/IconSettingsSystemDaydream.tsx new file mode 100644 index 000000000..63a671774 --- /dev/null +++ b/src/components/IconSettingsSystemDaydream.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsSystemDaydream: React.FC = (props) => ( + + + + +) + +export { IconSettingsSystemDaydream } diff --git a/src/components/IconSettingsVoice.tsx b/src/components/IconSettingsVoice.tsx new file mode 100644 index 000000000..28fec0837 --- /dev/null +++ b/src/components/IconSettingsVoice.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsVoice: React.FC = (props) => ( + + + + +) + +export { IconSettingsVoice } diff --git a/src/components/IconShare.tsx b/src/components/IconShare.tsx new file mode 100644 index 000000000..d860f4db8 --- /dev/null +++ b/src/components/IconShare.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconShare: React.FC = (props) => ( + + + + +) + +export { IconShare } diff --git a/src/components/IconShop.tsx b/src/components/IconShop.tsx new file mode 100644 index 000000000..3d5d5681f --- /dev/null +++ b/src/components/IconShop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconShop: React.FC = (props) => ( + + + + +) + +export { IconShop } diff --git a/src/components/IconShopTwo.tsx b/src/components/IconShopTwo.tsx new file mode 100644 index 000000000..c9914339c --- /dev/null +++ b/src/components/IconShopTwo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconShopTwo: React.FC = (props) => ( + + + + +) + +export { IconShopTwo } diff --git a/src/components/IconShoppingBag.tsx b/src/components/IconShoppingBag.tsx new file mode 100644 index 000000000..2f7ad437c --- /dev/null +++ b/src/components/IconShoppingBag.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconShoppingBag: React.FC = (props) => ( + + + + + + +) + +export { IconShoppingBag } diff --git a/src/components/IconShoppingBasket.tsx b/src/components/IconShoppingBasket.tsx new file mode 100644 index 000000000..3f8c23a3a --- /dev/null +++ b/src/components/IconShoppingBasket.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconShoppingBasket: React.FC = (props) => ( + + + + +) + +export { IconShoppingBasket } diff --git a/src/components/IconShoppingCart.tsx b/src/components/IconShoppingCart.tsx new file mode 100644 index 000000000..1a5ef0115 --- /dev/null +++ b/src/components/IconShoppingCart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconShoppingCart: React.FC = (props) => ( + + + + +) + +export { IconShoppingCart } diff --git a/src/components/IconShortText.tsx b/src/components/IconShortText.tsx new file mode 100644 index 000000000..29be34cb1 --- /dev/null +++ b/src/components/IconShortText.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconShortText: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconShortText } diff --git a/src/components/IconShowChart.tsx b/src/components/IconShowChart.tsx new file mode 100644 index 000000000..e366a8acb --- /dev/null +++ b/src/components/IconShowChart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconShowChart: React.FC = (props) => ( + + + + +) + +export { IconShowChart } diff --git a/src/components/IconShuffle.tsx b/src/components/IconShuffle.tsx new file mode 100644 index 000000000..eadf7011e --- /dev/null +++ b/src/components/IconShuffle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconShuffle: React.FC = (props) => ( + + + + +) + +export { IconShuffle } diff --git a/src/components/IconShutterSpeed.tsx b/src/components/IconShutterSpeed.tsx new file mode 100644 index 000000000..37d3d0deb --- /dev/null +++ b/src/components/IconShutterSpeed.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconShutterSpeed: React.FC = (props) => ( + + + + +) + +export { IconShutterSpeed } diff --git a/src/components/IconSick.tsx b/src/components/IconSick.tsx new file mode 100644 index 000000000..647a0d18c --- /dev/null +++ b/src/components/IconSick.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSick: React.FC = (props) => ( + + + + +) + +export { IconSick } diff --git a/src/components/IconSignalCellular4Bar.tsx b/src/components/IconSignalCellular4Bar.tsx new file mode 100644 index 000000000..927d493fd --- /dev/null +++ b/src/components/IconSignalCellular4Bar.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalCellular4Bar: React.FC = (props) => ( + + + + +) + +export { IconSignalCellular4Bar } diff --git a/src/components/IconSignalCellularAlt.tsx b/src/components/IconSignalCellularAlt.tsx new file mode 100644 index 000000000..31967eaf9 --- /dev/null +++ b/src/components/IconSignalCellularAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalCellularAlt: React.FC = (props) => ( + + + + +) + +export { IconSignalCellularAlt } diff --git a/src/components/IconSignalCellularConnectedNoInternet4Bar.tsx b/src/components/IconSignalCellularConnectedNoInternet4Bar.tsx new file mode 100644 index 000000000..90b71187e --- /dev/null +++ b/src/components/IconSignalCellularConnectedNoInternet4Bar.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalCellularConnectedNoInternet4Bar: React.FC = ( + props +) => ( + + + + +) + +export { IconSignalCellularConnectedNoInternet4Bar } diff --git a/src/components/IconSignalCellularNoSim.tsx b/src/components/IconSignalCellularNoSim.tsx new file mode 100644 index 000000000..53ac374ed --- /dev/null +++ b/src/components/IconSignalCellularNoSim.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalCellularNoSim: React.FC = (props) => ( + + + + + +) + +export { IconSignalCellularNoSim } diff --git a/src/components/IconSignalCellularNull.tsx b/src/components/IconSignalCellularNull.tsx new file mode 100644 index 000000000..854027eae --- /dev/null +++ b/src/components/IconSignalCellularNull.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalCellularNull: React.FC = (props) => ( + + + + +) + +export { IconSignalCellularNull } diff --git a/src/components/IconSignalCellularOff.tsx b/src/components/IconSignalCellularOff.tsx new file mode 100644 index 000000000..8b37ce8bb --- /dev/null +++ b/src/components/IconSignalCellularOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalCellularOff: React.FC = (props) => ( + + + + +) + +export { IconSignalCellularOff } diff --git a/src/components/IconSignalWifi4Bar.tsx b/src/components/IconSignalWifi4Bar.tsx new file mode 100644 index 000000000..c72182aa7 --- /dev/null +++ b/src/components/IconSignalWifi4Bar.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalWifi4Bar: React.FC = (props) => ( + + + + +) + +export { IconSignalWifi4Bar } diff --git a/src/components/IconSignalWifi4BarLock.tsx b/src/components/IconSignalWifi4BarLock.tsx new file mode 100644 index 000000000..d5ee5a424 --- /dev/null +++ b/src/components/IconSignalWifi4BarLock.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalWifi4BarLock: React.FC = (props) => ( + + + + +) + +export { IconSignalWifi4BarLock } diff --git a/src/components/IconSignalWifiOff.tsx b/src/components/IconSignalWifiOff.tsx new file mode 100644 index 000000000..20a198ffd --- /dev/null +++ b/src/components/IconSignalWifiOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalWifiOff: React.FC = (props) => ( + + + + +) + +export { IconSignalWifiOff } diff --git a/src/components/IconSimCard.tsx b/src/components/IconSimCard.tsx new file mode 100644 index 000000000..2f565daa9 --- /dev/null +++ b/src/components/IconSimCard.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSimCard: React.FC = (props) => ( + + + + +) + +export { IconSimCard } diff --git a/src/components/IconSingleBed.tsx b/src/components/IconSingleBed.tsx new file mode 100644 index 000000000..ecf9cd299 --- /dev/null +++ b/src/components/IconSingleBed.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconSingleBed: React.FC = (props) => ( + + + + + + + + +) + +export { IconSingleBed } diff --git a/src/components/IconSkipNext.tsx b/src/components/IconSkipNext.tsx new file mode 100644 index 000000000..3b50ed1ac --- /dev/null +++ b/src/components/IconSkipNext.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSkipNext: React.FC = (props) => ( + + + + +) + +export { IconSkipNext } diff --git a/src/components/IconSkipPrevious.tsx b/src/components/IconSkipPrevious.tsx new file mode 100644 index 000000000..aa003ca3e --- /dev/null +++ b/src/components/IconSkipPrevious.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSkipPrevious: React.FC = (props) => ( + + + + +) + +export { IconSkipPrevious } diff --git a/src/components/IconSlideshow.tsx b/src/components/IconSlideshow.tsx new file mode 100644 index 000000000..e4c519713 --- /dev/null +++ b/src/components/IconSlideshow.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSlideshow: React.FC = (props) => ( + + + + +) + +export { IconSlideshow } diff --git a/src/components/IconSlowMotionVideo.tsx b/src/components/IconSlowMotionVideo.tsx new file mode 100644 index 000000000..550e0f8b4 --- /dev/null +++ b/src/components/IconSlowMotionVideo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSlowMotionVideo: React.FC = (props) => ( + + + + +) + +export { IconSlowMotionVideo } diff --git a/src/components/IconSmartButton.tsx b/src/components/IconSmartButton.tsx new file mode 100644 index 000000000..6982b39db --- /dev/null +++ b/src/components/IconSmartButton.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSmartButton: React.FC = (props) => ( + + + + + + +) + +export { IconSmartButton } diff --git a/src/components/IconSmartphone.tsx b/src/components/IconSmartphone.tsx new file mode 100644 index 000000000..67263c00e --- /dev/null +++ b/src/components/IconSmartphone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSmartphone: React.FC = (props) => ( + + + + +) + +export { IconSmartphone } diff --git a/src/components/IconSmokeFree.tsx b/src/components/IconSmokeFree.tsx new file mode 100644 index 000000000..1fba7f65b --- /dev/null +++ b/src/components/IconSmokeFree.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSmokeFree: React.FC = (props) => ( + + + + +) + +export { IconSmokeFree } diff --git a/src/components/IconSmokingRooms.tsx b/src/components/IconSmokingRooms.tsx new file mode 100644 index 000000000..65222c537 --- /dev/null +++ b/src/components/IconSmokingRooms.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSmokingRooms: React.FC = (props) => ( + + + + +) + +export { IconSmokingRooms } diff --git a/src/components/IconSms.tsx b/src/components/IconSms.tsx new file mode 100644 index 000000000..a62b5ca4f --- /dev/null +++ b/src/components/IconSms.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSms: React.FC = (props) => ( + + + + +) + +export { IconSms } diff --git a/src/components/IconSmsFailed.tsx b/src/components/IconSmsFailed.tsx new file mode 100644 index 000000000..2815f6359 --- /dev/null +++ b/src/components/IconSmsFailed.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSmsFailed: React.FC = (props) => ( + + + + +) + +export { IconSmsFailed } diff --git a/src/components/IconSnippetFolder.tsx b/src/components/IconSnippetFolder.tsx new file mode 100644 index 000000000..064949932 --- /dev/null +++ b/src/components/IconSnippetFolder.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSnippetFolder: React.FC = (props) => ( + + + + + + +) + +export { IconSnippetFolder } diff --git a/src/components/IconSnooze.tsx b/src/components/IconSnooze.tsx new file mode 100644 index 000000000..42a66bc7c --- /dev/null +++ b/src/components/IconSnooze.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSnooze: React.FC = (props) => ( + + + + +) + +export { IconSnooze } diff --git a/src/components/IconSoap.tsx b/src/components/IconSoap.tsx new file mode 100644 index 000000000..8def5d1e2 --- /dev/null +++ b/src/components/IconSoap.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSoap: React.FC = (props) => ( + + + + + + +) + +export { IconSoap } diff --git a/src/components/IconSort.tsx b/src/components/IconSort.tsx new file mode 100644 index 000000000..ad43e4de0 --- /dev/null +++ b/src/components/IconSort.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSort: React.FC = (props) => ( + + + + +) + +export { IconSort } diff --git a/src/components/IconSortByAlpha.tsx b/src/components/IconSortByAlpha.tsx new file mode 100644 index 000000000..528c3b630 --- /dev/null +++ b/src/components/IconSortByAlpha.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconSortByAlpha: React.FC = (props) => ( + + + + +) + +export { IconSortByAlpha } diff --git a/src/components/IconSource.tsx b/src/components/IconSource.tsx new file mode 100644 index 000000000..8960058ec --- /dev/null +++ b/src/components/IconSource.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSource: React.FC = (props) => ( + + + + + + +) + +export { IconSource } diff --git a/src/components/IconSouth.tsx b/src/components/IconSouth.tsx new file mode 100644 index 000000000..99f6a9fc5 --- /dev/null +++ b/src/components/IconSouth.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSouth: React.FC = (props) => ( + + + + +) + +export { IconSouth } diff --git a/src/components/IconSouthEast.tsx b/src/components/IconSouthEast.tsx new file mode 100644 index 000000000..78eb3ac86 --- /dev/null +++ b/src/components/IconSouthEast.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSouthEast: React.FC = (props) => ( + + + + +) + +export { IconSouthEast } diff --git a/src/components/IconSouthWest.tsx b/src/components/IconSouthWest.tsx new file mode 100644 index 000000000..a5458b7b5 --- /dev/null +++ b/src/components/IconSouthWest.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSouthWest: React.FC = (props) => ( + + + + +) + +export { IconSouthWest } diff --git a/src/components/IconSpa.tsx b/src/components/IconSpa.tsx new file mode 100644 index 000000000..06b1fa7ef --- /dev/null +++ b/src/components/IconSpa.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpa: React.FC = (props) => ( + + + + + +) + +export { IconSpa } diff --git a/src/components/IconSpaceBar.tsx b/src/components/IconSpaceBar.tsx new file mode 100644 index 000000000..90446523b --- /dev/null +++ b/src/components/IconSpaceBar.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpaceBar: React.FC = (props) => ( + + + + +) + +export { IconSpaceBar } diff --git a/src/components/IconSpeaker.tsx b/src/components/IconSpeaker.tsx new file mode 100644 index 000000000..a812a672a --- /dev/null +++ b/src/components/IconSpeaker.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpeaker: React.FC = (props) => ( + + + + +) + +export { IconSpeaker } diff --git a/src/components/IconSpeakerGroup.tsx b/src/components/IconSpeakerGroup.tsx new file mode 100644 index 000000000..8ba898cca --- /dev/null +++ b/src/components/IconSpeakerGroup.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpeakerGroup: React.FC = (props) => ( + + + + + + +) + +export { IconSpeakerGroup } diff --git a/src/components/IconSpeakerNotes.tsx b/src/components/IconSpeakerNotes.tsx new file mode 100644 index 000000000..622ce3430 --- /dev/null +++ b/src/components/IconSpeakerNotes.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpeakerNotes: React.FC = (props) => ( + + + + +) + +export { IconSpeakerNotes } diff --git a/src/components/IconSpeakerNotesOff.tsx b/src/components/IconSpeakerNotesOff.tsx new file mode 100644 index 000000000..16417d2f3 --- /dev/null +++ b/src/components/IconSpeakerNotesOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpeakerNotesOff: React.FC = (props) => ( + + + + +) + +export { IconSpeakerNotesOff } diff --git a/src/components/IconSpeakerPhone.tsx b/src/components/IconSpeakerPhone.tsx new file mode 100644 index 000000000..4bb6d231e --- /dev/null +++ b/src/components/IconSpeakerPhone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpeakerPhone: React.FC = (props) => ( + + + + +) + +export { IconSpeakerPhone } diff --git a/src/components/IconSpeed.tsx b/src/components/IconSpeed.tsx new file mode 100644 index 000000000..dd909b3b1 --- /dev/null +++ b/src/components/IconSpeed.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpeed: React.FC = (props) => ( + + + + +) + +export { IconSpeed } diff --git a/src/components/IconSpellcheck.tsx b/src/components/IconSpellcheck.tsx new file mode 100644 index 000000000..b020c8973 --- /dev/null +++ b/src/components/IconSpellcheck.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpellcheck: React.FC = (props) => ( + + + + +) + +export { IconSpellcheck } diff --git a/src/components/IconSports.tsx b/src/components/IconSports.tsx new file mode 100644 index 000000000..af99fd946 --- /dev/null +++ b/src/components/IconSports.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconSports: React.FC = (props) => ( + + + + + + + + + + + + + + + +) + +export { IconSports } diff --git a/src/components/IconSportsBar.tsx b/src/components/IconSportsBar.tsx new file mode 100644 index 000000000..fc9740f23 --- /dev/null +++ b/src/components/IconSportsBar.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsBar: React.FC = (props) => ( + + + + +) + +export { IconSportsBar } diff --git a/src/components/IconSportsBaseball.tsx b/src/components/IconSportsBaseball.tsx new file mode 100644 index 000000000..a5cb3a430 --- /dev/null +++ b/src/components/IconSportsBaseball.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsBaseball: React.FC = (props) => ( + + + + + + + + + + + + + + + + + + +) + +export { IconSportsBaseball } diff --git a/src/components/IconSportsBasketball.tsx b/src/components/IconSportsBasketball.tsx new file mode 100644 index 000000000..3aa6b14dc --- /dev/null +++ b/src/components/IconSportsBasketball.tsx @@ -0,0 +1,44 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsBasketball: React.FC = (props) => ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconSportsBasketball } diff --git a/src/components/IconSportsCricket.tsx b/src/components/IconSportsCricket.tsx new file mode 100644 index 000000000..cb1593ebe --- /dev/null +++ b/src/components/IconSportsCricket.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsCricket: React.FC = (props) => ( + + + + + + + + + + + + + + +) + +export { IconSportsCricket } diff --git a/src/components/IconSportsEsports.tsx b/src/components/IconSportsEsports.tsx new file mode 100644 index 000000000..44239a0ef --- /dev/null +++ b/src/components/IconSportsEsports.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsEsports: React.FC = (props) => ( + + + + + + + + + + +) + +export { IconSportsEsports } diff --git a/src/components/IconSportsFootball.tsx b/src/components/IconSportsFootball.tsx new file mode 100644 index 000000000..444798fd4 --- /dev/null +++ b/src/components/IconSportsFootball.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsFootball: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconSportsFootball } diff --git a/src/components/IconSportsGolf.tsx b/src/components/IconSportsGolf.tsx new file mode 100644 index 000000000..e37dd0b38 --- /dev/null +++ b/src/components/IconSportsGolf.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsGolf: React.FC = (props) => ( + + + + + + + + + + + + + + +) + +export { IconSportsGolf } diff --git a/src/components/IconSportsHandball.tsx b/src/components/IconSportsHandball.tsx new file mode 100644 index 000000000..3becfcfe9 --- /dev/null +++ b/src/components/IconSportsHandball.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsHandball: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconSportsHandball } diff --git a/src/components/IconSportsHockey.tsx b/src/components/IconSportsHockey.tsx new file mode 100644 index 000000000..34b616e83 --- /dev/null +++ b/src/components/IconSportsHockey.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsHockey: React.FC = (props) => ( + + + + + + + + + + + + + + + +) + +export { IconSportsHockey } diff --git a/src/components/IconSportsKabaddi.tsx b/src/components/IconSportsKabaddi.tsx new file mode 100644 index 000000000..0e982809d --- /dev/null +++ b/src/components/IconSportsKabaddi.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsKabaddi: React.FC = (props) => ( + + + + + + + + + + + + + +) + +export { IconSportsKabaddi } diff --git a/src/components/IconSportsMma.tsx b/src/components/IconSportsMma.tsx new file mode 100644 index 000000000..4fe58c488 --- /dev/null +++ b/src/components/IconSportsMma.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsMma: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconSportsMma } diff --git a/src/components/IconSportsMotorsports.tsx b/src/components/IconSportsMotorsports.tsx new file mode 100644 index 000000000..7ef15d4c6 --- /dev/null +++ b/src/components/IconSportsMotorsports.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsMotorsports: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconSportsMotorsports } diff --git a/src/components/IconSportsRugby.tsx b/src/components/IconSportsRugby.tsx new file mode 100644 index 000000000..2316f8846 --- /dev/null +++ b/src/components/IconSportsRugby.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsRugby: React.FC = (props) => ( + + + + + + + + + + +) + +export { IconSportsRugby } diff --git a/src/components/IconSportsSoccer.tsx b/src/components/IconSportsSoccer.tsx new file mode 100644 index 000000000..5d25cdfd7 --- /dev/null +++ b/src/components/IconSportsSoccer.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsSoccer: React.FC = (props) => ( + + + + + + + + + + +) + +export { IconSportsSoccer } diff --git a/src/components/IconSportsTennis.tsx b/src/components/IconSportsTennis.tsx new file mode 100644 index 000000000..1144fd621 --- /dev/null +++ b/src/components/IconSportsTennis.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsTennis: React.FC = (props) => ( + + + + + + + + + +) + +export { IconSportsTennis } diff --git a/src/components/IconSportsVolleyball.tsx b/src/components/IconSportsVolleyball.tsx new file mode 100644 index 000000000..f18360cbe --- /dev/null +++ b/src/components/IconSportsVolleyball.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsVolleyball: React.FC = (props) => ( + + + + + + + + + + + + + + + +) + +export { IconSportsVolleyball } diff --git a/src/components/IconSquareFoot.tsx b/src/components/IconSquareFoot.tsx new file mode 100644 index 000000000..5b52de2d3 --- /dev/null +++ b/src/components/IconSquareFoot.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconSquareFoot: React.FC = (props) => ( + + + + + + + + + + +) + +export { IconSquareFoot } diff --git a/src/components/IconStackedLineChart.tsx b/src/components/IconStackedLineChart.tsx new file mode 100644 index 000000000..4d2dd4b05 --- /dev/null +++ b/src/components/IconStackedLineChart.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconStackedLineChart: React.FC = (props) => ( + + + + +) + +export { IconStackedLineChart } diff --git a/src/components/IconStairs.tsx b/src/components/IconStairs.tsx new file mode 100644 index 000000000..d210b8ed0 --- /dev/null +++ b/src/components/IconStairs.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconStairs: React.FC = (props) => ( + + + + + + + + + + +) + +export { IconStairs } diff --git a/src/components/IconStar.tsx b/src/components/IconStar.tsx new file mode 100644 index 000000000..196e4a2e8 --- /dev/null +++ b/src/components/IconStar.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconStar: React.FC = (props) => ( + + + + + +) + +export { IconStar } diff --git a/src/components/IconStarBorder.tsx b/src/components/IconStarBorder.tsx new file mode 100644 index 000000000..48a154787 --- /dev/null +++ b/src/components/IconStarBorder.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStarBorder: React.FC = (props) => ( + + + + +) + +export { IconStarBorder } diff --git a/src/components/IconStarHalf.tsx b/src/components/IconStarHalf.tsx new file mode 100644 index 000000000..249538aca --- /dev/null +++ b/src/components/IconStarHalf.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconStarHalf: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconStarHalf } diff --git a/src/components/IconStarOutline.tsx b/src/components/IconStarOutline.tsx new file mode 100644 index 000000000..68f0eff03 --- /dev/null +++ b/src/components/IconStarOutline.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { IconProps } from './types' +const IconStarOutline: React.FC = (props) => ( + + + +) + +export { IconStarOutline } diff --git a/src/components/IconStarRate.tsx b/src/components/IconStarRate.tsx new file mode 100644 index 000000000..fe4c50c8e --- /dev/null +++ b/src/components/IconStarRate.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconStarRate: React.FC = (props) => ( + + + + + + +) + +export { IconStarRate } diff --git a/src/components/IconStars.tsx b/src/components/IconStars.tsx new file mode 100644 index 000000000..47a21cdcc --- /dev/null +++ b/src/components/IconStars.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStars: React.FC = (props) => ( + + + + +) + +export { IconStars } diff --git a/src/components/IconStayCurrentLandscape.tsx b/src/components/IconStayCurrentLandscape.tsx new file mode 100644 index 000000000..aca9f90ff --- /dev/null +++ b/src/components/IconStayCurrentLandscape.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStayCurrentLandscape: React.FC = (props) => ( + + + + +) + +export { IconStayCurrentLandscape } diff --git a/src/components/IconStayCurrentPortrait.tsx b/src/components/IconStayCurrentPortrait.tsx new file mode 100644 index 000000000..297867731 --- /dev/null +++ b/src/components/IconStayCurrentPortrait.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStayCurrentPortrait: React.FC = (props) => ( + + + + +) + +export { IconStayCurrentPortrait } diff --git a/src/components/IconStayPrimaryLandscape.tsx b/src/components/IconStayPrimaryLandscape.tsx new file mode 100644 index 000000000..95bfd0e1c --- /dev/null +++ b/src/components/IconStayPrimaryLandscape.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStayPrimaryLandscape: React.FC = (props) => ( + + + + +) + +export { IconStayPrimaryLandscape } diff --git a/src/components/IconStayPrimaryPortrait.tsx b/src/components/IconStayPrimaryPortrait.tsx new file mode 100644 index 000000000..85fa57403 --- /dev/null +++ b/src/components/IconStayPrimaryPortrait.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStayPrimaryPortrait: React.FC = (props) => ( + + + + +) + +export { IconStayPrimaryPortrait } diff --git a/src/components/IconStickyNote2.tsx b/src/components/IconStickyNote2.tsx new file mode 100644 index 000000000..ff3faab0f --- /dev/null +++ b/src/components/IconStickyNote2.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconStickyNote2: React.FC = (props) => ( + + + + +) + +export { IconStickyNote2 } diff --git a/src/components/IconStop.tsx b/src/components/IconStop.tsx new file mode 100644 index 000000000..4322f8ce2 --- /dev/null +++ b/src/components/IconStop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStop: React.FC = (props) => ( + + + + +) + +export { IconStop } diff --git a/src/components/IconStopCircle.tsx b/src/components/IconStopCircle.tsx new file mode 100644 index 000000000..38e1fe83f --- /dev/null +++ b/src/components/IconStopCircle.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconStopCircle: React.FC = (props) => ( + + + + + + + + +) + +export { IconStopCircle } diff --git a/src/components/IconStopScreenShare.tsx b/src/components/IconStopScreenShare.tsx new file mode 100644 index 000000000..609f4aef0 --- /dev/null +++ b/src/components/IconStopScreenShare.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStopScreenShare: React.FC = (props) => ( + + + + +) + +export { IconStopScreenShare } diff --git a/src/components/IconStorage.tsx b/src/components/IconStorage.tsx new file mode 100644 index 000000000..9df7b4ba4 --- /dev/null +++ b/src/components/IconStorage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStorage: React.FC = (props) => ( + + + + +) + +export { IconStorage } diff --git a/src/components/IconStore.tsx b/src/components/IconStore.tsx new file mode 100644 index 000000000..2805b8a3a --- /dev/null +++ b/src/components/IconStore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStore: React.FC = (props) => ( + + + + +) + +export { IconStore } diff --git a/src/components/IconStoreMallDirectory.tsx b/src/components/IconStoreMallDirectory.tsx new file mode 100644 index 000000000..492a89fbf --- /dev/null +++ b/src/components/IconStoreMallDirectory.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStoreMallDirectory: React.FC = (props) => ( + + + + +) + +export { IconStoreMallDirectory } diff --git a/src/components/IconStorefront.tsx b/src/components/IconStorefront.tsx new file mode 100644 index 000000000..ea30633c3 --- /dev/null +++ b/src/components/IconStorefront.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconStorefront: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconStorefront } diff --git a/src/components/IconStraighten.tsx b/src/components/IconStraighten.tsx new file mode 100644 index 000000000..8ca4488c1 --- /dev/null +++ b/src/components/IconStraighten.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStraighten: React.FC = (props) => ( + + + + +) + +export { IconStraighten } diff --git a/src/components/IconStreetview.tsx b/src/components/IconStreetview.tsx new file mode 100644 index 000000000..b5be11870 --- /dev/null +++ b/src/components/IconStreetview.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconStreetview: React.FC = (props) => ( + + + + + + +) + +export { IconStreetview } diff --git a/src/components/IconStrikethroughS.tsx b/src/components/IconStrikethroughS.tsx new file mode 100644 index 000000000..4b29bf15b --- /dev/null +++ b/src/components/IconStrikethroughS.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconStrikethroughS: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconStrikethroughS } diff --git a/src/components/IconStroller.tsx b/src/components/IconStroller.tsx new file mode 100644 index 000000000..35ac1c857 --- /dev/null +++ b/src/components/IconStroller.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconStroller: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconStroller } diff --git a/src/components/IconStyle.tsx b/src/components/IconStyle.tsx new file mode 100644 index 000000000..0597229e4 --- /dev/null +++ b/src/components/IconStyle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStyle: React.FC = (props) => ( + + + + +) + +export { IconStyle } diff --git a/src/components/IconSubdirectoryArrowLeft.tsx b/src/components/IconSubdirectoryArrowLeft.tsx new file mode 100644 index 000000000..3d7f7a370 --- /dev/null +++ b/src/components/IconSubdirectoryArrowLeft.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSubdirectoryArrowLeft: React.FC = (props) => ( + + + + +) + +export { IconSubdirectoryArrowLeft } diff --git a/src/components/IconSubdirectoryArrowRight.tsx b/src/components/IconSubdirectoryArrowRight.tsx new file mode 100644 index 000000000..26db445bc --- /dev/null +++ b/src/components/IconSubdirectoryArrowRight.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSubdirectoryArrowRight: React.FC = (props) => ( + + + + +) + +export { IconSubdirectoryArrowRight } diff --git a/src/components/IconSubject.tsx b/src/components/IconSubject.tsx new file mode 100644 index 000000000..64ef10eef --- /dev/null +++ b/src/components/IconSubject.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSubject: React.FC = (props) => ( + + + + +) + +export { IconSubject } diff --git a/src/components/IconSubscript.tsx b/src/components/IconSubscript.tsx new file mode 100644 index 000000000..2d19fd478 --- /dev/null +++ b/src/components/IconSubscript.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSubscript: React.FC = (props) => ( + + + + + + +) + +export { IconSubscript } diff --git a/src/components/IconSubscriptions.tsx b/src/components/IconSubscriptions.tsx new file mode 100644 index 000000000..a9e4abe75 --- /dev/null +++ b/src/components/IconSubscriptions.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSubscriptions: React.FC = (props) => ( + + + + +) + +export { IconSubscriptions } diff --git a/src/components/IconSubtitles.tsx b/src/components/IconSubtitles.tsx new file mode 100644 index 000000000..f4f76c972 --- /dev/null +++ b/src/components/IconSubtitles.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSubtitles: React.FC = (props) => ( + + + + +) + +export { IconSubtitles } diff --git a/src/components/IconSubtitlesOff.tsx b/src/components/IconSubtitlesOff.tsx new file mode 100644 index 000000000..374bacc44 --- /dev/null +++ b/src/components/IconSubtitlesOff.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconSubtitlesOff: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconSubtitlesOff } diff --git a/src/components/IconSubway.tsx b/src/components/IconSubway.tsx new file mode 100644 index 000000000..89e11758a --- /dev/null +++ b/src/components/IconSubway.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSubway: React.FC = (props) => ( + + + + + + +) + +export { IconSubway } diff --git a/src/components/IconSuperscript.tsx b/src/components/IconSuperscript.tsx new file mode 100644 index 000000000..5205b3ecf --- /dev/null +++ b/src/components/IconSuperscript.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSuperscript: React.FC = (props) => ( + + + + + + +) + +export { IconSuperscript } diff --git a/src/components/IconSupervisedUserCircle.tsx b/src/components/IconSupervisedUserCircle.tsx new file mode 100644 index 000000000..f3b697138 --- /dev/null +++ b/src/components/IconSupervisedUserCircle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSupervisedUserCircle: React.FC = (props) => ( + + + + +) + +export { IconSupervisedUserCircle } diff --git a/src/components/IconSupervisorAccount.tsx b/src/components/IconSupervisorAccount.tsx new file mode 100644 index 000000000..4651cd461 --- /dev/null +++ b/src/components/IconSupervisorAccount.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSupervisorAccount: React.FC = (props) => ( + + + + +) + +export { IconSupervisorAccount } diff --git a/src/components/IconSupport.tsx b/src/components/IconSupport.tsx new file mode 100644 index 000000000..f0be247a8 --- /dev/null +++ b/src/components/IconSupport.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconSupport: React.FC = (props) => ( + + + + + + + + +) + +export { IconSupport } diff --git a/src/components/IconSupportAgent.tsx b/src/components/IconSupportAgent.tsx new file mode 100644 index 000000000..1f67d9e3b --- /dev/null +++ b/src/components/IconSupportAgent.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconSupportAgent: React.FC = (props) => ( + + + + + + + + + + + + + +) + +export { IconSupportAgent } diff --git a/src/components/IconSurroundSound.tsx b/src/components/IconSurroundSound.tsx new file mode 100644 index 000000000..ca23a7c50 --- /dev/null +++ b/src/components/IconSurroundSound.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSurroundSound: React.FC = (props) => ( + + + + +) + +export { IconSurroundSound } diff --git a/src/components/IconSwapCalls.tsx b/src/components/IconSwapCalls.tsx new file mode 100644 index 000000000..4bbb84d09 --- /dev/null +++ b/src/components/IconSwapCalls.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwapCalls: React.FC = (props) => ( + + + + +) + +export { IconSwapCalls } diff --git a/src/components/IconSwapHoriz.tsx b/src/components/IconSwapHoriz.tsx new file mode 100644 index 000000000..0f5a5d6db --- /dev/null +++ b/src/components/IconSwapHoriz.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwapHoriz: React.FC = (props) => ( + + + + +) + +export { IconSwapHoriz } diff --git a/src/components/IconSwapHorizontalCircle.tsx b/src/components/IconSwapHorizontalCircle.tsx new file mode 100644 index 000000000..21c6c46f7 --- /dev/null +++ b/src/components/IconSwapHorizontalCircle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwapHorizontalCircle: React.FC = (props) => ( + + + + +) + +export { IconSwapHorizontalCircle } diff --git a/src/components/IconSwapVert.tsx b/src/components/IconSwapVert.tsx new file mode 100644 index 000000000..1a7fd7eef --- /dev/null +++ b/src/components/IconSwapVert.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwapVert: React.FC = (props) => ( + + + + +) + +export { IconSwapVert } diff --git a/src/components/IconSwapVerticalCircle.tsx b/src/components/IconSwapVerticalCircle.tsx new file mode 100644 index 000000000..da8b4b42b --- /dev/null +++ b/src/components/IconSwapVerticalCircle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwapVerticalCircle: React.FC = (props) => ( + + + + +) + +export { IconSwapVerticalCircle } diff --git a/src/components/IconSwitchCamera.tsx b/src/components/IconSwitchCamera.tsx new file mode 100644 index 000000000..3a2c12b4f --- /dev/null +++ b/src/components/IconSwitchCamera.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwitchCamera: React.FC = (props) => ( + + + + +) + +export { IconSwitchCamera } diff --git a/src/components/IconSwitchLeft.tsx b/src/components/IconSwitchLeft.tsx new file mode 100644 index 000000000..9503c42f2 --- /dev/null +++ b/src/components/IconSwitchLeft.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwitchLeft: React.FC = (props) => ( + + + + +) + +export { IconSwitchLeft } diff --git a/src/components/IconSwitchRight.tsx b/src/components/IconSwitchRight.tsx new file mode 100644 index 000000000..be441447a --- /dev/null +++ b/src/components/IconSwitchRight.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwitchRight: React.FC = (props) => ( + + + + +) + +export { IconSwitchRight } diff --git a/src/components/IconSwitchVideo.tsx b/src/components/IconSwitchVideo.tsx new file mode 100644 index 000000000..139e5221d --- /dev/null +++ b/src/components/IconSwitchVideo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwitchVideo: React.FC = (props) => ( + + + + +) + +export { IconSwitchVideo } diff --git a/src/components/IconSync.tsx b/src/components/IconSync.tsx new file mode 100644 index 000000000..3d0b6730f --- /dev/null +++ b/src/components/IconSync.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSync: React.FC = (props) => ( + + + + +) + +export { IconSync } diff --git a/src/components/IconSyncAlt.tsx b/src/components/IconSyncAlt.tsx new file mode 100644 index 000000000..14229b6a8 --- /dev/null +++ b/src/components/IconSyncAlt.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconSyncAlt: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconSyncAlt } diff --git a/src/components/IconSyncDisabled.tsx b/src/components/IconSyncDisabled.tsx new file mode 100644 index 000000000..9f19c57fe --- /dev/null +++ b/src/components/IconSyncDisabled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSyncDisabled: React.FC = (props) => ( + + + + +) + +export { IconSyncDisabled } diff --git a/src/components/IconSyncProblem.tsx b/src/components/IconSyncProblem.tsx new file mode 100644 index 000000000..66818fcdf --- /dev/null +++ b/src/components/IconSyncProblem.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSyncProblem: React.FC = (props) => ( + + + + +) + +export { IconSyncProblem } diff --git a/src/components/IconSystemUpdate.tsx b/src/components/IconSystemUpdate.tsx new file mode 100644 index 000000000..c83d0ab0a --- /dev/null +++ b/src/components/IconSystemUpdate.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSystemUpdate: React.FC = (props) => ( + + + + +) + +export { IconSystemUpdate } diff --git a/src/components/IconSystemUpdateAlt.tsx b/src/components/IconSystemUpdateAlt.tsx new file mode 100644 index 000000000..db14fdad8 --- /dev/null +++ b/src/components/IconSystemUpdateAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSystemUpdateAlt: React.FC = (props) => ( + + + + +) + +export { IconSystemUpdateAlt } diff --git a/src/components/IconTab.tsx b/src/components/IconTab.tsx new file mode 100644 index 000000000..169e019f8 --- /dev/null +++ b/src/components/IconTab.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTab: React.FC = (props) => ( + + + + +) + +export { IconTab } diff --git a/src/components/IconTabUnselected.tsx b/src/components/IconTabUnselected.tsx new file mode 100644 index 000000000..8c221715d --- /dev/null +++ b/src/components/IconTabUnselected.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTabUnselected: React.FC = (props) => ( + + + + +) + +export { IconTabUnselected } diff --git a/src/components/IconTableChart.tsx b/src/components/IconTableChart.tsx new file mode 100644 index 000000000..896779585 --- /dev/null +++ b/src/components/IconTableChart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTableChart: React.FC = (props) => ( + + + + +) + +export { IconTableChart } diff --git a/src/components/IconTableRows.tsx b/src/components/IconTableRows.tsx new file mode 100644 index 000000000..b2eace44a --- /dev/null +++ b/src/components/IconTableRows.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconTableRows: React.FC = (props) => ( + + + + + + +) + +export { IconTableRows } diff --git a/src/components/IconTableView.tsx b/src/components/IconTableView.tsx new file mode 100644 index 000000000..b1554324f --- /dev/null +++ b/src/components/IconTableView.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconTableView: React.FC = (props) => ( + + + + + + +) + +export { IconTableView } diff --git a/src/components/IconTablet.tsx b/src/components/IconTablet.tsx new file mode 100644 index 000000000..8b0448adc --- /dev/null +++ b/src/components/IconTablet.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTablet: React.FC = (props) => ( + + + + +) + +export { IconTablet } diff --git a/src/components/IconTabletAndroid.tsx b/src/components/IconTabletAndroid.tsx new file mode 100644 index 000000000..66a44592c --- /dev/null +++ b/src/components/IconTabletAndroid.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconTabletAndroid: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconTabletAndroid } diff --git a/src/components/IconTabletMac.tsx b/src/components/IconTabletMac.tsx new file mode 100644 index 000000000..8d40dafb9 --- /dev/null +++ b/src/components/IconTabletMac.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { IconProps } from './types' +const IconTabletMac: React.FC = (props) => ( + + + +) + +export { IconTabletMac } diff --git a/src/components/IconTagFaces.tsx b/src/components/IconTagFaces.tsx new file mode 100644 index 000000000..1e7ad328e --- /dev/null +++ b/src/components/IconTagFaces.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTagFaces: React.FC = (props) => ( + + + + +) + +export { IconTagFaces } diff --git a/src/components/IconTapAndPlay.tsx b/src/components/IconTapAndPlay.tsx new file mode 100644 index 000000000..5aa4d1a36 --- /dev/null +++ b/src/components/IconTapAndPlay.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTapAndPlay: React.FC = (props) => ( + + + + +) + +export { IconTapAndPlay } diff --git a/src/components/IconTapas.tsx b/src/components/IconTapas.tsx new file mode 100644 index 000000000..1a6372f63 --- /dev/null +++ b/src/components/IconTapas.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconTapas: React.FC = (props) => ( + + + + +) + +export { IconTapas } diff --git a/src/components/IconTerrain.tsx b/src/components/IconTerrain.tsx new file mode 100644 index 000000000..31fc80611 --- /dev/null +++ b/src/components/IconTerrain.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTerrain: React.FC = (props) => ( + + + + +) + +export { IconTerrain } diff --git a/src/components/IconTextFields.tsx b/src/components/IconTextFields.tsx new file mode 100644 index 000000000..d4cbae6f6 --- /dev/null +++ b/src/components/IconTextFields.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextFields: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconTextFields } diff --git a/src/components/IconTextFormat.tsx b/src/components/IconTextFormat.tsx new file mode 100644 index 000000000..bb4378a70 --- /dev/null +++ b/src/components/IconTextFormat.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextFormat: React.FC = (props) => ( + + + + +) + +export { IconTextFormat } diff --git a/src/components/IconTextRotateUp.tsx b/src/components/IconTextRotateUp.tsx new file mode 100644 index 000000000..aa2afaf2d --- /dev/null +++ b/src/components/IconTextRotateUp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextRotateUp: React.FC = (props) => ( + + + + +) + +export { IconTextRotateUp } diff --git a/src/components/IconTextRotateVertical.tsx b/src/components/IconTextRotateVertical.tsx new file mode 100644 index 000000000..000a08ba5 --- /dev/null +++ b/src/components/IconTextRotateVertical.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextRotateVertical: React.FC = (props) => ( + + + + +) + +export { IconTextRotateVertical } diff --git a/src/components/IconTextRotationAngledown.tsx b/src/components/IconTextRotationAngledown.tsx new file mode 100644 index 000000000..63509fb17 --- /dev/null +++ b/src/components/IconTextRotationAngledown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextRotationAngledown: React.FC = (props) => ( + + + + +) + +export { IconTextRotationAngledown } diff --git a/src/components/IconTextRotationAngleup.tsx b/src/components/IconTextRotationAngleup.tsx new file mode 100644 index 000000000..e7ca932a2 --- /dev/null +++ b/src/components/IconTextRotationAngleup.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextRotationAngleup: React.FC = (props) => ( + + + + +) + +export { IconTextRotationAngleup } diff --git a/src/components/IconTextRotationDown.tsx b/src/components/IconTextRotationDown.tsx new file mode 100644 index 000000000..47613037b --- /dev/null +++ b/src/components/IconTextRotationDown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextRotationDown: React.FC = (props) => ( + + + + +) + +export { IconTextRotationDown } diff --git a/src/components/IconTextRotationNone.tsx b/src/components/IconTextRotationNone.tsx new file mode 100644 index 000000000..bf8367fc3 --- /dev/null +++ b/src/components/IconTextRotationNone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextRotationNone: React.FC = (props) => ( + + + + +) + +export { IconTextRotationNone } diff --git a/src/components/IconTextSnippet.tsx b/src/components/IconTextSnippet.tsx new file mode 100644 index 000000000..c44d67c7f --- /dev/null +++ b/src/components/IconTextSnippet.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextSnippet: React.FC = (props) => ( + + + + + + +) + +export { IconTextSnippet } diff --git a/src/components/IconTextsms.tsx b/src/components/IconTextsms.tsx new file mode 100644 index 000000000..9801d6532 --- /dev/null +++ b/src/components/IconTextsms.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextsms: React.FC = (props) => ( + + + + +) + +export { IconTextsms } diff --git a/src/components/IconTexture.tsx b/src/components/IconTexture.tsx new file mode 100644 index 000000000..58cf173e3 --- /dev/null +++ b/src/components/IconTexture.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTexture: React.FC = (props) => ( + + + + +) + +export { IconTexture } diff --git a/src/components/IconTheaters.tsx b/src/components/IconTheaters.tsx new file mode 100644 index 000000000..acdba4590 --- /dev/null +++ b/src/components/IconTheaters.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTheaters: React.FC = (props) => ( + + + + +) + +export { IconTheaters } diff --git a/src/components/IconThumbDown.tsx b/src/components/IconThumbDown.tsx new file mode 100644 index 000000000..820822370 --- /dev/null +++ b/src/components/IconThumbDown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconThumbDown: React.FC = (props) => ( + + + + +) + +export { IconThumbDown } diff --git a/src/components/IconThumbDownAlt.tsx b/src/components/IconThumbDownAlt.tsx new file mode 100644 index 000000000..a9849ab1f --- /dev/null +++ b/src/components/IconThumbDownAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconThumbDownAlt: React.FC = (props) => ( + + + + +) + +export { IconThumbDownAlt } diff --git a/src/components/IconThumbUp.tsx b/src/components/IconThumbUp.tsx new file mode 100644 index 000000000..e3acb4b59 --- /dev/null +++ b/src/components/IconThumbUp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconThumbUp: React.FC = (props) => ( + + + + +) + +export { IconThumbUp } diff --git a/src/components/IconThumbUpAlt.tsx b/src/components/IconThumbUpAlt.tsx new file mode 100644 index 000000000..717fc6bc4 --- /dev/null +++ b/src/components/IconThumbUpAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconThumbUpAlt: React.FC = (props) => ( + + + + +) + +export { IconThumbUpAlt } diff --git a/src/components/IconThumbsUpDown.tsx b/src/components/IconThumbsUpDown.tsx new file mode 100644 index 000000000..f12ae88af --- /dev/null +++ b/src/components/IconThumbsUpDown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconThumbsUpDown: React.FC = (props) => ( + + + + +) + +export { IconThumbsUpDown } diff --git a/src/components/IconTimeToLeave.tsx b/src/components/IconTimeToLeave.tsx new file mode 100644 index 000000000..f2db6dc5e --- /dev/null +++ b/src/components/IconTimeToLeave.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTimeToLeave: React.FC = (props) => ( + + + + +) + +export { IconTimeToLeave } diff --git a/src/components/IconTimelapse.tsx b/src/components/IconTimelapse.tsx new file mode 100644 index 000000000..f768f4bf4 --- /dev/null +++ b/src/components/IconTimelapse.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTimelapse: React.FC = (props) => ( + + + + +) + +export { IconTimelapse } diff --git a/src/components/IconTimeline.tsx b/src/components/IconTimeline.tsx new file mode 100644 index 000000000..7b8dce965 --- /dev/null +++ b/src/components/IconTimeline.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconTimeline: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconTimeline } diff --git a/src/components/IconTimer.tsx b/src/components/IconTimer.tsx new file mode 100644 index 000000000..7cce18a34 --- /dev/null +++ b/src/components/IconTimer.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTimer: React.FC = (props) => ( + + + + +) + +export { IconTimer } diff --git a/src/components/IconTimer10.tsx b/src/components/IconTimer10.tsx new file mode 100644 index 000000000..6a3707e9f --- /dev/null +++ b/src/components/IconTimer10.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTimer10: React.FC = (props) => ( + + + + +) + +export { IconTimer10 } diff --git a/src/components/IconTimer3.tsx b/src/components/IconTimer3.tsx new file mode 100644 index 000000000..762b9c6d7 --- /dev/null +++ b/src/components/IconTimer3.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTimer3: React.FC = (props) => ( + + + + +) + +export { IconTimer3 } diff --git a/src/components/IconTimerOff.tsx b/src/components/IconTimerOff.tsx new file mode 100644 index 000000000..ba9f8ead6 --- /dev/null +++ b/src/components/IconTimerOff.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconTimerOff: React.FC = (props) => ( + + + + +) + +export { IconTimerOff } diff --git a/src/components/IconTitle.tsx b/src/components/IconTitle.tsx new file mode 100644 index 000000000..1e5a67824 --- /dev/null +++ b/src/components/IconTitle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTitle: React.FC = (props) => ( + + + + +) + +export { IconTitle } diff --git a/src/components/IconToc.tsx b/src/components/IconToc.tsx new file mode 100644 index 000000000..51c857d6c --- /dev/null +++ b/src/components/IconToc.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconToc: React.FC = (props) => ( + + + + +) + +export { IconToc } diff --git a/src/components/IconToday.tsx b/src/components/IconToday.tsx new file mode 100644 index 000000000..d27c1655a --- /dev/null +++ b/src/components/IconToday.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconToday: React.FC = (props) => ( + + + + +) + +export { IconToday } diff --git a/src/components/IconToggleOff.tsx b/src/components/IconToggleOff.tsx new file mode 100644 index 000000000..466e81481 --- /dev/null +++ b/src/components/IconToggleOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconToggleOff: React.FC = (props) => ( + + + + +) + +export { IconToggleOff } diff --git a/src/components/IconToggleOn.tsx b/src/components/IconToggleOn.tsx new file mode 100644 index 000000000..ccc5b6423 --- /dev/null +++ b/src/components/IconToggleOn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconToggleOn: React.FC = (props) => ( + + + + +) + +export { IconToggleOn } diff --git a/src/components/IconToll.tsx b/src/components/IconToll.tsx new file mode 100644 index 000000000..bb9d9a1eb --- /dev/null +++ b/src/components/IconToll.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconToll: React.FC = (props) => ( + + + + + +) + +export { IconToll } diff --git a/src/components/IconTonality.tsx b/src/components/IconTonality.tsx new file mode 100644 index 000000000..a3ae2905a --- /dev/null +++ b/src/components/IconTonality.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTonality: React.FC = (props) => ( + + + + +) + +export { IconTonality } diff --git a/src/components/IconTopic.tsx b/src/components/IconTopic.tsx new file mode 100644 index 000000000..55fc0b983 --- /dev/null +++ b/src/components/IconTopic.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconTopic: React.FC = (props) => ( + + + + + + +) + +export { IconTopic } diff --git a/src/components/IconTouchApp.tsx b/src/components/IconTouchApp.tsx new file mode 100644 index 000000000..9590b1ed3 --- /dev/null +++ b/src/components/IconTouchApp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconTouchApp: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconTouchApp } diff --git a/src/components/IconTour.tsx b/src/components/IconTour.tsx new file mode 100644 index 000000000..359b8b949 --- /dev/null +++ b/src/components/IconTour.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTour: React.FC = (props) => ( + + + + +) + +export { IconTour } diff --git a/src/components/IconToys.tsx b/src/components/IconToys.tsx new file mode 100644 index 000000000..0a11eb01e --- /dev/null +++ b/src/components/IconToys.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconToys: React.FC = (props) => ( + + + + +) + +export { IconToys } diff --git a/src/components/IconTrackChanges.tsx b/src/components/IconTrackChanges.tsx new file mode 100644 index 000000000..d5eeb34ce --- /dev/null +++ b/src/components/IconTrackChanges.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTrackChanges: React.FC = (props) => ( + + + + +) + +export { IconTrackChanges } diff --git a/src/components/IconTraffic.tsx b/src/components/IconTraffic.tsx new file mode 100644 index 000000000..28b9d894f --- /dev/null +++ b/src/components/IconTraffic.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTraffic: React.FC = (props) => ( + + + + +) + +export { IconTraffic } diff --git a/src/components/IconTrain.tsx b/src/components/IconTrain.tsx new file mode 100644 index 000000000..c9193d5c7 --- /dev/null +++ b/src/components/IconTrain.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTrain: React.FC = (props) => ( + + + + +) + +export { IconTrain } diff --git a/src/components/IconTram.tsx b/src/components/IconTram.tsx new file mode 100644 index 000000000..a13258fd1 --- /dev/null +++ b/src/components/IconTram.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTram: React.FC = (props) => ( + + + + +) + +export { IconTram } diff --git a/src/components/IconTransferWithinAStation.tsx b/src/components/IconTransferWithinAStation.tsx new file mode 100644 index 000000000..289158b9c --- /dev/null +++ b/src/components/IconTransferWithinAStation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTransferWithinAStation: React.FC = (props) => ( + + + + +) + +export { IconTransferWithinAStation } diff --git a/src/components/IconTransform.tsx b/src/components/IconTransform.tsx new file mode 100644 index 000000000..781105436 --- /dev/null +++ b/src/components/IconTransform.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTransform: React.FC = (props) => ( + + + + +) + +export { IconTransform } diff --git a/src/components/IconTransitEnterexit.tsx b/src/components/IconTransitEnterexit.tsx new file mode 100644 index 000000000..cb39753ce --- /dev/null +++ b/src/components/IconTransitEnterexit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTransitEnterexit: React.FC = (props) => ( + + + + +) + +export { IconTransitEnterexit } diff --git a/src/components/IconTranslate.tsx b/src/components/IconTranslate.tsx new file mode 100644 index 000000000..d813dd97c --- /dev/null +++ b/src/components/IconTranslate.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTranslate: React.FC = (props) => ( + + + + +) + +export { IconTranslate } diff --git a/src/components/IconTrendingDown.tsx b/src/components/IconTrendingDown.tsx new file mode 100644 index 000000000..e3bf1ac1d --- /dev/null +++ b/src/components/IconTrendingDown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTrendingDown: React.FC = (props) => ( + + + + +) + +export { IconTrendingDown } diff --git a/src/components/IconTrendingFlat.tsx b/src/components/IconTrendingFlat.tsx new file mode 100644 index 000000000..48b95ec0f --- /dev/null +++ b/src/components/IconTrendingFlat.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTrendingFlat: React.FC = (props) => ( + + + + +) + +export { IconTrendingFlat } diff --git a/src/components/IconTrendingUp.tsx b/src/components/IconTrendingUp.tsx new file mode 100644 index 000000000..94e1caa3a --- /dev/null +++ b/src/components/IconTrendingUp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTrendingUp: React.FC = (props) => ( + + + + +) + +export { IconTrendingUp } diff --git a/src/components/IconTripOrigin.tsx b/src/components/IconTripOrigin.tsx new file mode 100644 index 000000000..4d2253e90 --- /dev/null +++ b/src/components/IconTripOrigin.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconTripOrigin: React.FC = (props) => ( + + + + + +) + +export { IconTripOrigin } diff --git a/src/components/IconTty.tsx b/src/components/IconTty.tsx new file mode 100644 index 000000000..c8ebb8b50 --- /dev/null +++ b/src/components/IconTty.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconTty: React.FC = (props) => ( + + + + + + +) + +export { IconTty } diff --git a/src/components/IconTune.tsx b/src/components/IconTune.tsx new file mode 100644 index 000000000..5494407bc --- /dev/null +++ b/src/components/IconTune.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTune: React.FC = (props) => ( + + + + +) + +export { IconTune } diff --git a/src/components/IconTurnedIn.tsx b/src/components/IconTurnedIn.tsx new file mode 100644 index 000000000..1803d1c50 --- /dev/null +++ b/src/components/IconTurnedIn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTurnedIn: React.FC = (props) => ( + + + + +) + +export { IconTurnedIn } diff --git a/src/components/IconTurnedInNot.tsx b/src/components/IconTurnedInNot.tsx new file mode 100644 index 000000000..61567d27c --- /dev/null +++ b/src/components/IconTurnedInNot.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTurnedInNot: React.FC = (props) => ( + + + + +) + +export { IconTurnedInNot } diff --git a/src/components/IconTv.tsx b/src/components/IconTv.tsx new file mode 100644 index 000000000..4bf072b24 --- /dev/null +++ b/src/components/IconTv.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTv: React.FC = (props) => ( + + + + +) + +export { IconTv } diff --git a/src/components/IconTvOff.tsx b/src/components/IconTvOff.tsx new file mode 100644 index 000000000..2d30c9237 --- /dev/null +++ b/src/components/IconTvOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTvOff: React.FC = (props) => ( + + + + +) + +export { IconTvOff } diff --git a/src/components/IconTwoWheeler.tsx b/src/components/IconTwoWheeler.tsx new file mode 100644 index 000000000..d07c5cab5 --- /dev/null +++ b/src/components/IconTwoWheeler.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconTwoWheeler: React.FC = (props) => ( + + + + + + +) + +export { IconTwoWheeler } diff --git a/src/components/IconUmbrella.tsx b/src/components/IconUmbrella.tsx new file mode 100644 index 000000000..df3ec1258 --- /dev/null +++ b/src/components/IconUmbrella.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconUmbrella: React.FC = (props) => ( + + + + + + +) + +export { IconUmbrella } diff --git a/src/components/IconUnarchive.tsx b/src/components/IconUnarchive.tsx new file mode 100644 index 000000000..35d583371 --- /dev/null +++ b/src/components/IconUnarchive.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconUnarchive: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconUnarchive } diff --git a/src/components/IconUndo.tsx b/src/components/IconUndo.tsx new file mode 100644 index 000000000..209427c48 --- /dev/null +++ b/src/components/IconUndo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconUndo: React.FC = (props) => ( + + + + +) + +export { IconUndo } diff --git a/src/components/IconUnfoldLess.tsx b/src/components/IconUnfoldLess.tsx new file mode 100644 index 000000000..17881376e --- /dev/null +++ b/src/components/IconUnfoldLess.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconUnfoldLess: React.FC = (props) => ( + + + + +) + +export { IconUnfoldLess } diff --git a/src/components/IconUnfoldMore.tsx b/src/components/IconUnfoldMore.tsx new file mode 100644 index 000000000..fed8f687a --- /dev/null +++ b/src/components/IconUnfoldMore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconUnfoldMore: React.FC = (props) => ( + + + + +) + +export { IconUnfoldMore } diff --git a/src/components/IconUnpublished.tsx b/src/components/IconUnpublished.tsx new file mode 100644 index 000000000..4e35cc619 --- /dev/null +++ b/src/components/IconUnpublished.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconUnpublished: React.FC = (props) => ( + + + + +) + +export { IconUnpublished } diff --git a/src/components/IconUnsubscribe.tsx b/src/components/IconUnsubscribe.tsx new file mode 100644 index 000000000..97eb0100b --- /dev/null +++ b/src/components/IconUnsubscribe.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { IconProps } from './types' +const IconUnsubscribe: React.FC = (props) => ( + + + +) + +export { IconUnsubscribe } diff --git a/src/components/IconUpdate.tsx b/src/components/IconUpdate.tsx new file mode 100644 index 000000000..eba07660a --- /dev/null +++ b/src/components/IconUpdate.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconUpdate: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconUpdate } diff --git a/src/components/IconUpdateDisabled.tsx b/src/components/IconUpdateDisabled.tsx new file mode 100644 index 000000000..22ca9455f --- /dev/null +++ b/src/components/IconUpdateDisabled.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconUpdateDisabled: React.FC = (props) => ( + + + + + + +) + +export { IconUpdateDisabled } diff --git a/src/components/IconUpgrade.tsx b/src/components/IconUpgrade.tsx new file mode 100644 index 000000000..618e88dc6 --- /dev/null +++ b/src/components/IconUpgrade.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconUpgrade: React.FC = (props) => ( + + + + + + +) + +export { IconUpgrade } diff --git a/src/components/IconUsb.tsx b/src/components/IconUsb.tsx new file mode 100644 index 000000000..e2d890acd --- /dev/null +++ b/src/components/IconUsb.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconUsb: React.FC = (props) => ( + + + + +) + +export { IconUsb } diff --git a/src/components/IconVerified.tsx b/src/components/IconVerified.tsx new file mode 100644 index 000000000..821dca8be --- /dev/null +++ b/src/components/IconVerified.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconVerified: React.FC = (props) => ( + + + + + + + + +) + +export { IconVerified } diff --git a/src/components/IconVerifiedUser.tsx b/src/components/IconVerifiedUser.tsx new file mode 100644 index 000000000..1cd40d71b --- /dev/null +++ b/src/components/IconVerifiedUser.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVerifiedUser: React.FC = (props) => ( + + + + +) + +export { IconVerifiedUser } diff --git a/src/components/IconVerticalAlignBottom.tsx b/src/components/IconVerticalAlignBottom.tsx new file mode 100644 index 000000000..dd2ced3f3 --- /dev/null +++ b/src/components/IconVerticalAlignBottom.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVerticalAlignBottom: React.FC = (props) => ( + + + + +) + +export { IconVerticalAlignBottom } diff --git a/src/components/IconVerticalAlignCenter.tsx b/src/components/IconVerticalAlignCenter.tsx new file mode 100644 index 000000000..559175626 --- /dev/null +++ b/src/components/IconVerticalAlignCenter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVerticalAlignCenter: React.FC = (props) => ( + + + + +) + +export { IconVerticalAlignCenter } diff --git a/src/components/IconVerticalAlignTop.tsx b/src/components/IconVerticalAlignTop.tsx new file mode 100644 index 000000000..122ef70f4 --- /dev/null +++ b/src/components/IconVerticalAlignTop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVerticalAlignTop: React.FC = (props) => ( + + + + +) + +export { IconVerticalAlignTop } diff --git a/src/components/IconVerticalDistribute.tsx b/src/components/IconVerticalDistribute.tsx new file mode 100644 index 000000000..659069aab --- /dev/null +++ b/src/components/IconVerticalDistribute.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconVerticalDistribute: React.FC = (props) => ( + + + + +) + +export { IconVerticalDistribute } diff --git a/src/components/IconVerticalSplit.tsx b/src/components/IconVerticalSplit.tsx new file mode 100644 index 000000000..b9055468d --- /dev/null +++ b/src/components/IconVerticalSplit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVerticalSplit: React.FC = (props) => ( + + + + +) + +export { IconVerticalSplit } diff --git a/src/components/IconVibration.tsx b/src/components/IconVibration.tsx new file mode 100644 index 000000000..85c980b98 --- /dev/null +++ b/src/components/IconVibration.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVibration: React.FC = (props) => ( + + + + +) + +export { IconVibration } diff --git a/src/components/IconVideoCall.tsx b/src/components/IconVideoCall.tsx new file mode 100644 index 000000000..d725e4290 --- /dev/null +++ b/src/components/IconVideoCall.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVideoCall: React.FC = (props) => ( + + + + +) + +export { IconVideoCall } diff --git a/src/components/IconVideoLabel.tsx b/src/components/IconVideoLabel.tsx new file mode 100644 index 000000000..cf8a3b3fd --- /dev/null +++ b/src/components/IconVideoLabel.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVideoLabel: React.FC = (props) => ( + + + + +) + +export { IconVideoLabel } diff --git a/src/components/IconVideoLibrary.tsx b/src/components/IconVideoLibrary.tsx new file mode 100644 index 000000000..c16877908 --- /dev/null +++ b/src/components/IconVideoLibrary.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVideoLibrary: React.FC = (props) => ( + + + + +) + +export { IconVideoLibrary } diff --git a/src/components/IconVideoSettings.tsx b/src/components/IconVideoSettings.tsx new file mode 100644 index 000000000..25963a2a2 --- /dev/null +++ b/src/components/IconVideoSettings.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconVideoSettings: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconVideoSettings } diff --git a/src/components/IconVideocam.tsx b/src/components/IconVideocam.tsx new file mode 100644 index 000000000..bdd35e50e --- /dev/null +++ b/src/components/IconVideocam.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVideocam: React.FC = (props) => ( + + + + +) + +export { IconVideocam } diff --git a/src/components/IconVideocamOff.tsx b/src/components/IconVideocamOff.tsx new file mode 100644 index 000000000..57bf7caf7 --- /dev/null +++ b/src/components/IconVideocamOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVideocamOff: React.FC = (props) => ( + + + + +) + +export { IconVideocamOff } diff --git a/src/components/IconVideogameAsset.tsx b/src/components/IconVideogameAsset.tsx new file mode 100644 index 000000000..ae68f0624 --- /dev/null +++ b/src/components/IconVideogameAsset.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconVideogameAsset: React.FC = (props) => ( + + + + +) + +export { IconVideogameAsset } diff --git a/src/components/IconViewAgenda.tsx b/src/components/IconViewAgenda.tsx new file mode 100644 index 000000000..4c988239e --- /dev/null +++ b/src/components/IconViewAgenda.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewAgenda: React.FC = (props) => ( + + + + +) + +export { IconViewAgenda } diff --git a/src/components/IconViewArray.tsx b/src/components/IconViewArray.tsx new file mode 100644 index 000000000..35d2013ad --- /dev/null +++ b/src/components/IconViewArray.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewArray: React.FC = (props) => ( + + + + +) + +export { IconViewArray } diff --git a/src/components/IconViewCarousel.tsx b/src/components/IconViewCarousel.tsx new file mode 100644 index 000000000..fc64ddca2 --- /dev/null +++ b/src/components/IconViewCarousel.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewCarousel: React.FC = (props) => ( + + + + +) + +export { IconViewCarousel } diff --git a/src/components/IconViewColumn.tsx b/src/components/IconViewColumn.tsx new file mode 100644 index 000000000..c167bda07 --- /dev/null +++ b/src/components/IconViewColumn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewColumn: React.FC = (props) => ( + + + + +) + +export { IconViewColumn } diff --git a/src/components/IconViewComfy.tsx b/src/components/IconViewComfy.tsx new file mode 100644 index 000000000..0147c0f89 --- /dev/null +++ b/src/components/IconViewComfy.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewComfy: React.FC = (props) => ( + + + + +) + +export { IconViewComfy } diff --git a/src/components/IconViewCompact.tsx b/src/components/IconViewCompact.tsx new file mode 100644 index 000000000..9d57d13d5 --- /dev/null +++ b/src/components/IconViewCompact.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewCompact: React.FC = (props) => ( + + + + +) + +export { IconViewCompact } diff --git a/src/components/IconViewDay.tsx b/src/components/IconViewDay.tsx new file mode 100644 index 000000000..c0f3cf1e4 --- /dev/null +++ b/src/components/IconViewDay.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewDay: React.FC = (props) => ( + + + + +) + +export { IconViewDay } diff --git a/src/components/IconViewHeadline.tsx b/src/components/IconViewHeadline.tsx new file mode 100644 index 000000000..870c390cf --- /dev/null +++ b/src/components/IconViewHeadline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewHeadline: React.FC = (props) => ( + + + + +) + +export { IconViewHeadline } diff --git a/src/components/IconViewList.tsx b/src/components/IconViewList.tsx new file mode 100644 index 000000000..5e884fe37 --- /dev/null +++ b/src/components/IconViewList.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewList: React.FC = (props) => ( + + + + +) + +export { IconViewList } diff --git a/src/components/IconViewModule.tsx b/src/components/IconViewModule.tsx new file mode 100644 index 000000000..49de3cdf0 --- /dev/null +++ b/src/components/IconViewModule.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewModule: React.FC = (props) => ( + + + + +) + +export { IconViewModule } diff --git a/src/components/IconViewQuilt.tsx b/src/components/IconViewQuilt.tsx new file mode 100644 index 000000000..170902d7a --- /dev/null +++ b/src/components/IconViewQuilt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewQuilt: React.FC = (props) => ( + + + + +) + +export { IconViewQuilt } diff --git a/src/components/IconViewSidebar.tsx b/src/components/IconViewSidebar.tsx new file mode 100644 index 000000000..770b9506b --- /dev/null +++ b/src/components/IconViewSidebar.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewSidebar: React.FC = (props) => ( + + + + + + +) + +export { IconViewSidebar } diff --git a/src/components/IconViewStream.tsx b/src/components/IconViewStream.tsx new file mode 100644 index 000000000..55ac5c4c3 --- /dev/null +++ b/src/components/IconViewStream.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewStream: React.FC = (props) => ( + + + + +) + +export { IconViewStream } diff --git a/src/components/IconViewWeek.tsx b/src/components/IconViewWeek.tsx new file mode 100644 index 000000000..8b5d43d1c --- /dev/null +++ b/src/components/IconViewWeek.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewWeek: React.FC = (props) => ( + + + + +) + +export { IconViewWeek } diff --git a/src/components/IconVignette.tsx b/src/components/IconVignette.tsx new file mode 100644 index 000000000..7b57342e3 --- /dev/null +++ b/src/components/IconVignette.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVignette: React.FC = (props) => ( + + + + +) + +export { IconVignette } diff --git a/src/components/IconVisibility.tsx b/src/components/IconVisibility.tsx new file mode 100644 index 000000000..a3fac4cff --- /dev/null +++ b/src/components/IconVisibility.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVisibility: React.FC = (props) => ( + + + + +) + +export { IconVisibility } diff --git a/src/components/IconVisibilityOff.tsx b/src/components/IconVisibilityOff.tsx new file mode 100644 index 000000000..320c8d49f --- /dev/null +++ b/src/components/IconVisibilityOff.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconVisibilityOff: React.FC = (props) => ( + + + + +) + +export { IconVisibilityOff } diff --git a/src/components/IconVoiceChat.tsx b/src/components/IconVoiceChat.tsx new file mode 100644 index 000000000..57220f666 --- /dev/null +++ b/src/components/IconVoiceChat.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVoiceChat: React.FC = (props) => ( + + + + +) + +export { IconVoiceChat } diff --git a/src/components/IconVoiceOverOff.tsx b/src/components/IconVoiceOverOff.tsx new file mode 100644 index 000000000..f2c2c3552 --- /dev/null +++ b/src/components/IconVoiceOverOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVoiceOverOff: React.FC = (props) => ( + + + + +) + +export { IconVoiceOverOff } diff --git a/src/components/IconVoicemail.tsx b/src/components/IconVoicemail.tsx new file mode 100644 index 000000000..f8f4e25db --- /dev/null +++ b/src/components/IconVoicemail.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVoicemail: React.FC = (props) => ( + + + + +) + +export { IconVoicemail } diff --git a/src/components/IconVolumeDown.tsx b/src/components/IconVolumeDown.tsx new file mode 100644 index 000000000..8422c0050 --- /dev/null +++ b/src/components/IconVolumeDown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVolumeDown: React.FC = (props) => ( + + + + +) + +export { IconVolumeDown } diff --git a/src/components/IconVolumeMute.tsx b/src/components/IconVolumeMute.tsx new file mode 100644 index 000000000..4a758544d --- /dev/null +++ b/src/components/IconVolumeMute.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVolumeMute: React.FC = (props) => ( + + + + +) + +export { IconVolumeMute } diff --git a/src/components/IconVolumeOff.tsx b/src/components/IconVolumeOff.tsx new file mode 100644 index 000000000..c86aa1f75 --- /dev/null +++ b/src/components/IconVolumeOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVolumeOff: React.FC = (props) => ( + + + + +) + +export { IconVolumeOff } diff --git a/src/components/IconVolumeUp.tsx b/src/components/IconVolumeUp.tsx new file mode 100644 index 000000000..f7f953f10 --- /dev/null +++ b/src/components/IconVolumeUp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVolumeUp: React.FC = (props) => ( + + + + +) + +export { IconVolumeUp } diff --git a/src/components/IconVpnKey.tsx b/src/components/IconVpnKey.tsx new file mode 100644 index 000000000..f24b6204a --- /dev/null +++ b/src/components/IconVpnKey.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVpnKey: React.FC = (props) => ( + + + + +) + +export { IconVpnKey } diff --git a/src/components/IconVpnLock.tsx b/src/components/IconVpnLock.tsx new file mode 100644 index 000000000..916a61744 --- /dev/null +++ b/src/components/IconVpnLock.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVpnLock: React.FC = (props) => ( + + + + +) + +export { IconVpnLock } diff --git a/src/components/IconWallpaper.tsx b/src/components/IconWallpaper.tsx new file mode 100644 index 000000000..ac6bc87d6 --- /dev/null +++ b/src/components/IconWallpaper.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWallpaper: React.FC = (props) => ( + + + + +) + +export { IconWallpaper } diff --git a/src/components/IconWarning.tsx b/src/components/IconWarning.tsx new file mode 100644 index 000000000..eb27810e7 --- /dev/null +++ b/src/components/IconWarning.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWarning: React.FC = (props) => ( + + + + +) + +export { IconWarning } diff --git a/src/components/IconWash.tsx b/src/components/IconWash.tsx new file mode 100644 index 000000000..3c1a24fe9 --- /dev/null +++ b/src/components/IconWash.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconWash: React.FC = (props) => ( + + + + + + +) + +export { IconWash } diff --git a/src/components/IconWatch.tsx b/src/components/IconWatch.tsx new file mode 100644 index 000000000..364d5df62 --- /dev/null +++ b/src/components/IconWatch.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWatch: React.FC = (props) => ( + + + + +) + +export { IconWatch } diff --git a/src/components/IconWatchLater.tsx b/src/components/IconWatchLater.tsx new file mode 100644 index 000000000..739874666 --- /dev/null +++ b/src/components/IconWatchLater.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconWatchLater: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconWatchLater } diff --git a/src/components/IconWaterDamage.tsx b/src/components/IconWaterDamage.tsx new file mode 100644 index 000000000..767e3eeea --- /dev/null +++ b/src/components/IconWaterDamage.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconWaterDamage: React.FC = (props) => ( + + + + +) + +export { IconWaterDamage } diff --git a/src/components/IconWaves.tsx b/src/components/IconWaves.tsx new file mode 100644 index 000000000..e62a10cd4 --- /dev/null +++ b/src/components/IconWaves.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { IconProps } from './types' +const IconWaves: React.FC = (props) => ( + + + +) + +export { IconWaves } diff --git a/src/components/IconWbAuto.tsx b/src/components/IconWbAuto.tsx new file mode 100644 index 000000000..98c9cee96 --- /dev/null +++ b/src/components/IconWbAuto.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWbAuto: React.FC = (props) => ( + + + + +) + +export { IconWbAuto } diff --git a/src/components/IconWbCloudy.tsx b/src/components/IconWbCloudy.tsx new file mode 100644 index 000000000..1ae7e1698 --- /dev/null +++ b/src/components/IconWbCloudy.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWbCloudy: React.FC = (props) => ( + + + + +) + +export { IconWbCloudy } diff --git a/src/components/IconWbIncandescent.tsx b/src/components/IconWbIncandescent.tsx new file mode 100644 index 000000000..5e9be7a59 --- /dev/null +++ b/src/components/IconWbIncandescent.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWbIncandescent: React.FC = (props) => ( + + + + +) + +export { IconWbIncandescent } diff --git a/src/components/IconWbIridescent.tsx b/src/components/IconWbIridescent.tsx new file mode 100644 index 000000000..3348e9ef5 --- /dev/null +++ b/src/components/IconWbIridescent.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWbIridescent: React.FC = (props) => ( + + + + +) + +export { IconWbIridescent } diff --git a/src/components/IconWbSunny.tsx b/src/components/IconWbSunny.tsx new file mode 100644 index 000000000..ecddcc35a --- /dev/null +++ b/src/components/IconWbSunny.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWbSunny: React.FC = (props) => ( + + + + +) + +export { IconWbSunny } diff --git a/src/components/IconWc.tsx b/src/components/IconWc.tsx new file mode 100644 index 000000000..08cc843e6 --- /dev/null +++ b/src/components/IconWc.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWc: React.FC = (props) => ( + + + + +) + +export { IconWc } diff --git a/src/components/IconWeb.tsx b/src/components/IconWeb.tsx new file mode 100644 index 000000000..2077a84c9 --- /dev/null +++ b/src/components/IconWeb.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWeb: React.FC = (props) => ( + + + + +) + +export { IconWeb } diff --git a/src/components/IconWebAsset.tsx b/src/components/IconWebAsset.tsx new file mode 100644 index 000000000..a21feb9e5 --- /dev/null +++ b/src/components/IconWebAsset.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWebAsset: React.FC = (props) => ( + + + + +) + +export { IconWebAsset } diff --git a/src/components/IconWeekend.tsx b/src/components/IconWeekend.tsx new file mode 100644 index 000000000..0572a843a --- /dev/null +++ b/src/components/IconWeekend.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconWeekend: React.FC = (props) => ( + + + + + + +) + +export { IconWeekend } diff --git a/src/components/IconWest.tsx b/src/components/IconWest.tsx new file mode 100644 index 000000000..028f256f4 --- /dev/null +++ b/src/components/IconWest.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconWest: React.FC = (props) => ( + + + + +) + +export { IconWest } diff --git a/src/components/IconWhatshot.tsx b/src/components/IconWhatshot.tsx new file mode 100644 index 000000000..d74b67f68 --- /dev/null +++ b/src/components/IconWhatshot.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWhatshot: React.FC = (props) => ( + + + + +) + +export { IconWhatshot } diff --git a/src/components/IconWheelchairPickup.tsx b/src/components/IconWheelchairPickup.tsx new file mode 100644 index 000000000..1cf8796c3 --- /dev/null +++ b/src/components/IconWheelchairPickup.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconWheelchairPickup: React.FC = (props) => ( + + + + + + +) + +export { IconWheelchairPickup } diff --git a/src/components/IconWhereToVote.tsx b/src/components/IconWhereToVote.tsx new file mode 100644 index 000000000..401d8edfe --- /dev/null +++ b/src/components/IconWhereToVote.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWhereToVote: React.FC = (props) => ( + + + + +) + +export { IconWhereToVote } diff --git a/src/components/IconWidgets.tsx b/src/components/IconWidgets.tsx new file mode 100644 index 000000000..da106c45c --- /dev/null +++ b/src/components/IconWidgets.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWidgets: React.FC = (props) => ( + + + + +) + +export { IconWidgets } diff --git a/src/components/IconWifi.tsx b/src/components/IconWifi.tsx new file mode 100644 index 000000000..fe56409d9 --- /dev/null +++ b/src/components/IconWifi.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWifi: React.FC = (props) => ( + + + + +) + +export { IconWifi } diff --git a/src/components/IconWifiCalling.tsx b/src/components/IconWifiCalling.tsx new file mode 100644 index 000000000..e4da70fd7 --- /dev/null +++ b/src/components/IconWifiCalling.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconWifiCalling: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconWifiCalling } diff --git a/src/components/IconWifiLock.tsx b/src/components/IconWifiLock.tsx new file mode 100644 index 000000000..4b0e3dfce --- /dev/null +++ b/src/components/IconWifiLock.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWifiLock: React.FC = (props) => ( + + + + +) + +export { IconWifiLock } diff --git a/src/components/IconWifiOff.tsx b/src/components/IconWifiOff.tsx new file mode 100644 index 000000000..0e03e5fb4 --- /dev/null +++ b/src/components/IconWifiOff.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconWifiOff: React.FC = (props) => ( + + + + +) + +export { IconWifiOff } diff --git a/src/components/IconWifiProtectedSetup.tsx b/src/components/IconWifiProtectedSetup.tsx new file mode 100644 index 000000000..c8cc0fa41 --- /dev/null +++ b/src/components/IconWifiProtectedSetup.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconWifiProtectedSetup: React.FC = (props) => ( + + + + + + + + + + + + + + + +) + +export { IconWifiProtectedSetup } diff --git a/src/components/IconWifiTethering.tsx b/src/components/IconWifiTethering.tsx new file mode 100644 index 000000000..684fc80ec --- /dev/null +++ b/src/components/IconWifiTethering.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWifiTethering: React.FC = (props) => ( + + + + +) + +export { IconWifiTethering } diff --git a/src/components/IconWineBar.tsx b/src/components/IconWineBar.tsx new file mode 100644 index 000000000..10a8478e2 --- /dev/null +++ b/src/components/IconWineBar.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconWineBar: React.FC = (props) => ( + + + + +) + +export { IconWineBar } diff --git a/src/components/IconWork.tsx b/src/components/IconWork.tsx new file mode 100644 index 000000000..86c9afe6f --- /dev/null +++ b/src/components/IconWork.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWork: React.FC = (props) => ( + + + + +) + +export { IconWork } diff --git a/src/components/IconWorkOff.tsx b/src/components/IconWorkOff.tsx new file mode 100644 index 000000000..4749054cb --- /dev/null +++ b/src/components/IconWorkOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWorkOff: React.FC = (props) => ( + + + + +) + +export { IconWorkOff } diff --git a/src/components/IconWorkOutline.tsx b/src/components/IconWorkOutline.tsx new file mode 100644 index 000000000..2bd23e7ed --- /dev/null +++ b/src/components/IconWorkOutline.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconWorkOutline: React.FC = (props) => ( + + + + +) + +export { IconWorkOutline } diff --git a/src/components/IconWrapText.tsx b/src/components/IconWrapText.tsx new file mode 100644 index 000000000..a3b27a89d --- /dev/null +++ b/src/components/IconWrapText.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWrapText: React.FC = (props) => ( + + + + +) + +export { IconWrapText } diff --git a/src/components/IconWrongLocation.tsx b/src/components/IconWrongLocation.tsx new file mode 100644 index 000000000..6af0e5a50 --- /dev/null +++ b/src/components/IconWrongLocation.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconWrongLocation: React.FC = (props) => ( + + + + + + + + + + + +) + +export { IconWrongLocation } diff --git a/src/components/IconWysiwyg.tsx b/src/components/IconWysiwyg.tsx new file mode 100644 index 000000000..afeb76270 --- /dev/null +++ b/src/components/IconWysiwyg.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconWysiwyg: React.FC = (props) => ( + + + + + + +) + +export { IconWysiwyg } diff --git a/src/components/IconYoutubeSearchedFor.tsx b/src/components/IconYoutubeSearchedFor.tsx new file mode 100644 index 000000000..bcd574e42 --- /dev/null +++ b/src/components/IconYoutubeSearchedFor.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconYoutubeSearchedFor: React.FC = (props) => ( + + + + +) + +export { IconYoutubeSearchedFor } diff --git a/src/components/IconZoomIn.tsx b/src/components/IconZoomIn.tsx new file mode 100644 index 000000000..08f90e1f7 --- /dev/null +++ b/src/components/IconZoomIn.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconZoomIn: React.FC = (props) => ( + + + + + +) + +export { IconZoomIn } diff --git a/src/components/IconZoomOut.tsx b/src/components/IconZoomOut.tsx new file mode 100644 index 000000000..3e06b69ee --- /dev/null +++ b/src/components/IconZoomOut.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconZoomOut: React.FC = (props) => ( + + + + +) + +export { IconZoomOut } diff --git a/src/components/IconZoomOutMap.tsx b/src/components/IconZoomOutMap.tsx new file mode 100644 index 000000000..13456ec3f --- /dev/null +++ b/src/components/IconZoomOutMap.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconZoomOutMap: React.FC = (props) => ( + + + + + + + + + + + + +) + +export { IconZoomOutMap } diff --git a/src/components/types.ts b/src/components/types.ts new file mode 100644 index 000000000..d512964ae --- /dev/null +++ b/src/components/types.ts @@ -0,0 +1,2 @@ +import React from 'react' +export type IconProps = React.SVGProps diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 000000000..f53e2bbf9 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,2637 @@ +import { Icon360 } from './components/Icon360' +import { Icon3dRotation } from './components/Icon3dRotation' +import { Icon4k } from './components/Icon4k' +import { Icon5g } from './components/Icon5g' +import { Icon6FtApart } from './components/Icon6FtApart' +import { IconAcUnit } from './components/IconAcUnit' +import { IconAccessAlarm } from './components/IconAccessAlarm' +import { IconAccessAlarms } from './components/IconAccessAlarms' +import { IconAccessTime } from './components/IconAccessTime' +import { IconAccessibility } from './components/IconAccessibility' +import { IconAccessibilityNew } from './components/IconAccessibilityNew' +import { IconAccessible } from './components/IconAccessible' +import { IconAccessibleForward } from './components/IconAccessibleForward' +import { IconAccountBalance } from './components/IconAccountBalance' +import { IconAccountBalanceWallet } from './components/IconAccountBalanceWallet' +import { IconAccountBox } from './components/IconAccountBox' +import { IconAccountCircle } from './components/IconAccountCircle' +import { IconAccountTree } from './components/IconAccountTree' +import { IconAdUnits } from './components/IconAdUnits' +import { IconAdb } from './components/IconAdb' +import { IconAdd } from './components/IconAdd' +import { IconAddAPhoto } from './components/IconAddAPhoto' +import { IconAddAlarm } from './components/IconAddAlarm' +import { IconAddAlert } from './components/IconAddAlert' +import { IconAddBox } from './components/IconAddBox' +import { IconAddBusiness } from './components/IconAddBusiness' +import { IconAddCircle } from './components/IconAddCircle' +import { IconAddCircleOutline } from './components/IconAddCircleOutline' +import { IconAddComment } from './components/IconAddComment' +import { IconAddIcCall } from './components/IconAddIcCall' +import { IconAddLocation } from './components/IconAddLocation' +import { IconAddLocationAlt } from './components/IconAddLocationAlt' +import { IconAddPhotoAlternate } from './components/IconAddPhotoAlternate' +import { IconAddRoad } from './components/IconAddRoad' +import { IconAddShoppingCart } from './components/IconAddShoppingCart' +import { IconAddTask } from './components/IconAddTask' +import { IconAddToHomeScreen } from './components/IconAddToHomeScreen' +import { IconAddToPhotos } from './components/IconAddToPhotos' +import { IconAddToQueue } from './components/IconAddToQueue' +import { IconAddchart } from './components/IconAddchart' +import { IconAdjust } from './components/IconAdjust' +import { IconAdminPanelSettings } from './components/IconAdminPanelSettings' +import { IconAgriculture } from './components/IconAgriculture' +import { IconAirlineSeatFlat } from './components/IconAirlineSeatFlat' +import { IconAirlineSeatFlatAngled } from './components/IconAirlineSeatFlatAngled' +import { IconAirlineSeatIndividualSuite } from './components/IconAirlineSeatIndividualSuite' +import { IconAirlineSeatLegroomExtra } from './components/IconAirlineSeatLegroomExtra' +import { IconAirlineSeatLegroomNormal } from './components/IconAirlineSeatLegroomNormal' +import { IconAirlineSeatLegroomReduced } from './components/IconAirlineSeatLegroomReduced' +import { IconAirlineSeatReclineExtra } from './components/IconAirlineSeatReclineExtra' +import { IconAirlineSeatReclineNormal } from './components/IconAirlineSeatReclineNormal' +import { IconAirplanemodeActive } from './components/IconAirplanemodeActive' +import { IconAirplanemodeInactive } from './components/IconAirplanemodeInactive' +import { IconAirplay } from './components/IconAirplay' +import { IconAirportShuttle } from './components/IconAirportShuttle' +import { IconAlarm } from './components/IconAlarm' +import { IconAlarmAdd } from './components/IconAlarmAdd' +import { IconAlarmOff } from './components/IconAlarmOff' +import { IconAlarmOn } from './components/IconAlarmOn' +import { IconAlbum } from './components/IconAlbum' +import { IconAlignHorizontalCenter } from './components/IconAlignHorizontalCenter' +import { IconAlignHorizontalLeft } from './components/IconAlignHorizontalLeft' +import { IconAlignHorizontalRight } from './components/IconAlignHorizontalRight' +import { IconAlignVerticalBottom } from './components/IconAlignVerticalBottom' +import { IconAlignVerticalCenter } from './components/IconAlignVerticalCenter' +import { IconAlignVerticalTop } from './components/IconAlignVerticalTop' +import { IconAllInbox } from './components/IconAllInbox' +import { IconAllInclusive } from './components/IconAllInclusive' +import { IconAllOut } from './components/IconAllOut' +import { IconAltRoute } from './components/IconAltRoute' +import { IconAlternateEmail } from './components/IconAlternateEmail' +import { IconAmpStories } from './components/IconAmpStories' +import { IconAnalytics } from './components/IconAnalytics' +import { IconAnchor } from './components/IconAnchor' +import { IconAndroid } from './components/IconAndroid' +import { IconAnnouncement } from './components/IconAnnouncement' +import { IconApartment } from './components/IconApartment' +import { IconApi } from './components/IconApi' +import { IconAppBlocking } from './components/IconAppBlocking' +import { IconAppSettingsAlt } from './components/IconAppSettingsAlt' +import { IconApps } from './components/IconApps' +import { IconArchitecture } from './components/IconArchitecture' +import { IconArchive } from './components/IconArchive' +import { IconArrowBack } from './components/IconArrowBack' +import { IconArrowBackIos } from './components/IconArrowBackIos' +import { IconArrowCircleDown } from './components/IconArrowCircleDown' +import { IconArrowCircleUp } from './components/IconArrowCircleUp' +import { IconArrowDownward } from './components/IconArrowDownward' +import { IconArrowDropDown } from './components/IconArrowDropDown' +import { IconArrowDropDownCircle } from './components/IconArrowDropDownCircle' +import { IconArrowDropUp } from './components/IconArrowDropUp' +import { IconArrowForward } from './components/IconArrowForward' +import { IconArrowForwardIos } from './components/IconArrowForwardIos' +import { IconArrowLeft } from './components/IconArrowLeft' +import { IconArrowRight } from './components/IconArrowRight' +import { IconArrowRightAlt } from './components/IconArrowRightAlt' +import { IconArrowUpward } from './components/IconArrowUpward' +import { IconArtTrack } from './components/IconArtTrack' +import { IconArticle } from './components/IconArticle' +import { IconAspectRatio } from './components/IconAspectRatio' +import { IconAssessment } from './components/IconAssessment' +import { IconAssignment } from './components/IconAssignment' +import { IconAssignmentInd } from './components/IconAssignmentInd' +import { IconAssignmentLate } from './components/IconAssignmentLate' +import { IconAssignmentReturn } from './components/IconAssignmentReturn' +import { IconAssignmentReturned } from './components/IconAssignmentReturned' +import { IconAssignmentTurnedIn } from './components/IconAssignmentTurnedIn' +import { IconAssistant } from './components/IconAssistant' +import { IconAssistantPhoto } from './components/IconAssistantPhoto' +import { IconAtm } from './components/IconAtm' +import { IconAttachEmail } from './components/IconAttachEmail' +import { IconAttachFile } from './components/IconAttachFile' +import { IconAttachMoney } from './components/IconAttachMoney' +import { IconAttachment } from './components/IconAttachment' +import { IconAudiotrack } from './components/IconAudiotrack' +import { IconAutoDelete } from './components/IconAutoDelete' +import { IconAutorenew } from './components/IconAutorenew' +import { IconAvTimer } from './components/IconAvTimer' +import { IconBabyChangingStation } from './components/IconBabyChangingStation' +import { IconBackpack } from './components/IconBackpack' +import { IconBackspace } from './components/IconBackspace' +import { IconBackup } from './components/IconBackup' +import { IconBackupTable } from './components/IconBackupTable' +import { IconBallot } from './components/IconBallot' +import { IconBarChart } from './components/IconBarChart' +import { IconBatchPrediction } from './components/IconBatchPrediction' +import { IconBathtub } from './components/IconBathtub' +import { IconBatteryAlert } from './components/IconBatteryAlert' +import { IconBatteryChargingFull } from './components/IconBatteryChargingFull' +import { IconBatteryFull } from './components/IconBatteryFull' +import { IconBatteryStd } from './components/IconBatteryStd' +import { IconBatteryUnknown } from './components/IconBatteryUnknown' +import { IconBeachAccess } from './components/IconBeachAccess' +import { IconBedtime } from './components/IconBedtime' +import { IconBeenhere } from './components/IconBeenhere' +import { IconBento } from './components/IconBento' +import { IconBikeScooter } from './components/IconBikeScooter' +import { IconBiotech } from './components/IconBiotech' +import { IconBlock } from './components/IconBlock' +import { IconBluetooth } from './components/IconBluetooth' +import { IconBluetoothAudio } from './components/IconBluetoothAudio' +import { IconBluetoothConnected } from './components/IconBluetoothConnected' +import { IconBluetoothDisabled } from './components/IconBluetoothDisabled' +import { IconBluetoothSearching } from './components/IconBluetoothSearching' +import { IconBlurCircular } from './components/IconBlurCircular' +import { IconBlurLinear } from './components/IconBlurLinear' +import { IconBlurOff } from './components/IconBlurOff' +import { IconBlurOn } from './components/IconBlurOn' +import { IconBook } from './components/IconBook' +import { IconBookOnline } from './components/IconBookOnline' +import { IconBookmark } from './components/IconBookmark' +import { IconBookmarkBorder } from './components/IconBookmarkBorder' +import { IconBookmarks } from './components/IconBookmarks' +import { IconBorderAll } from './components/IconBorderAll' +import { IconBorderBottom } from './components/IconBorderBottom' +import { IconBorderClear } from './components/IconBorderClear' +import { IconBorderHorizontal } from './components/IconBorderHorizontal' +import { IconBorderInner } from './components/IconBorderInner' +import { IconBorderLeft } from './components/IconBorderLeft' +import { IconBorderOuter } from './components/IconBorderOuter' +import { IconBorderRight } from './components/IconBorderRight' +import { IconBorderStyle } from './components/IconBorderStyle' +import { IconBorderTop } from './components/IconBorderTop' +import { IconBorderVertical } from './components/IconBorderVertical' +import { IconBrandingWatermark } from './components/IconBrandingWatermark' +import { IconBrightness1 } from './components/IconBrightness1' +import { IconBrightness2 } from './components/IconBrightness2' +import { IconBrightness3 } from './components/IconBrightness3' +import { IconBrightness4 } from './components/IconBrightness4' +import { IconBrightness5 } from './components/IconBrightness5' +import { IconBrightness6 } from './components/IconBrightness6' +import { IconBrightness7 } from './components/IconBrightness7' +import { IconBrightnessAuto } from './components/IconBrightnessAuto' +import { IconBrightnessHigh } from './components/IconBrightnessHigh' +import { IconBrightnessLow } from './components/IconBrightnessLow' +import { IconBrightnessMedium } from './components/IconBrightnessMedium' +import { IconBrokenImage } from './components/IconBrokenImage' +import { IconBrowserNotSupported } from './components/IconBrowserNotSupported' +import { IconBrush } from './components/IconBrush' +import { IconBubbleChart } from './components/IconBubbleChart' +import { IconBugReport } from './components/IconBugReport' +import { IconBuild } from './components/IconBuild' +import { IconBuildCircle } from './components/IconBuildCircle' +import { IconBurstMode } from './components/IconBurstMode' +import { IconBusiness } from './components/IconBusiness' +import { IconBusinessCenter } from './components/IconBusinessCenter' +import { IconCached } from './components/IconCached' +import { IconCake } from './components/IconCake' +import { IconCalculate } from './components/IconCalculate' +import { IconCalendarToday } from './components/IconCalendarToday' +import { IconCalendarViewDay } from './components/IconCalendarViewDay' +import { IconCall } from './components/IconCall' +import { IconCallEnd } from './components/IconCallEnd' +import { IconCallMade } from './components/IconCallMade' +import { IconCallMerge } from './components/IconCallMerge' +import { IconCallMissed } from './components/IconCallMissed' +import { IconCallMissedOutgoing } from './components/IconCallMissedOutgoing' +import { IconCallReceived } from './components/IconCallReceived' +import { IconCallSplit } from './components/IconCallSplit' +import { IconCallToAction } from './components/IconCallToAction' +import { IconCamera } from './components/IconCamera' +import { IconCameraAlt } from './components/IconCameraAlt' +import { IconCameraEnhance } from './components/IconCameraEnhance' +import { IconCameraFront } from './components/IconCameraFront' +import { IconCameraRear } from './components/IconCameraRear' +import { IconCameraRoll } from './components/IconCameraRoll' +import { IconCampaign } from './components/IconCampaign' +import { IconCancel } from './components/IconCancel' +import { IconCancelPresentation } from './components/IconCancelPresentation' +import { IconCancelScheduleSend } from './components/IconCancelScheduleSend' +import { IconCardGiftcard } from './components/IconCardGiftcard' +import { IconCardMembership } from './components/IconCardMembership' +import { IconCardTravel } from './components/IconCardTravel' +import { IconCarpenter } from './components/IconCarpenter' +import { IconCasino } from './components/IconCasino' +import { IconCast } from './components/IconCast' +import { IconCastConnected } from './components/IconCastConnected' +import { IconCastForEducation } from './components/IconCastForEducation' +import { IconCategory } from './components/IconCategory' +import { IconCenterFocusStrong } from './components/IconCenterFocusStrong' +import { IconCenterFocusWeak } from './components/IconCenterFocusWeak' +import { IconChangeHistory } from './components/IconChangeHistory' +import { IconChargingStation } from './components/IconChargingStation' +import { IconChat } from './components/IconChat' +import { IconChatBubble } from './components/IconChatBubble' +import { IconChatBubbleOutline } from './components/IconChatBubbleOutline' +import { IconCheck } from './components/IconCheck' +import { IconCheckBox } from './components/IconCheckBox' +import { IconCheckBoxOutlineBlank } from './components/IconCheckBoxOutlineBlank' +import { IconCheckCircle } from './components/IconCheckCircle' +import { IconCheckCircleOutline } from './components/IconCheckCircleOutline' +import { IconCheckroom } from './components/IconCheckroom' +import { IconChevronLeft } from './components/IconChevronLeft' +import { IconChevronRight } from './components/IconChevronRight' +import { IconChildCare } from './components/IconChildCare' +import { IconChildFriendly } from './components/IconChildFriendly' +import { IconChromeReaderMode } from './components/IconChromeReaderMode' +import { IconClass } from './components/IconClass' +import { IconCleanHands } from './components/IconCleanHands' +import { IconCleaningServices } from './components/IconCleaningServices' +import { IconClear } from './components/IconClear' +import { IconClearAll } from './components/IconClearAll' +import { IconClose } from './components/IconClose' +import { IconCloseFullscreen } from './components/IconCloseFullscreen' +import { IconClosedCaption } from './components/IconClosedCaption' +import { IconClosedCaptionDisabled } from './components/IconClosedCaptionDisabled' +import { IconCloud } from './components/IconCloud' +import { IconCloudCircle } from './components/IconCloudCircle' +import { IconCloudDone } from './components/IconCloudDone' +import { IconCloudDownload } from './components/IconCloudDownload' +import { IconCloudOff } from './components/IconCloudOff' +import { IconCloudQueue } from './components/IconCloudQueue' +import { IconCloudUpload } from './components/IconCloudUpload' +import { IconCode } from './components/IconCode' +import { IconCollections } from './components/IconCollections' +import { IconCollectionsBookmark } from './components/IconCollectionsBookmark' +import { IconColorLens } from './components/IconColorLens' +import { IconColorize } from './components/IconColorize' +import { IconComment } from './components/IconComment' +import { IconCommentBank } from './components/IconCommentBank' +import { IconCommute } from './components/IconCommute' +import { IconCompare } from './components/IconCompare' +import { IconCompareArrows } from './components/IconCompareArrows' +import { IconCompassCalibration } from './components/IconCompassCalibration' +import { IconComputer } from './components/IconComputer' +import { IconConfirmationNumber } from './components/IconConfirmationNumber' +import { IconConnectWithoutContact } from './components/IconConnectWithoutContact' +import { IconConstruction } from './components/IconConstruction' +import { IconContactMail } from './components/IconContactMail' +import { IconContactPage } from './components/IconContactPage' +import { IconContactPhone } from './components/IconContactPhone' +import { IconContactSupport } from './components/IconContactSupport' +import { IconContactless } from './components/IconContactless' +import { IconContacts } from './components/IconContacts' +import { IconContentCopy } from './components/IconContentCopy' +import { IconContentCut } from './components/IconContentCut' +import { IconContentPaste } from './components/IconContentPaste' +import { IconControlCamera } from './components/IconControlCamera' +import { IconControlPoint } from './components/IconControlPoint' +import { IconControlPointDuplicate } from './components/IconControlPointDuplicate' +import { IconCopyright } from './components/IconCopyright' +import { IconCoronavirus } from './components/IconCoronavirus' +import { IconCorporateFare } from './components/IconCorporateFare' +import { IconCountertops } from './components/IconCountertops' +import { IconCreate } from './components/IconCreate' +import { IconCreateNewFolder } from './components/IconCreateNewFolder' +import { IconCreditCard } from './components/IconCreditCard' +import { IconCrop } from './components/IconCrop' +import { IconCrop169 } from './components/IconCrop169' +import { IconCrop32 } from './components/IconCrop32' +import { IconCrop54 } from './components/IconCrop54' +import { IconCrop75 } from './components/IconCrop75' +import { IconCropDin } from './components/IconCropDin' +import { IconCropFree } from './components/IconCropFree' +import { IconCropLandscape } from './components/IconCropLandscape' +import { IconCropOriginal } from './components/IconCropOriginal' +import { IconCropPortrait } from './components/IconCropPortrait' +import { IconCropRotate } from './components/IconCropRotate' +import { IconCropSquare } from './components/IconCropSquare' +import { IconDashboard } from './components/IconDashboard' +import { IconDataUsage } from './components/IconDataUsage' +import { IconDateRange } from './components/IconDateRange' +import { IconDeck } from './components/IconDeck' +import { IconDehaze } from './components/IconDehaze' +import { IconDelete } from './components/IconDelete' +import { IconDeleteForever } from './components/IconDeleteForever' +import { IconDeleteOutline } from './components/IconDeleteOutline' +import { IconDeleteSweep } from './components/IconDeleteSweep' +import { IconDepartureBoard } from './components/IconDepartureBoard' +import { IconDescription } from './components/IconDescription' +import { IconDesignServices } from './components/IconDesignServices' +import { IconDesktopAccessDisabled } from './components/IconDesktopAccessDisabled' +import { IconDesktopMac } from './components/IconDesktopMac' +import { IconDesktopWindows } from './components/IconDesktopWindows' +import { IconDetails } from './components/IconDetails' +import { IconDeveloperBoard } from './components/IconDeveloperBoard' +import { IconDeveloperMode } from './components/IconDeveloperMode' +import { IconDeviceHub } from './components/IconDeviceHub' +import { IconDeviceUnknown } from './components/IconDeviceUnknown' +import { IconDevices } from './components/IconDevices' +import { IconDevicesOther } from './components/IconDevicesOther' +import { IconDialerSip } from './components/IconDialerSip' +import { IconDialpad } from './components/IconDialpad' +import { IconDirections } from './components/IconDirections' +import { IconDirectionsBike } from './components/IconDirectionsBike' +import { IconDirectionsBoat } from './components/IconDirectionsBoat' +import { IconDirectionsBus } from './components/IconDirectionsBus' +import { IconDirectionsCar } from './components/IconDirectionsCar' +import { IconDirectionsOff } from './components/IconDirectionsOff' +import { IconDirectionsRailway } from './components/IconDirectionsRailway' +import { IconDirectionsRun } from './components/IconDirectionsRun' +import { IconDirectionsSubway } from './components/IconDirectionsSubway' +import { IconDirectionsTransit } from './components/IconDirectionsTransit' +import { IconDirectionsWalk } from './components/IconDirectionsWalk' +import { IconDisabledByDefault } from './components/IconDisabledByDefault' +import { IconDiscFull } from './components/IconDiscFull' +import { IconDns } from './components/IconDns' +import { IconDoNotStep } from './components/IconDoNotStep' +import { IconDoNotTouch } from './components/IconDoNotTouch' +import { IconDock } from './components/IconDock' +import { IconDomain } from './components/IconDomain' +import { IconDomainDisabled } from './components/IconDomainDisabled' +import { IconDomainVerification } from './components/IconDomainVerification' +import { IconDone } from './components/IconDone' +import { IconDoneAll } from './components/IconDoneAll' +import { IconDoneOutline } from './components/IconDoneOutline' +import { IconDonutLarge } from './components/IconDonutLarge' +import { IconDonutSmall } from './components/IconDonutSmall' +import { IconDoubleArrow } from './components/IconDoubleArrow' +import { IconDrafts } from './components/IconDrafts' +import { IconDragHandle } from './components/IconDragHandle' +import { IconDragIndicator } from './components/IconDragIndicator' +import { IconDriveEta } from './components/IconDriveEta' +import { IconDry } from './components/IconDry' +import { IconDuo } from './components/IconDuo' +import { IconDvr } from './components/IconDvr' +import { IconDynamicFeed } from './components/IconDynamicFeed' +import { IconDynamicForm } from './components/IconDynamicForm' +import { IconEast } from './components/IconEast' +import { IconEco } from './components/IconEco' +import { IconEdit } from './components/IconEdit' +import { IconEditAttributes } from './components/IconEditAttributes' +import { IconEditLocation } from './components/IconEditLocation' +import { IconEditRoad } from './components/IconEditRoad' +import { IconEject } from './components/IconEject' +import { IconElderly } from './components/IconElderly' +import { IconElectricBike } from './components/IconElectricBike' +import { IconElectricCar } from './components/IconElectricCar' +import { IconElectricMoped } from './components/IconElectricMoped' +import { IconElectricScooter } from './components/IconElectricScooter' +import { IconElectricalServices } from './components/IconElectricalServices' +import { IconElevator } from './components/IconElevator' +import { IconEmail } from './components/IconEmail' +import { IconEmojiEmotions } from './components/IconEmojiEmotions' +import { IconEmojiEvents } from './components/IconEmojiEvents' +import { IconEmojiFlags } from './components/IconEmojiFlags' +import { IconEmojiFoodBeverage } from './components/IconEmojiFoodBeverage' +import { IconEmojiNature } from './components/IconEmojiNature' +import { IconEmojiObjects } from './components/IconEmojiObjects' +import { IconEmojiPeople } from './components/IconEmojiPeople' +import { IconEmojiSymbols } from './components/IconEmojiSymbols' +import { IconEmojiTransportation } from './components/IconEmojiTransportation' +import { IconEngineering } from './components/IconEngineering' +import { IconEnhancedEncryption } from './components/IconEnhancedEncryption' +import { IconEqualizer } from './components/IconEqualizer' +import { IconError } from './components/IconError' +import { IconErrorOutline } from './components/IconErrorOutline' +import { IconEscalator } from './components/IconEscalator' +import { IconEscalatorWarning } from './components/IconEscalatorWarning' +import { IconEuro } from './components/IconEuro' +import { IconEuroSymbol } from './components/IconEuroSymbol' +import { IconEvStation } from './components/IconEvStation' +import { IconEvent } from './components/IconEvent' +import { IconEventAvailable } from './components/IconEventAvailable' +import { IconEventBusy } from './components/IconEventBusy' +import { IconEventNote } from './components/IconEventNote' +import { IconEventSeat } from './components/IconEventSeat' +import { IconExitToApp } from './components/IconExitToApp' +import { IconExpandLess } from './components/IconExpandLess' +import { IconExpandMore } from './components/IconExpandMore' +import { IconExplicit } from './components/IconExplicit' +import { IconExplore } from './components/IconExplore' +import { IconExploreOff } from './components/IconExploreOff' +import { IconExposure } from './components/IconExposure' +import { IconExposureNeg1 } from './components/IconExposureNeg1' +import { IconExposureNeg2 } from './components/IconExposureNeg2' +import { IconExposurePlus1 } from './components/IconExposurePlus1' +import { IconExposurePlus2 } from './components/IconExposurePlus2' +import { IconExposureZero } from './components/IconExposureZero' +import { IconExtension } from './components/IconExtension' +import { IconFace } from './components/IconFace' +import { IconFacebook } from './components/IconFacebook' +import { IconFactCheck } from './components/IconFactCheck' +import { IconFamilyRestroom } from './components/IconFamilyRestroom' +import { IconFastForward } from './components/IconFastForward' +import { IconFastRewind } from './components/IconFastRewind' +import { IconFastfood } from './components/IconFastfood' +import { IconFavorite } from './components/IconFavorite' +import { IconFavoriteBorder } from './components/IconFavoriteBorder' +import { IconFeaturedPlayList } from './components/IconFeaturedPlayList' +import { IconFeaturedVideo } from './components/IconFeaturedVideo' +import { IconFeedback } from './components/IconFeedback' +import { IconFence } from './components/IconFence' +import { IconFiberDvr } from './components/IconFiberDvr' +import { IconFiberManualRecord } from './components/IconFiberManualRecord' +import { IconFiberNew } from './components/IconFiberNew' +import { IconFiberPin } from './components/IconFiberPin' +import { IconFiberSmartRecord } from './components/IconFiberSmartRecord' +import { IconFileCopy } from './components/IconFileCopy' +import { IconFilter } from './components/IconFilter' +import { IconFilter1 } from './components/IconFilter1' +import { IconFilter2 } from './components/IconFilter2' +import { IconFilter3 } from './components/IconFilter3' +import { IconFilter4 } from './components/IconFilter4' +import { IconFilter5 } from './components/IconFilter5' +import { IconFilter6 } from './components/IconFilter6' +import { IconFilter7 } from './components/IconFilter7' +import { IconFilter8 } from './components/IconFilter8' +import { IconFilter9 } from './components/IconFilter9' +import { IconFilter9Plus } from './components/IconFilter9Plus' +import { IconFilterAlt } from './components/IconFilterAlt' +import { IconFilterBAndW } from './components/IconFilterBAndW' +import { IconFilterCenterFocus } from './components/IconFilterCenterFocus' +import { IconFilterDrama } from './components/IconFilterDrama' +import { IconFilterFrames } from './components/IconFilterFrames' +import { IconFilterHdr } from './components/IconFilterHdr' +import { IconFilterList } from './components/IconFilterList' +import { IconFilterNone } from './components/IconFilterNone' +import { IconFilterTiltShift } from './components/IconFilterTiltShift' +import { IconFilterVintage } from './components/IconFilterVintage' +import { IconFindInPage } from './components/IconFindInPage' +import { IconFindReplace } from './components/IconFindReplace' +import { IconFingerprint } from './components/IconFingerprint' +import { IconFireExtinguisher } from './components/IconFireExtinguisher' +import { IconFireplace } from './components/IconFireplace' +import { IconFirstPage } from './components/IconFirstPage' +import { IconFitnessCenter } from './components/IconFitnessCenter' +import { IconFlag } from './components/IconFlag' +import { IconFlaky } from './components/IconFlaky' +import { IconFlare } from './components/IconFlare' +import { IconFlashAuto } from './components/IconFlashAuto' +import { IconFlashOff } from './components/IconFlashOff' +import { IconFlashOn } from './components/IconFlashOn' +import { IconFlight } from './components/IconFlight' +import { IconFlightLand } from './components/IconFlightLand' +import { IconFlightTakeoff } from './components/IconFlightTakeoff' +import { IconFlip } from './components/IconFlip' +import { IconFlipCameraAndroid } from './components/IconFlipCameraAndroid' +import { IconFlipCameraIos } from './components/IconFlipCameraIos' +import { IconFlipToBack } from './components/IconFlipToBack' +import { IconFlipToFront } from './components/IconFlipToFront' +import { IconFolder } from './components/IconFolder' +import { IconFolderOpen } from './components/IconFolderOpen' +import { IconFolderShared } from './components/IconFolderShared' +import { IconFolderSpecial } from './components/IconFolderSpecial' +import { IconFollowTheSigns } from './components/IconFollowTheSigns' +import { IconFontDownload } from './components/IconFontDownload' +import { IconFoodBank } from './components/IconFoodBank' +import { IconFormatAlignCenter } from './components/IconFormatAlignCenter' +import { IconFormatAlignJustify } from './components/IconFormatAlignJustify' +import { IconFormatAlignLeft } from './components/IconFormatAlignLeft' +import { IconFormatAlignRight } from './components/IconFormatAlignRight' +import { IconFormatBold } from './components/IconFormatBold' +import { IconFormatClear } from './components/IconFormatClear' +import { IconFormatColorReset } from './components/IconFormatColorReset' +import { IconFormatIndentDecrease } from './components/IconFormatIndentDecrease' +import { IconFormatIndentIncrease } from './components/IconFormatIndentIncrease' +import { IconFormatItalic } from './components/IconFormatItalic' +import { IconFormatLineSpacing } from './components/IconFormatLineSpacing' +import { IconFormatListBulleted } from './components/IconFormatListBulleted' +import { IconFormatListNumbered } from './components/IconFormatListNumbered' +import { IconFormatListNumberedRtl } from './components/IconFormatListNumberedRtl' +import { IconFormatPaint } from './components/IconFormatPaint' +import { IconFormatQuote } from './components/IconFormatQuote' +import { IconFormatShapes } from './components/IconFormatShapes' +import { IconFormatSize } from './components/IconFormatSize' +import { IconFormatStrikethrough } from './components/IconFormatStrikethrough' +import { IconFormatTextdirectionLToR } from './components/IconFormatTextdirectionLToR' +import { IconFormatTextdirectionRToL } from './components/IconFormatTextdirectionRToL' +import { IconFormatUnderlined } from './components/IconFormatUnderlined' +import { IconForum } from './components/IconForum' +import { IconForward } from './components/IconForward' +import { IconForward10 } from './components/IconForward10' +import { IconForward30 } from './components/IconForward30' +import { IconForward5 } from './components/IconForward5' +import { IconForwardToInbox } from './components/IconForwardToInbox' +import { IconFoundation } from './components/IconFoundation' +import { IconFreeBreakfast } from './components/IconFreeBreakfast' +import { IconFullscreen } from './components/IconFullscreen' +import { IconFullscreenExit } from './components/IconFullscreenExit' +import { IconFunctions } from './components/IconFunctions' +import { IconGTranslate } from './components/IconGTranslate' +import { IconGamepad } from './components/IconGamepad' +import { IconGames } from './components/IconGames' +import { IconGavel } from './components/IconGavel' +import { IconGesture } from './components/IconGesture' +import { IconGetApp } from './components/IconGetApp' +import { IconGif } from './components/IconGif' +import { IconGolfCourse } from './components/IconGolfCourse' +import { IconGpsFixed } from './components/IconGpsFixed' +import { IconGpsNotFixed } from './components/IconGpsNotFixed' +import { IconGpsOff } from './components/IconGpsOff' +import { IconGrade } from './components/IconGrade' +import { IconGradient } from './components/IconGradient' +import { IconGrading } from './components/IconGrading' +import { IconGrain } from './components/IconGrain' +import { IconGraphicEq } from './components/IconGraphicEq' +import { IconGrass } from './components/IconGrass' +import { IconGridOff } from './components/IconGridOff' +import { IconGridOn } from './components/IconGridOn' +import { IconGroup } from './components/IconGroup' +import { IconGroupAdd } from './components/IconGroupAdd' +import { IconGroupWork } from './components/IconGroupWork' +import { IconGroups } from './components/IconGroups' +import { IconHandyman } from './components/IconHandyman' +import { IconHd } from './components/IconHd' +import { IconHdrOff } from './components/IconHdrOff' +import { IconHdrOn } from './components/IconHdrOn' +import { IconHdrStrong } from './components/IconHdrStrong' +import { IconHdrWeak } from './components/IconHdrWeak' +import { IconHeadset } from './components/IconHeadset' +import { IconHeadsetMic } from './components/IconHeadsetMic' +import { IconHealing } from './components/IconHealing' +import { IconHearing } from './components/IconHearing' +import { IconHearingDisabled } from './components/IconHearingDisabled' +import { IconHeight } from './components/IconHeight' +import { IconHelp } from './components/IconHelp' +import { IconHelpCenter } from './components/IconHelpCenter' +import { IconHelpOutline } from './components/IconHelpOutline' +import { IconHighQuality } from './components/IconHighQuality' +import { IconHighlight } from './components/IconHighlight' +import { IconHighlightAlt } from './components/IconHighlightAlt' +import { IconHighlightOff } from './components/IconHighlightOff' +import { IconHistory } from './components/IconHistory' +import { IconHistoryEdu } from './components/IconHistoryEdu' +import { IconHistoryToggleOff } from './components/IconHistoryToggleOff' +import { IconHome } from './components/IconHome' +import { IconHomeRepairService } from './components/IconHomeRepairService' +import { IconHomeWork } from './components/IconHomeWork' +import { IconHorizontalDistribute } from './components/IconHorizontalDistribute' +import { IconHorizontalRule } from './components/IconHorizontalRule' +import { IconHorizontalSplit } from './components/IconHorizontalSplit' +import { IconHotTub } from './components/IconHotTub' +import { IconHotel } from './components/IconHotel' +import { IconHourglassBottom } from './components/IconHourglassBottom' +import { IconHourglassDisabled } from './components/IconHourglassDisabled' +import { IconHourglassEmpty } from './components/IconHourglassEmpty' +import { IconHourglassFull } from './components/IconHourglassFull' +import { IconHourglassTop } from './components/IconHourglassTop' +import { IconHouse } from './components/IconHouse' +import { IconHouseSiding } from './components/IconHouseSiding' +import { IconHowToReg } from './components/IconHowToReg' +import { IconHowToVote } from './components/IconHowToVote' +import { IconHttp } from './components/IconHttp' +import { IconHttps } from './components/IconHttps' +import { IconHvac } from './components/IconHvac' +import { IconImage } from './components/IconImage' +import { IconImageAspectRatio } from './components/IconImageAspectRatio' +import { IconImageNotSupported } from './components/IconImageNotSupported' +import { IconImageSearch } from './components/IconImageSearch' +import { IconImportContacts } from './components/IconImportContacts' +import { IconImportExport } from './components/IconImportExport' +import { IconImportantDevices } from './components/IconImportantDevices' +import { IconInbox } from './components/IconInbox' +import { IconIndeterminateCheckBox } from './components/IconIndeterminateCheckBox' +import { IconInfo } from './components/IconInfo' +import { IconInput } from './components/IconInput' +import { IconInsertChart } from './components/IconInsertChart' +import { IconInsertChartOutlined } from './components/IconInsertChartOutlined' +import { IconInsertComment } from './components/IconInsertComment' +import { IconInsertDriveFile } from './components/IconInsertDriveFile' +import { IconInsertEmoticon } from './components/IconInsertEmoticon' +import { IconInsertInvitation } from './components/IconInsertInvitation' +import { IconInsertLink } from './components/IconInsertLink' +import { IconInsertPhoto } from './components/IconInsertPhoto' +import { IconInsights } from './components/IconInsights' +import { IconIntegrationInstructions } from './components/IconIntegrationInstructions' +import { IconInvertColors } from './components/IconInvertColors' +import { IconInvertColorsOff } from './components/IconInvertColorsOff' +import { IconIso } from './components/IconIso' +import { IconKeyboard } from './components/IconKeyboard' +import { IconKeyboardArrowDown } from './components/IconKeyboardArrowDown' +import { IconKeyboardArrowLeft } from './components/IconKeyboardArrowLeft' +import { IconKeyboardArrowRight } from './components/IconKeyboardArrowRight' +import { IconKeyboardArrowUp } from './components/IconKeyboardArrowUp' +import { IconKeyboardBackspace } from './components/IconKeyboardBackspace' +import { IconKeyboardCapslock } from './components/IconKeyboardCapslock' +import { IconKeyboardHide } from './components/IconKeyboardHide' +import { IconKeyboardReturn } from './components/IconKeyboardReturn' +import { IconKeyboardTab } from './components/IconKeyboardTab' +import { IconKeyboardVoice } from './components/IconKeyboardVoice' +import { IconKingBed } from './components/IconKingBed' +import { IconKitchen } from './components/IconKitchen' +import { IconLabel } from './components/IconLabel' +import { IconLabelImportant } from './components/IconLabelImportant' +import { IconLabelOff } from './components/IconLabelOff' +import { IconLandscape } from './components/IconLandscape' +import { IconLanguage } from './components/IconLanguage' +import { IconLaptop } from './components/IconLaptop' +import { IconLaptopChromebook } from './components/IconLaptopChromebook' +import { IconLaptopMac } from './components/IconLaptopMac' +import { IconLaptopWindows } from './components/IconLaptopWindows' +import { IconLastPage } from './components/IconLastPage' +import { IconLaunch } from './components/IconLaunch' +import { IconLayers } from './components/IconLayers' +import { IconLayersClear } from './components/IconLayersClear' +import { IconLeaderboard } from './components/IconLeaderboard' +import { IconLeakAdd } from './components/IconLeakAdd' +import { IconLeakRemove } from './components/IconLeakRemove' +import { IconLegendToggle } from './components/IconLegendToggle' +import { IconLens } from './components/IconLens' +import { IconLibraryAdd } from './components/IconLibraryAdd' +import { IconLibraryAddCheck } from './components/IconLibraryAddCheck' +import { IconLibraryBooks } from './components/IconLibraryBooks' +import { IconLibraryMusic } from './components/IconLibraryMusic' +import { IconLineStyle } from './components/IconLineStyle' +import { IconLineWeight } from './components/IconLineWeight' +import { IconLinearScale } from './components/IconLinearScale' +import { IconLink } from './components/IconLink' +import { IconLinkOff } from './components/IconLinkOff' +import { IconLinkedCamera } from './components/IconLinkedCamera' +import { IconList } from './components/IconList' +import { IconListAlt } from './components/IconListAlt' +import { IconLiveHelp } from './components/IconLiveHelp' +import { IconLiveTv } from './components/IconLiveTv' +import { IconLocalActivity } from './components/IconLocalActivity' +import { IconLocalAirport } from './components/IconLocalAirport' +import { IconLocalAtm } from './components/IconLocalAtm' +import { IconLocalBar } from './components/IconLocalBar' +import { IconLocalCafe } from './components/IconLocalCafe' +import { IconLocalCarWash } from './components/IconLocalCarWash' +import { IconLocalConvenienceStore } from './components/IconLocalConvenienceStore' +import { IconLocalDining } from './components/IconLocalDining' +import { IconLocalDrink } from './components/IconLocalDrink' +import { IconLocalFireDepartment } from './components/IconLocalFireDepartment' +import { IconLocalFlorist } from './components/IconLocalFlorist' +import { IconLocalGasStation } from './components/IconLocalGasStation' +import { IconLocalGroceryStore } from './components/IconLocalGroceryStore' +import { IconLocalHospital } from './components/IconLocalHospital' +import { IconLocalHotel } from './components/IconLocalHotel' +import { IconLocalLaundryService } from './components/IconLocalLaundryService' +import { IconLocalLibrary } from './components/IconLocalLibrary' +import { IconLocalMall } from './components/IconLocalMall' +import { IconLocalMovies } from './components/IconLocalMovies' +import { IconLocalOffer } from './components/IconLocalOffer' +import { IconLocalParking } from './components/IconLocalParking' +import { IconLocalPharmacy } from './components/IconLocalPharmacy' +import { IconLocalPhone } from './components/IconLocalPhone' +import { IconLocalPizza } from './components/IconLocalPizza' +import { IconLocalPlay } from './components/IconLocalPlay' +import { IconLocalPolice } from './components/IconLocalPolice' +import { IconLocalPostOffice } from './components/IconLocalPostOffice' +import { IconLocalPrintshop } from './components/IconLocalPrintshop' +import { IconLocalSee } from './components/IconLocalSee' +import { IconLocalShipping } from './components/IconLocalShipping' +import { IconLocalTaxi } from './components/IconLocalTaxi' +import { IconLocationCity } from './components/IconLocationCity' +import { IconLocationDisabled } from './components/IconLocationDisabled' +import { IconLocationOff } from './components/IconLocationOff' +import { IconLocationOn } from './components/IconLocationOn' +import { IconLocationSearching } from './components/IconLocationSearching' +import { IconLock } from './components/IconLock' +import { IconLockOpen } from './components/IconLockOpen' +import { IconLogin } from './components/IconLogin' +import { IconLooks } from './components/IconLooks' +import { IconLooks3 } from './components/IconLooks3' +import { IconLooks4 } from './components/IconLooks4' +import { IconLooks5 } from './components/IconLooks5' +import { IconLooks6 } from './components/IconLooks6' +import { IconLooksOne } from './components/IconLooksOne' +import { IconLooksTwo } from './components/IconLooksTwo' +import { IconLoop } from './components/IconLoop' +import { IconLoupe } from './components/IconLoupe' +import { IconLowPriority } from './components/IconLowPriority' +import { IconLoyalty } from './components/IconLoyalty' +import { IconLuggage } from './components/IconLuggage' +import { IconMail } from './components/IconMail' +import { IconMailOutline } from './components/IconMailOutline' +import { IconMap } from './components/IconMap' +import { IconMapsUgc } from './components/IconMapsUgc' +import { IconMarkChatRead } from './components/IconMarkChatRead' +import { IconMarkChatUnread } from './components/IconMarkChatUnread' +import { IconMarkEmailRead } from './components/IconMarkEmailRead' +import { IconMarkEmailUnread } from './components/IconMarkEmailUnread' +import { IconMarkunread } from './components/IconMarkunread' +import { IconMarkunreadMailbox } from './components/IconMarkunreadMailbox' +import { IconMasks } from './components/IconMasks' +import { IconMaximize } from './components/IconMaximize' +import { IconMediation } from './components/IconMediation' +import { IconMedicalServices } from './components/IconMedicalServices' +import { IconMeetingRoom } from './components/IconMeetingRoom' +import { IconMemory } from './components/IconMemory' +import { IconMenu } from './components/IconMenu' +import { IconMenuBook } from './components/IconMenuBook' +import { IconMenuOpen } from './components/IconMenuOpen' +import { IconMergeType } from './components/IconMergeType' +import { IconMessage } from './components/IconMessage' +import { IconMic } from './components/IconMic' +import { IconMicNone } from './components/IconMicNone' +import { IconMicOff } from './components/IconMicOff' +import { IconMicrowave } from './components/IconMicrowave' +import { IconMilitaryTech } from './components/IconMilitaryTech' +import { IconMinimize } from './components/IconMinimize' +import { IconMiscellaneousServices } from './components/IconMiscellaneousServices' +import { IconMissedVideoCall } from './components/IconMissedVideoCall' +import { IconMms } from './components/IconMms' +import { IconMobileFriendly } from './components/IconMobileFriendly' +import { IconMobileOff } from './components/IconMobileOff' +import { IconMobileScreenShare } from './components/IconMobileScreenShare' +import { IconModeComment } from './components/IconModeComment' +import { IconModelTraining } from './components/IconModelTraining' +import { IconMonetizationOn } from './components/IconMonetizationOn' +import { IconMoney } from './components/IconMoney' +import { IconMoneyOff } from './components/IconMoneyOff' +import { IconMonochromePhotos } from './components/IconMonochromePhotos' +import { IconMood } from './components/IconMood' +import { IconMoodBad } from './components/IconMoodBad' +import { IconMoped } from './components/IconMoped' +import { IconMore } from './components/IconMore' +import { IconMoreHoriz } from './components/IconMoreHoriz' +import { IconMoreTime } from './components/IconMoreTime' +import { IconMoreVert } from './components/IconMoreVert' +import { IconMotionPhotosOn } from './components/IconMotionPhotosOn' +import { IconMotionPhotosPause } from './components/IconMotionPhotosPause' +import { IconMotionPhotosPaused } from './components/IconMotionPhotosPaused' +import { IconMouse } from './components/IconMouse' +import { IconMoveToInbox } from './components/IconMoveToInbox' +import { IconMovie } from './components/IconMovie' +import { IconMovieCreation } from './components/IconMovieCreation' +import { IconMovieFilter } from './components/IconMovieFilter' +import { IconMultilineChart } from './components/IconMultilineChart' +import { IconMultipleStop } from './components/IconMultipleStop' +import { IconMuseum } from './components/IconMuseum' +import { IconMusicNote } from './components/IconMusicNote' +import { IconMusicOff } from './components/IconMusicOff' +import { IconMusicVideo } from './components/IconMusicVideo' +import { IconMyLocation } from './components/IconMyLocation' +import { IconNat } from './components/IconNat' +import { IconNature } from './components/IconNature' +import { IconNaturePeople } from './components/IconNaturePeople' +import { IconNavigateBefore } from './components/IconNavigateBefore' +import { IconNavigateNext } from './components/IconNavigateNext' +import { IconNavigation } from './components/IconNavigation' +import { IconNearMe } from './components/IconNearMe' +import { IconNearMeDisabled } from './components/IconNearMeDisabled' +import { IconNetworkCheck } from './components/IconNetworkCheck' +import { IconNetworkLocked } from './components/IconNetworkLocked' +import { IconNewReleases } from './components/IconNewReleases' +import { IconNextPlan } from './components/IconNextPlan' +import { IconNextWeek } from './components/IconNextWeek' +import { IconNfc } from './components/IconNfc' +import { IconNightShelter } from './components/IconNightShelter' +import { IconNightsStay } from './components/IconNightsStay' +import { IconNoBackpack } from './components/IconNoBackpack' +import { IconNoCell } from './components/IconNoCell' +import { IconNoDrinks } from './components/IconNoDrinks' +import { IconNoEncryption } from './components/IconNoEncryption' +import { IconNoFlash } from './components/IconNoFlash' +import { IconNoFood } from './components/IconNoFood' +import { IconNoLuggage } from './components/IconNoLuggage' +import { IconNoMeals } from './components/IconNoMeals' +import { IconNoMeetingRoom } from './components/IconNoMeetingRoom' +import { IconNoPhotography } from './components/IconNoPhotography' +import { IconNoSim } from './components/IconNoSim' +import { IconNoStroller } from './components/IconNoStroller' +import { IconNoTransfer } from './components/IconNoTransfer' +import { IconNorth } from './components/IconNorth' +import { IconNorthEast } from './components/IconNorthEast' +import { IconNorthWest } from './components/IconNorthWest' +import { IconNotAccessible } from './components/IconNotAccessible' +import { IconNotInterested } from './components/IconNotInterested' +import { IconNotListedLocation } from './components/IconNotListedLocation' +import { IconNotStarted } from './components/IconNotStarted' +import { IconNote } from './components/IconNote' +import { IconNoteAdd } from './components/IconNoteAdd' +import { IconNotes } from './components/IconNotes' +import { IconNotificationImportant } from './components/IconNotificationImportant' +import { IconNotifications } from './components/IconNotifications' +import { IconNotificationsActive } from './components/IconNotificationsActive' +import { IconNotificationsNone } from './components/IconNotificationsNone' +import { IconNotificationsOff } from './components/IconNotificationsOff' +import { IconNotificationsPaused } from './components/IconNotificationsPaused' +import { IconOfflineBolt } from './components/IconOfflineBolt' +import { IconOfflinePin } from './components/IconOfflinePin' +import { IconOndemandVideo } from './components/IconOndemandVideo' +import { IconOnlinePrediction } from './components/IconOnlinePrediction' +import { IconOpacity } from './components/IconOpacity' +import { IconOpenInBrowser } from './components/IconOpenInBrowser' +import { IconOpenInFull } from './components/IconOpenInFull' +import { IconOpenInNew } from './components/IconOpenInNew' +import { IconOpenWith } from './components/IconOpenWith' +import { IconOutbond } from './components/IconOutbond' +import { IconOutdoorGrill } from './components/IconOutdoorGrill' +import { IconOutlet } from './components/IconOutlet' +import { IconOutlinedFlag } from './components/IconOutlinedFlag' +import { IconPages } from './components/IconPages' +import { IconPageview } from './components/IconPageview' +import { IconPalette } from './components/IconPalette' +import { IconPanTool } from './components/IconPanTool' +import { IconPanorama } from './components/IconPanorama' +import { IconPanoramaFishEye } from './components/IconPanoramaFishEye' +import { IconPanoramaHorizontal } from './components/IconPanoramaHorizontal' +import { IconPanoramaVertical } from './components/IconPanoramaVertical' +import { IconPanoramaWideAngle } from './components/IconPanoramaWideAngle' +import { IconPartyMode } from './components/IconPartyMode' +import { IconPause } from './components/IconPause' +import { IconPauseCircleFilled } from './components/IconPauseCircleFilled' +import { IconPauseCircleOutline } from './components/IconPauseCircleOutline' +import { IconPausePresentation } from './components/IconPausePresentation' +import { IconPayment } from './components/IconPayment' +import { IconPayments } from './components/IconPayments' +import { IconPedalBike } from './components/IconPedalBike' +import { IconPending } from './components/IconPending' +import { IconPendingActions } from './components/IconPendingActions' +import { IconPeople } from './components/IconPeople' +import { IconPeopleAlt } from './components/IconPeopleAlt' +import { IconPeopleOutline } from './components/IconPeopleOutline' +import { IconPermCameraMic } from './components/IconPermCameraMic' +import { IconPermContactCalendar } from './components/IconPermContactCalendar' +import { IconPermDataSetting } from './components/IconPermDataSetting' +import { IconPermDeviceInformation } from './components/IconPermDeviceInformation' +import { IconPermIdentity } from './components/IconPermIdentity' +import { IconPermMedia } from './components/IconPermMedia' +import { IconPermPhoneMsg } from './components/IconPermPhoneMsg' +import { IconPermScanWifi } from './components/IconPermScanWifi' +import { IconPerson } from './components/IconPerson' +import { IconPersonAdd } from './components/IconPersonAdd' +import { IconPersonAddAlt1 } from './components/IconPersonAddAlt1' +import { IconPersonAddDisabled } from './components/IconPersonAddDisabled' +import { IconPersonOutline } from './components/IconPersonOutline' +import { IconPersonPin } from './components/IconPersonPin' +import { IconPersonPinCircle } from './components/IconPersonPinCircle' +import { IconPersonRemove } from './components/IconPersonRemove' +import { IconPersonRemoveAlt1 } from './components/IconPersonRemoveAlt1' +import { IconPersonSearch } from './components/IconPersonSearch' +import { IconPersonalVideo } from './components/IconPersonalVideo' +import { IconPestControl } from './components/IconPestControl' +import { IconPestControlRodent } from './components/IconPestControlRodent' +import { IconPets } from './components/IconPets' +import { IconPhone } from './components/IconPhone' +import { IconPhoneAndroid } from './components/IconPhoneAndroid' +import { IconPhoneBluetoothSpeaker } from './components/IconPhoneBluetoothSpeaker' +import { IconPhoneCallback } from './components/IconPhoneCallback' +import { IconPhoneDisabled } from './components/IconPhoneDisabled' +import { IconPhoneEnabled } from './components/IconPhoneEnabled' +import { IconPhoneForwarded } from './components/IconPhoneForwarded' +import { IconPhoneInTalk } from './components/IconPhoneInTalk' +import { IconPhoneIphone } from './components/IconPhoneIphone' +import { IconPhoneLocked } from './components/IconPhoneLocked' +import { IconPhoneMissed } from './components/IconPhoneMissed' +import { IconPhonePaused } from './components/IconPhonePaused' +import { IconPhonelink } from './components/IconPhonelink' +import { IconPhonelinkErase } from './components/IconPhonelinkErase' +import { IconPhonelinkLock } from './components/IconPhonelinkLock' +import { IconPhonelinkOff } from './components/IconPhonelinkOff' +import { IconPhonelinkRing } from './components/IconPhonelinkRing' +import { IconPhonelinkSetup } from './components/IconPhonelinkSetup' +import { IconPhoto } from './components/IconPhoto' +import { IconPhotoAlbum } from './components/IconPhotoAlbum' +import { IconPhotoCamera } from './components/IconPhotoCamera' +import { IconPhotoFilter } from './components/IconPhotoFilter' +import { IconPhotoLibrary } from './components/IconPhotoLibrary' +import { IconPhotoSizeSelectActual } from './components/IconPhotoSizeSelectActual' +import { IconPhotoSizeSelectLarge } from './components/IconPhotoSizeSelectLarge' +import { IconPhotoSizeSelectSmall } from './components/IconPhotoSizeSelectSmall' +import { IconPictureAsPdf } from './components/IconPictureAsPdf' +import { IconPictureInPicture } from './components/IconPictureInPicture' +import { IconPictureInPictureAlt } from './components/IconPictureInPictureAlt' +import { IconPieChart } from './components/IconPieChart' +import { IconPinDrop } from './components/IconPinDrop' +import { IconPlace } from './components/IconPlace' +import { IconPlagiarism } from './components/IconPlagiarism' +import { IconPlayArrow } from './components/IconPlayArrow' +import { IconPlayCircleFilled } from './components/IconPlayCircleFilled' +import { IconPlayCircleOutline } from './components/IconPlayCircleOutline' +import { IconPlayForWork } from './components/IconPlayForWork' +import { IconPlaylistAdd } from './components/IconPlaylistAdd' +import { IconPlaylistAddCheck } from './components/IconPlaylistAddCheck' +import { IconPlaylistPlay } from './components/IconPlaylistPlay' +import { IconPlumbing } from './components/IconPlumbing' +import { IconPlusOne } from './components/IconPlusOne' +import { IconPointOfSale } from './components/IconPointOfSale' +import { IconPolicy } from './components/IconPolicy' +import { IconPoll } from './components/IconPoll' +import { IconPolymer } from './components/IconPolymer' +import { IconPool } from './components/IconPool' +import { IconPortableWifiOff } from './components/IconPortableWifiOff' +import { IconPortrait } from './components/IconPortrait' +import { IconPostAdd } from './components/IconPostAdd' +import { IconPower } from './components/IconPower' +import { IconPowerInput } from './components/IconPowerInput' +import { IconPowerOff } from './components/IconPowerOff' +import { IconPowerSettingsNew } from './components/IconPowerSettingsNew' +import { IconPregnantWoman } from './components/IconPregnantWoman' +import { IconPresentToAll } from './components/IconPresentToAll' +import { IconPreview } from './components/IconPreview' +import { IconPrint } from './components/IconPrint' +import { IconPrintDisabled } from './components/IconPrintDisabled' +import { IconPriorityHigh } from './components/IconPriorityHigh' +import { IconPrivacyTip } from './components/IconPrivacyTip' +import { IconPsychology } from './components/IconPsychology' +import { IconPublic } from './components/IconPublic' +import { IconPublicOff } from './components/IconPublicOff' +import { IconPublish } from './components/IconPublish' +import { IconPublishedWithChanges } from './components/IconPublishedWithChanges' +import { IconPushPin } from './components/IconPushPin' +import { IconQrCode } from './components/IconQrCode' +import { IconQrCode2 } from './components/IconQrCode2' +import { IconQrCodeScanner } from './components/IconQrCodeScanner' +import { IconQueryBuilder } from './components/IconQueryBuilder' +import { IconQuestionAnswer } from './components/IconQuestionAnswer' +import { IconQueue } from './components/IconQueue' +import { IconQueueMusic } from './components/IconQueueMusic' +import { IconQueuePlayNext } from './components/IconQueuePlayNext' +import { IconQuickreply } from './components/IconQuickreply' +import { IconRadio } from './components/IconRadio' +import { IconRadioButtonChecked } from './components/IconRadioButtonChecked' +import { IconRadioButtonUnchecked } from './components/IconRadioButtonUnchecked' +import { IconRateReview } from './components/IconRateReview' +import { IconReadMore } from './components/IconReadMore' +import { IconReceipt } from './components/IconReceipt' +import { IconReceiptLong } from './components/IconReceiptLong' +import { IconRecentActors } from './components/IconRecentActors' +import { IconRecordVoiceOver } from './components/IconRecordVoiceOver' +import { IconRedeem } from './components/IconRedeem' +import { IconRedo } from './components/IconRedo' +import { IconReduceCapacity } from './components/IconReduceCapacity' +import { IconRefresh } from './components/IconRefresh' +import { IconRemove } from './components/IconRemove' +import { IconRemoveCircle } from './components/IconRemoveCircle' +import { IconRemoveCircleOutline } from './components/IconRemoveCircleOutline' +import { IconRemoveFromQueue } from './components/IconRemoveFromQueue' +import { IconRemoveRedEye } from './components/IconRemoveRedEye' +import { IconRemoveShoppingCart } from './components/IconRemoveShoppingCart' +import { IconReorder } from './components/IconReorder' +import { IconRepeat } from './components/IconRepeat' +import { IconRepeatOne } from './components/IconRepeatOne' +import { IconReplay } from './components/IconReplay' +import { IconReplay10 } from './components/IconReplay10' +import { IconReplay30 } from './components/IconReplay30' +import { IconReplay5 } from './components/IconReplay5' +import { IconReply } from './components/IconReply' +import { IconReplyAll } from './components/IconReplyAll' +import { IconReport } from './components/IconReport' +import { IconReportOff } from './components/IconReportOff' +import { IconReportProblem } from './components/IconReportProblem' +import { IconRequestPage } from './components/IconRequestPage' +import { IconRequestQuote } from './components/IconRequestQuote' +import { IconRestaurant } from './components/IconRestaurant' +import { IconRestaurantMenu } from './components/IconRestaurantMenu' +import { IconRestore } from './components/IconRestore' +import { IconRestoreFromTrash } from './components/IconRestoreFromTrash' +import { IconRestorePage } from './components/IconRestorePage' +import { IconRiceBowl } from './components/IconRiceBowl' +import { IconRingVolume } from './components/IconRingVolume' +import { IconRoofing } from './components/IconRoofing' +import { IconRoom } from './components/IconRoom' +import { IconRoomPreferences } from './components/IconRoomPreferences' +import { IconRoomService } from './components/IconRoomService' +import { IconRotate90DegreesCcw } from './components/IconRotate90DegreesCcw' +import { IconRotateLeft } from './components/IconRotateLeft' +import { IconRotateRight } from './components/IconRotateRight' +import { IconRoundedCorner } from './components/IconRoundedCorner' +import { IconRouter } from './components/IconRouter' +import { IconRowing } from './components/IconRowing' +import { IconRssFeed } from './components/IconRssFeed' +import { IconRule } from './components/IconRule' +import { IconRuleFolder } from './components/IconRuleFolder' +import { IconRunCircle } from './components/IconRunCircle' +import { IconRvHookup } from './components/IconRvHookup' +import { IconSanitizer } from './components/IconSanitizer' +import { IconSatellite } from './components/IconSatellite' +import { IconSave } from './components/IconSave' +import { IconSaveAlt } from './components/IconSaveAlt' +import { IconScanner } from './components/IconScanner' +import { IconScatterPlot } from './components/IconScatterPlot' +import { IconSchedule } from './components/IconSchedule' +import { IconSchool } from './components/IconSchool' +import { IconScience } from './components/IconScience' +import { IconScore } from './components/IconScore' +import { IconScreenLockLandscape } from './components/IconScreenLockLandscape' +import { IconScreenLockPortrait } from './components/IconScreenLockPortrait' +import { IconScreenLockRotation } from './components/IconScreenLockRotation' +import { IconScreenRotation } from './components/IconScreenRotation' +import { IconScreenShare } from './components/IconScreenShare' +import { IconSdCard } from './components/IconSdCard' +import { IconSdStorage } from './components/IconSdStorage' +import { IconSearch } from './components/IconSearch' +import { IconSearchOff } from './components/IconSearchOff' +import { IconSecurity } from './components/IconSecurity' +import { IconSelectAll } from './components/IconSelectAll' +import { IconSelfImprovement } from './components/IconSelfImprovement' +import { IconSend } from './components/IconSend' +import { IconSensorDoor } from './components/IconSensorDoor' +import { IconSensorWindow } from './components/IconSensorWindow' +import { IconSentimentDissatisfied } from './components/IconSentimentDissatisfied' +import { IconSentimentSatisfied } from './components/IconSentimentSatisfied' +import { IconSentimentSatisfiedAlt } from './components/IconSentimentSatisfiedAlt' +import { IconSentimentVeryDissatisfied } from './components/IconSentimentVeryDissatisfied' +import { IconSentimentVerySatisfied } from './components/IconSentimentVerySatisfied' +import { IconSetMeal } from './components/IconSetMeal' +import { IconSettings } from './components/IconSettings' +import { IconSettingsApplications } from './components/IconSettingsApplications' +import { IconSettingsBackupRestore } from './components/IconSettingsBackupRestore' +import { IconSettingsBluetooth } from './components/IconSettingsBluetooth' +import { IconSettingsBrightness } from './components/IconSettingsBrightness' +import { IconSettingsCell } from './components/IconSettingsCell' +import { IconSettingsEthernet } from './components/IconSettingsEthernet' +import { IconSettingsInputAntenna } from './components/IconSettingsInputAntenna' +import { IconSettingsInputComponent } from './components/IconSettingsInputComponent' +import { IconSettingsInputComposite } from './components/IconSettingsInputComposite' +import { IconSettingsInputHdmi } from './components/IconSettingsInputHdmi' +import { IconSettingsInputSvideo } from './components/IconSettingsInputSvideo' +import { IconSettingsOverscan } from './components/IconSettingsOverscan' +import { IconSettingsPhone } from './components/IconSettingsPhone' +import { IconSettingsPower } from './components/IconSettingsPower' +import { IconSettingsRemote } from './components/IconSettingsRemote' +import { IconSettingsSystemDaydream } from './components/IconSettingsSystemDaydream' +import { IconSettingsVoice } from './components/IconSettingsVoice' +import { IconShare } from './components/IconShare' +import { IconShop } from './components/IconShop' +import { IconShopTwo } from './components/IconShopTwo' +import { IconShoppingBag } from './components/IconShoppingBag' +import { IconShoppingBasket } from './components/IconShoppingBasket' +import { IconShoppingCart } from './components/IconShoppingCart' +import { IconShortText } from './components/IconShortText' +import { IconShowChart } from './components/IconShowChart' +import { IconShuffle } from './components/IconShuffle' +import { IconShutterSpeed } from './components/IconShutterSpeed' +import { IconSick } from './components/IconSick' +import { IconSignalCellular4Bar } from './components/IconSignalCellular4Bar' +import { IconSignalCellularAlt } from './components/IconSignalCellularAlt' +import { IconSignalCellularConnectedNoInternet4Bar } from './components/IconSignalCellularConnectedNoInternet4Bar' +import { IconSignalCellularNoSim } from './components/IconSignalCellularNoSim' +import { IconSignalCellularNull } from './components/IconSignalCellularNull' +import { IconSignalCellularOff } from './components/IconSignalCellularOff' +import { IconSignalWifi4Bar } from './components/IconSignalWifi4Bar' +import { IconSignalWifi4BarLock } from './components/IconSignalWifi4BarLock' +import { IconSignalWifiOff } from './components/IconSignalWifiOff' +import { IconSimCard } from './components/IconSimCard' +import { IconSingleBed } from './components/IconSingleBed' +import { IconSkipNext } from './components/IconSkipNext' +import { IconSkipPrevious } from './components/IconSkipPrevious' +import { IconSlideshow } from './components/IconSlideshow' +import { IconSlowMotionVideo } from './components/IconSlowMotionVideo' +import { IconSmartButton } from './components/IconSmartButton' +import { IconSmartphone } from './components/IconSmartphone' +import { IconSmokeFree } from './components/IconSmokeFree' +import { IconSmokingRooms } from './components/IconSmokingRooms' +import { IconSms } from './components/IconSms' +import { IconSmsFailed } from './components/IconSmsFailed' +import { IconSnippetFolder } from './components/IconSnippetFolder' +import { IconSnooze } from './components/IconSnooze' +import { IconSoap } from './components/IconSoap' +import { IconSort } from './components/IconSort' +import { IconSortByAlpha } from './components/IconSortByAlpha' +import { IconSource } from './components/IconSource' +import { IconSouth } from './components/IconSouth' +import { IconSouthEast } from './components/IconSouthEast' +import { IconSouthWest } from './components/IconSouthWest' +import { IconSpa } from './components/IconSpa' +import { IconSpaceBar } from './components/IconSpaceBar' +import { IconSpeaker } from './components/IconSpeaker' +import { IconSpeakerGroup } from './components/IconSpeakerGroup' +import { IconSpeakerNotes } from './components/IconSpeakerNotes' +import { IconSpeakerNotesOff } from './components/IconSpeakerNotesOff' +import { IconSpeakerPhone } from './components/IconSpeakerPhone' +import { IconSpeed } from './components/IconSpeed' +import { IconSpellcheck } from './components/IconSpellcheck' +import { IconSports } from './components/IconSports' +import { IconSportsBar } from './components/IconSportsBar' +import { IconSportsBaseball } from './components/IconSportsBaseball' +import { IconSportsBasketball } from './components/IconSportsBasketball' +import { IconSportsCricket } from './components/IconSportsCricket' +import { IconSportsEsports } from './components/IconSportsEsports' +import { IconSportsFootball } from './components/IconSportsFootball' +import { IconSportsGolf } from './components/IconSportsGolf' +import { IconSportsHandball } from './components/IconSportsHandball' +import { IconSportsHockey } from './components/IconSportsHockey' +import { IconSportsKabaddi } from './components/IconSportsKabaddi' +import { IconSportsMma } from './components/IconSportsMma' +import { IconSportsMotorsports } from './components/IconSportsMotorsports' +import { IconSportsRugby } from './components/IconSportsRugby' +import { IconSportsSoccer } from './components/IconSportsSoccer' +import { IconSportsTennis } from './components/IconSportsTennis' +import { IconSportsVolleyball } from './components/IconSportsVolleyball' +import { IconSquareFoot } from './components/IconSquareFoot' +import { IconStackedLineChart } from './components/IconStackedLineChart' +import { IconStairs } from './components/IconStairs' +import { IconStar } from './components/IconStar' +import { IconStarBorder } from './components/IconStarBorder' +import { IconStarHalf } from './components/IconStarHalf' +import { IconStarOutline } from './components/IconStarOutline' +import { IconStarRate } from './components/IconStarRate' +import { IconStars } from './components/IconStars' +import { IconStayCurrentLandscape } from './components/IconStayCurrentLandscape' +import { IconStayCurrentPortrait } from './components/IconStayCurrentPortrait' +import { IconStayPrimaryLandscape } from './components/IconStayPrimaryLandscape' +import { IconStayPrimaryPortrait } from './components/IconStayPrimaryPortrait' +import { IconStickyNote2 } from './components/IconStickyNote2' +import { IconStop } from './components/IconStop' +import { IconStopCircle } from './components/IconStopCircle' +import { IconStopScreenShare } from './components/IconStopScreenShare' +import { IconStorage } from './components/IconStorage' +import { IconStore } from './components/IconStore' +import { IconStoreMallDirectory } from './components/IconStoreMallDirectory' +import { IconStorefront } from './components/IconStorefront' +import { IconStraighten } from './components/IconStraighten' +import { IconStreetview } from './components/IconStreetview' +import { IconStrikethroughS } from './components/IconStrikethroughS' +import { IconStroller } from './components/IconStroller' +import { IconStyle } from './components/IconStyle' +import { IconSubdirectoryArrowLeft } from './components/IconSubdirectoryArrowLeft' +import { IconSubdirectoryArrowRight } from './components/IconSubdirectoryArrowRight' +import { IconSubject } from './components/IconSubject' +import { IconSubscript } from './components/IconSubscript' +import { IconSubscriptions } from './components/IconSubscriptions' +import { IconSubtitles } from './components/IconSubtitles' +import { IconSubtitlesOff } from './components/IconSubtitlesOff' +import { IconSubway } from './components/IconSubway' +import { IconSuperscript } from './components/IconSuperscript' +import { IconSupervisedUserCircle } from './components/IconSupervisedUserCircle' +import { IconSupervisorAccount } from './components/IconSupervisorAccount' +import { IconSupport } from './components/IconSupport' +import { IconSupportAgent } from './components/IconSupportAgent' +import { IconSurroundSound } from './components/IconSurroundSound' +import { IconSwapCalls } from './components/IconSwapCalls' +import { IconSwapHoriz } from './components/IconSwapHoriz' +import { IconSwapHorizontalCircle } from './components/IconSwapHorizontalCircle' +import { IconSwapVert } from './components/IconSwapVert' +import { IconSwapVerticalCircle } from './components/IconSwapVerticalCircle' +import { IconSwitchCamera } from './components/IconSwitchCamera' +import { IconSwitchLeft } from './components/IconSwitchLeft' +import { IconSwitchRight } from './components/IconSwitchRight' +import { IconSwitchVideo } from './components/IconSwitchVideo' +import { IconSync } from './components/IconSync' +import { IconSyncAlt } from './components/IconSyncAlt' +import { IconSyncDisabled } from './components/IconSyncDisabled' +import { IconSyncProblem } from './components/IconSyncProblem' +import { IconSystemUpdate } from './components/IconSystemUpdate' +import { IconSystemUpdateAlt } from './components/IconSystemUpdateAlt' +import { IconTab } from './components/IconTab' +import { IconTabUnselected } from './components/IconTabUnselected' +import { IconTableChart } from './components/IconTableChart' +import { IconTableRows } from './components/IconTableRows' +import { IconTableView } from './components/IconTableView' +import { IconTablet } from './components/IconTablet' +import { IconTabletAndroid } from './components/IconTabletAndroid' +import { IconTabletMac } from './components/IconTabletMac' +import { IconTagFaces } from './components/IconTagFaces' +import { IconTapAndPlay } from './components/IconTapAndPlay' +import { IconTapas } from './components/IconTapas' +import { IconTerrain } from './components/IconTerrain' +import { IconTextFields } from './components/IconTextFields' +import { IconTextFormat } from './components/IconTextFormat' +import { IconTextRotateUp } from './components/IconTextRotateUp' +import { IconTextRotateVertical } from './components/IconTextRotateVertical' +import { IconTextRotationAngledown } from './components/IconTextRotationAngledown' +import { IconTextRotationAngleup } from './components/IconTextRotationAngleup' +import { IconTextRotationDown } from './components/IconTextRotationDown' +import { IconTextRotationNone } from './components/IconTextRotationNone' +import { IconTextSnippet } from './components/IconTextSnippet' +import { IconTextsms } from './components/IconTextsms' +import { IconTexture } from './components/IconTexture' +import { IconTheaters } from './components/IconTheaters' +import { IconThumbDown } from './components/IconThumbDown' +import { IconThumbDownAlt } from './components/IconThumbDownAlt' +import { IconThumbUp } from './components/IconThumbUp' +import { IconThumbUpAlt } from './components/IconThumbUpAlt' +import { IconThumbsUpDown } from './components/IconThumbsUpDown' +import { IconTimeToLeave } from './components/IconTimeToLeave' +import { IconTimelapse } from './components/IconTimelapse' +import { IconTimeline } from './components/IconTimeline' +import { IconTimer } from './components/IconTimer' +import { IconTimer10 } from './components/IconTimer10' +import { IconTimer3 } from './components/IconTimer3' +import { IconTimerOff } from './components/IconTimerOff' +import { IconTitle } from './components/IconTitle' +import { IconToc } from './components/IconToc' +import { IconToday } from './components/IconToday' +import { IconToggleOff } from './components/IconToggleOff' +import { IconToggleOn } from './components/IconToggleOn' +import { IconToll } from './components/IconToll' +import { IconTonality } from './components/IconTonality' +import { IconTopic } from './components/IconTopic' +import { IconTouchApp } from './components/IconTouchApp' +import { IconTour } from './components/IconTour' +import { IconToys } from './components/IconToys' +import { IconTrackChanges } from './components/IconTrackChanges' +import { IconTraffic } from './components/IconTraffic' +import { IconTrain } from './components/IconTrain' +import { IconTram } from './components/IconTram' +import { IconTransferWithinAStation } from './components/IconTransferWithinAStation' +import { IconTransform } from './components/IconTransform' +import { IconTransitEnterexit } from './components/IconTransitEnterexit' +import { IconTranslate } from './components/IconTranslate' +import { IconTrendingDown } from './components/IconTrendingDown' +import { IconTrendingFlat } from './components/IconTrendingFlat' +import { IconTrendingUp } from './components/IconTrendingUp' +import { IconTripOrigin } from './components/IconTripOrigin' +import { IconTty } from './components/IconTty' +import { IconTune } from './components/IconTune' +import { IconTurnedIn } from './components/IconTurnedIn' +import { IconTurnedInNot } from './components/IconTurnedInNot' +import { IconTv } from './components/IconTv' +import { IconTvOff } from './components/IconTvOff' +import { IconTwoWheeler } from './components/IconTwoWheeler' +import { IconUmbrella } from './components/IconUmbrella' +import { IconUnarchive } from './components/IconUnarchive' +import { IconUndo } from './components/IconUndo' +import { IconUnfoldLess } from './components/IconUnfoldLess' +import { IconUnfoldMore } from './components/IconUnfoldMore' +import { IconUnpublished } from './components/IconUnpublished' +import { IconUnsubscribe } from './components/IconUnsubscribe' +import { IconUpdate } from './components/IconUpdate' +import { IconUpdateDisabled } from './components/IconUpdateDisabled' +import { IconUpgrade } from './components/IconUpgrade' +import { IconUsb } from './components/IconUsb' +import { IconVerified } from './components/IconVerified' +import { IconVerifiedUser } from './components/IconVerifiedUser' +import { IconVerticalAlignBottom } from './components/IconVerticalAlignBottom' +import { IconVerticalAlignCenter } from './components/IconVerticalAlignCenter' +import { IconVerticalAlignTop } from './components/IconVerticalAlignTop' +import { IconVerticalDistribute } from './components/IconVerticalDistribute' +import { IconVerticalSplit } from './components/IconVerticalSplit' +import { IconVibration } from './components/IconVibration' +import { IconVideoCall } from './components/IconVideoCall' +import { IconVideoLabel } from './components/IconVideoLabel' +import { IconVideoLibrary } from './components/IconVideoLibrary' +import { IconVideoSettings } from './components/IconVideoSettings' +import { IconVideocam } from './components/IconVideocam' +import { IconVideocamOff } from './components/IconVideocamOff' +import { IconVideogameAsset } from './components/IconVideogameAsset' +import { IconViewAgenda } from './components/IconViewAgenda' +import { IconViewArray } from './components/IconViewArray' +import { IconViewCarousel } from './components/IconViewCarousel' +import { IconViewColumn } from './components/IconViewColumn' +import { IconViewComfy } from './components/IconViewComfy' +import { IconViewCompact } from './components/IconViewCompact' +import { IconViewDay } from './components/IconViewDay' +import { IconViewHeadline } from './components/IconViewHeadline' +import { IconViewList } from './components/IconViewList' +import { IconViewModule } from './components/IconViewModule' +import { IconViewQuilt } from './components/IconViewQuilt' +import { IconViewSidebar } from './components/IconViewSidebar' +import { IconViewStream } from './components/IconViewStream' +import { IconViewWeek } from './components/IconViewWeek' +import { IconVignette } from './components/IconVignette' +import { IconVisibility } from './components/IconVisibility' +import { IconVisibilityOff } from './components/IconVisibilityOff' +import { IconVoiceChat } from './components/IconVoiceChat' +import { IconVoiceOverOff } from './components/IconVoiceOverOff' +import { IconVoicemail } from './components/IconVoicemail' +import { IconVolumeDown } from './components/IconVolumeDown' +import { IconVolumeMute } from './components/IconVolumeMute' +import { IconVolumeOff } from './components/IconVolumeOff' +import { IconVolumeUp } from './components/IconVolumeUp' +import { IconVpnKey } from './components/IconVpnKey' +import { IconVpnLock } from './components/IconVpnLock' +import { IconWallpaper } from './components/IconWallpaper' +import { IconWarning } from './components/IconWarning' +import { IconWash } from './components/IconWash' +import { IconWatch } from './components/IconWatch' +import { IconWatchLater } from './components/IconWatchLater' +import { IconWaterDamage } from './components/IconWaterDamage' +import { IconWaves } from './components/IconWaves' +import { IconWbAuto } from './components/IconWbAuto' +import { IconWbCloudy } from './components/IconWbCloudy' +import { IconWbIncandescent } from './components/IconWbIncandescent' +import { IconWbIridescent } from './components/IconWbIridescent' +import { IconWbSunny } from './components/IconWbSunny' +import { IconWc } from './components/IconWc' +import { IconWeb } from './components/IconWeb' +import { IconWebAsset } from './components/IconWebAsset' +import { IconWeekend } from './components/IconWeekend' +import { IconWest } from './components/IconWest' +import { IconWhatshot } from './components/IconWhatshot' +import { IconWheelchairPickup } from './components/IconWheelchairPickup' +import { IconWhereToVote } from './components/IconWhereToVote' +import { IconWidgets } from './components/IconWidgets' +import { IconWifi } from './components/IconWifi' +import { IconWifiCalling } from './components/IconWifiCalling' +import { IconWifiLock } from './components/IconWifiLock' +import { IconWifiOff } from './components/IconWifiOff' +import { IconWifiProtectedSetup } from './components/IconWifiProtectedSetup' +import { IconWifiTethering } from './components/IconWifiTethering' +import { IconWineBar } from './components/IconWineBar' +import { IconWork } from './components/IconWork' +import { IconWorkOff } from './components/IconWorkOff' +import { IconWorkOutline } from './components/IconWorkOutline' +import { IconWrapText } from './components/IconWrapText' +import { IconWrongLocation } from './components/IconWrongLocation' +import { IconWysiwyg } from './components/IconWysiwyg' +import { IconYoutubeSearchedFor } from './components/IconYoutubeSearchedFor' +import { IconZoomIn } from './components/IconZoomIn' +import { IconZoomOut } from './components/IconZoomOut' +import { IconZoomOutMap } from './components/IconZoomOutMap' + +export { + Icon360, + Icon3dRotation, + Icon4k, + Icon5g, + Icon6FtApart, + IconAcUnit, + IconAccessAlarm, + IconAccessAlarms, + IconAccessTime, + IconAccessibility, + IconAccessibilityNew, + IconAccessible, + IconAccessibleForward, + IconAccountBalance, + IconAccountBalanceWallet, + IconAccountBox, + IconAccountCircle, + IconAccountTree, + IconAdUnits, + IconAdb, + IconAdd, + IconAddAPhoto, + IconAddAlarm, + IconAddAlert, + IconAddBox, + IconAddBusiness, + IconAddCircle, + IconAddCircleOutline, + IconAddComment, + IconAddIcCall, + IconAddLocation, + IconAddLocationAlt, + IconAddPhotoAlternate, + IconAddRoad, + IconAddShoppingCart, + IconAddTask, + IconAddToHomeScreen, + IconAddToPhotos, + IconAddToQueue, + IconAddchart, + IconAdjust, + IconAdminPanelSettings, + IconAgriculture, + IconAirlineSeatFlat, + IconAirlineSeatFlatAngled, + IconAirlineSeatIndividualSuite, + IconAirlineSeatLegroomExtra, + IconAirlineSeatLegroomNormal, + IconAirlineSeatLegroomReduced, + IconAirlineSeatReclineExtra, + IconAirlineSeatReclineNormal, + IconAirplanemodeActive, + IconAirplanemodeInactive, + IconAirplay, + IconAirportShuttle, + IconAlarm, + IconAlarmAdd, + IconAlarmOff, + IconAlarmOn, + IconAlbum, + IconAlignHorizontalCenter, + IconAlignHorizontalLeft, + IconAlignHorizontalRight, + IconAlignVerticalBottom, + IconAlignVerticalCenter, + IconAlignVerticalTop, + IconAllInbox, + IconAllInclusive, + IconAllOut, + IconAltRoute, + IconAlternateEmail, + IconAmpStories, + IconAnalytics, + IconAnchor, + IconAndroid, + IconAnnouncement, + IconApartment, + IconApi, + IconAppBlocking, + IconAppSettingsAlt, + IconApps, + IconArchitecture, + IconArchive, + IconArrowBack, + IconArrowBackIos, + IconArrowCircleDown, + IconArrowCircleUp, + IconArrowDownward, + IconArrowDropDown, + IconArrowDropDownCircle, + IconArrowDropUp, + IconArrowForward, + IconArrowForwardIos, + IconArrowLeft, + IconArrowRight, + IconArrowRightAlt, + IconArrowUpward, + IconArtTrack, + IconArticle, + IconAspectRatio, + IconAssessment, + IconAssignment, + IconAssignmentInd, + IconAssignmentLate, + IconAssignmentReturn, + IconAssignmentReturned, + IconAssignmentTurnedIn, + IconAssistant, + IconAssistantPhoto, + IconAtm, + IconAttachEmail, + IconAttachFile, + IconAttachMoney, + IconAttachment, + IconAudiotrack, + IconAutoDelete, + IconAutorenew, + IconAvTimer, + IconBabyChangingStation, + IconBackpack, + IconBackspace, + IconBackup, + IconBackupTable, + IconBallot, + IconBarChart, + IconBatchPrediction, + IconBathtub, + IconBatteryAlert, + IconBatteryChargingFull, + IconBatteryFull, + IconBatteryStd, + IconBatteryUnknown, + IconBeachAccess, + IconBedtime, + IconBeenhere, + IconBento, + IconBikeScooter, + IconBiotech, + IconBlock, + IconBluetooth, + IconBluetoothAudio, + IconBluetoothConnected, + IconBluetoothDisabled, + IconBluetoothSearching, + IconBlurCircular, + IconBlurLinear, + IconBlurOff, + IconBlurOn, + IconBook, + IconBookOnline, + IconBookmark, + IconBookmarkBorder, + IconBookmarks, + IconBorderAll, + IconBorderBottom, + IconBorderClear, + IconBorderHorizontal, + IconBorderInner, + IconBorderLeft, + IconBorderOuter, + IconBorderRight, + IconBorderStyle, + IconBorderTop, + IconBorderVertical, + IconBrandingWatermark, + IconBrightness1, + IconBrightness2, + IconBrightness3, + IconBrightness4, + IconBrightness5, + IconBrightness6, + IconBrightness7, + IconBrightnessAuto, + IconBrightnessHigh, + IconBrightnessLow, + IconBrightnessMedium, + IconBrokenImage, + IconBrowserNotSupported, + IconBrush, + IconBubbleChart, + IconBugReport, + IconBuild, + IconBuildCircle, + IconBurstMode, + IconBusiness, + IconBusinessCenter, + IconCached, + IconCake, + IconCalculate, + IconCalendarToday, + IconCalendarViewDay, + IconCall, + IconCallEnd, + IconCallMade, + IconCallMerge, + IconCallMissed, + IconCallMissedOutgoing, + IconCallReceived, + IconCallSplit, + IconCallToAction, + IconCamera, + IconCameraAlt, + IconCameraEnhance, + IconCameraFront, + IconCameraRear, + IconCameraRoll, + IconCampaign, + IconCancel, + IconCancelPresentation, + IconCancelScheduleSend, + IconCardGiftcard, + IconCardMembership, + IconCardTravel, + IconCarpenter, + IconCasino, + IconCast, + IconCastConnected, + IconCastForEducation, + IconCategory, + IconCenterFocusStrong, + IconCenterFocusWeak, + IconChangeHistory, + IconChargingStation, + IconChat, + IconChatBubble, + IconChatBubbleOutline, + IconCheck, + IconCheckBox, + IconCheckBoxOutlineBlank, + IconCheckCircle, + IconCheckCircleOutline, + IconCheckroom, + IconChevronLeft, + IconChevronRight, + IconChildCare, + IconChildFriendly, + IconChromeReaderMode, + IconClass, + IconCleanHands, + IconCleaningServices, + IconClear, + IconClearAll, + IconClose, + IconCloseFullscreen, + IconClosedCaption, + IconClosedCaptionDisabled, + IconCloud, + IconCloudCircle, + IconCloudDone, + IconCloudDownload, + IconCloudOff, + IconCloudQueue, + IconCloudUpload, + IconCode, + IconCollections, + IconCollectionsBookmark, + IconColorLens, + IconColorize, + IconComment, + IconCommentBank, + IconCommute, + IconCompare, + IconCompareArrows, + IconCompassCalibration, + IconComputer, + IconConfirmationNumber, + IconConnectWithoutContact, + IconConstruction, + IconContactMail, + IconContactPage, + IconContactPhone, + IconContactSupport, + IconContactless, + IconContacts, + IconContentCopy, + IconContentCut, + IconContentPaste, + IconControlCamera, + IconControlPoint, + IconControlPointDuplicate, + IconCopyright, + IconCoronavirus, + IconCorporateFare, + IconCountertops, + IconCreate, + IconCreateNewFolder, + IconCreditCard, + IconCrop, + IconCrop169, + IconCrop32, + IconCrop54, + IconCrop75, + IconCropDin, + IconCropFree, + IconCropLandscape, + IconCropOriginal, + IconCropPortrait, + IconCropRotate, + IconCropSquare, + IconDashboard, + IconDataUsage, + IconDateRange, + IconDeck, + IconDehaze, + IconDelete, + IconDeleteForever, + IconDeleteOutline, + IconDeleteSweep, + IconDepartureBoard, + IconDescription, + IconDesignServices, + IconDesktopAccessDisabled, + IconDesktopMac, + IconDesktopWindows, + IconDetails, + IconDeveloperBoard, + IconDeveloperMode, + IconDeviceHub, + IconDeviceUnknown, + IconDevices, + IconDevicesOther, + IconDialerSip, + IconDialpad, + IconDirections, + IconDirectionsBike, + IconDirectionsBoat, + IconDirectionsBus, + IconDirectionsCar, + IconDirectionsOff, + IconDirectionsRailway, + IconDirectionsRun, + IconDirectionsSubway, + IconDirectionsTransit, + IconDirectionsWalk, + IconDisabledByDefault, + IconDiscFull, + IconDns, + IconDoNotStep, + IconDoNotTouch, + IconDock, + IconDomain, + IconDomainDisabled, + IconDomainVerification, + IconDone, + IconDoneAll, + IconDoneOutline, + IconDonutLarge, + IconDonutSmall, + IconDoubleArrow, + IconDrafts, + IconDragHandle, + IconDragIndicator, + IconDriveEta, + IconDry, + IconDuo, + IconDvr, + IconDynamicFeed, + IconDynamicForm, + IconEast, + IconEco, + IconEdit, + IconEditAttributes, + IconEditLocation, + IconEditRoad, + IconEject, + IconElderly, + IconElectricBike, + IconElectricCar, + IconElectricMoped, + IconElectricScooter, + IconElectricalServices, + IconElevator, + IconEmail, + IconEmojiEmotions, + IconEmojiEvents, + IconEmojiFlags, + IconEmojiFoodBeverage, + IconEmojiNature, + IconEmojiObjects, + IconEmojiPeople, + IconEmojiSymbols, + IconEmojiTransportation, + IconEngineering, + IconEnhancedEncryption, + IconEqualizer, + IconError, + IconErrorOutline, + IconEscalator, + IconEscalatorWarning, + IconEuro, + IconEuroSymbol, + IconEvStation, + IconEvent, + IconEventAvailable, + IconEventBusy, + IconEventNote, + IconEventSeat, + IconExitToApp, + IconExpandLess, + IconExpandMore, + IconExplicit, + IconExplore, + IconExploreOff, + IconExposure, + IconExposureNeg1, + IconExposureNeg2, + IconExposurePlus1, + IconExposurePlus2, + IconExposureZero, + IconExtension, + IconFace, + IconFacebook, + IconFactCheck, + IconFamilyRestroom, + IconFastForward, + IconFastRewind, + IconFastfood, + IconFavorite, + IconFavoriteBorder, + IconFeaturedPlayList, + IconFeaturedVideo, + IconFeedback, + IconFence, + IconFiberDvr, + IconFiberManualRecord, + IconFiberNew, + IconFiberPin, + IconFiberSmartRecord, + IconFileCopy, + IconFilter, + IconFilter1, + IconFilter2, + IconFilter3, + IconFilter4, + IconFilter5, + IconFilter6, + IconFilter7, + IconFilter8, + IconFilter9, + IconFilter9Plus, + IconFilterAlt, + IconFilterBAndW, + IconFilterCenterFocus, + IconFilterDrama, + IconFilterFrames, + IconFilterHdr, + IconFilterList, + IconFilterNone, + IconFilterTiltShift, + IconFilterVintage, + IconFindInPage, + IconFindReplace, + IconFingerprint, + IconFireExtinguisher, + IconFireplace, + IconFirstPage, + IconFitnessCenter, + IconFlag, + IconFlaky, + IconFlare, + IconFlashAuto, + IconFlashOff, + IconFlashOn, + IconFlight, + IconFlightLand, + IconFlightTakeoff, + IconFlip, + IconFlipCameraAndroid, + IconFlipCameraIos, + IconFlipToBack, + IconFlipToFront, + IconFolder, + IconFolderOpen, + IconFolderShared, + IconFolderSpecial, + IconFollowTheSigns, + IconFontDownload, + IconFoodBank, + IconFormatAlignCenter, + IconFormatAlignJustify, + IconFormatAlignLeft, + IconFormatAlignRight, + IconFormatBold, + IconFormatClear, + IconFormatColorReset, + IconFormatIndentDecrease, + IconFormatIndentIncrease, + IconFormatItalic, + IconFormatLineSpacing, + IconFormatListBulleted, + IconFormatListNumbered, + IconFormatListNumberedRtl, + IconFormatPaint, + IconFormatQuote, + IconFormatShapes, + IconFormatSize, + IconFormatStrikethrough, + IconFormatTextdirectionLToR, + IconFormatTextdirectionRToL, + IconFormatUnderlined, + IconForum, + IconForward, + IconForward10, + IconForward30, + IconForward5, + IconForwardToInbox, + IconFoundation, + IconFreeBreakfast, + IconFullscreen, + IconFullscreenExit, + IconFunctions, + IconGTranslate, + IconGamepad, + IconGames, + IconGavel, + IconGesture, + IconGetApp, + IconGif, + IconGolfCourse, + IconGpsFixed, + IconGpsNotFixed, + IconGpsOff, + IconGrade, + IconGradient, + IconGrading, + IconGrain, + IconGraphicEq, + IconGrass, + IconGridOff, + IconGridOn, + IconGroup, + IconGroupAdd, + IconGroupWork, + IconGroups, + IconHandyman, + IconHd, + IconHdrOff, + IconHdrOn, + IconHdrStrong, + IconHdrWeak, + IconHeadset, + IconHeadsetMic, + IconHealing, + IconHearing, + IconHearingDisabled, + IconHeight, + IconHelp, + IconHelpCenter, + IconHelpOutline, + IconHighQuality, + IconHighlight, + IconHighlightAlt, + IconHighlightOff, + IconHistory, + IconHistoryEdu, + IconHistoryToggleOff, + IconHome, + IconHomeRepairService, + IconHomeWork, + IconHorizontalDistribute, + IconHorizontalRule, + IconHorizontalSplit, + IconHotTub, + IconHotel, + IconHourglassBottom, + IconHourglassDisabled, + IconHourglassEmpty, + IconHourglassFull, + IconHourglassTop, + IconHouse, + IconHouseSiding, + IconHowToReg, + IconHowToVote, + IconHttp, + IconHttps, + IconHvac, + IconImage, + IconImageAspectRatio, + IconImageNotSupported, + IconImageSearch, + IconImportContacts, + IconImportExport, + IconImportantDevices, + IconInbox, + IconIndeterminateCheckBox, + IconInfo, + IconInput, + IconInsertChart, + IconInsertChartOutlined, + IconInsertComment, + IconInsertDriveFile, + IconInsertEmoticon, + IconInsertInvitation, + IconInsertLink, + IconInsertPhoto, + IconInsights, + IconIntegrationInstructions, + IconInvertColors, + IconInvertColorsOff, + IconIso, + IconKeyboard, + IconKeyboardArrowDown, + IconKeyboardArrowLeft, + IconKeyboardArrowRight, + IconKeyboardArrowUp, + IconKeyboardBackspace, + IconKeyboardCapslock, + IconKeyboardHide, + IconKeyboardReturn, + IconKeyboardTab, + IconKeyboardVoice, + IconKingBed, + IconKitchen, + IconLabel, + IconLabelImportant, + IconLabelOff, + IconLandscape, + IconLanguage, + IconLaptop, + IconLaptopChromebook, + IconLaptopMac, + IconLaptopWindows, + IconLastPage, + IconLaunch, + IconLayers, + IconLayersClear, + IconLeaderboard, + IconLeakAdd, + IconLeakRemove, + IconLegendToggle, + IconLens, + IconLibraryAdd, + IconLibraryAddCheck, + IconLibraryBooks, + IconLibraryMusic, + IconLineStyle, + IconLineWeight, + IconLinearScale, + IconLink, + IconLinkOff, + IconLinkedCamera, + IconList, + IconListAlt, + IconLiveHelp, + IconLiveTv, + IconLocalActivity, + IconLocalAirport, + IconLocalAtm, + IconLocalBar, + IconLocalCafe, + IconLocalCarWash, + IconLocalConvenienceStore, + IconLocalDining, + IconLocalDrink, + IconLocalFireDepartment, + IconLocalFlorist, + IconLocalGasStation, + IconLocalGroceryStore, + IconLocalHospital, + IconLocalHotel, + IconLocalLaundryService, + IconLocalLibrary, + IconLocalMall, + IconLocalMovies, + IconLocalOffer, + IconLocalParking, + IconLocalPharmacy, + IconLocalPhone, + IconLocalPizza, + IconLocalPlay, + IconLocalPolice, + IconLocalPostOffice, + IconLocalPrintshop, + IconLocalSee, + IconLocalShipping, + IconLocalTaxi, + IconLocationCity, + IconLocationDisabled, + IconLocationOff, + IconLocationOn, + IconLocationSearching, + IconLock, + IconLockOpen, + IconLogin, + IconLooks, + IconLooks3, + IconLooks4, + IconLooks5, + IconLooks6, + IconLooksOne, + IconLooksTwo, + IconLoop, + IconLoupe, + IconLowPriority, + IconLoyalty, + IconLuggage, + IconMail, + IconMailOutline, + IconMap, + IconMapsUgc, + IconMarkChatRead, + IconMarkChatUnread, + IconMarkEmailRead, + IconMarkEmailUnread, + IconMarkunread, + IconMarkunreadMailbox, + IconMasks, + IconMaximize, + IconMediation, + IconMedicalServices, + IconMeetingRoom, + IconMemory, + IconMenu, + IconMenuBook, + IconMenuOpen, + IconMergeType, + IconMessage, + IconMic, + IconMicNone, + IconMicOff, + IconMicrowave, + IconMilitaryTech, + IconMinimize, + IconMiscellaneousServices, + IconMissedVideoCall, + IconMms, + IconMobileFriendly, + IconMobileOff, + IconMobileScreenShare, + IconModeComment, + IconModelTraining, + IconMonetizationOn, + IconMoney, + IconMoneyOff, + IconMonochromePhotos, + IconMood, + IconMoodBad, + IconMoped, + IconMore, + IconMoreHoriz, + IconMoreTime, + IconMoreVert, + IconMotionPhotosOn, + IconMotionPhotosPause, + IconMotionPhotosPaused, + IconMouse, + IconMoveToInbox, + IconMovie, + IconMovieCreation, + IconMovieFilter, + IconMultilineChart, + IconMultipleStop, + IconMuseum, + IconMusicNote, + IconMusicOff, + IconMusicVideo, + IconMyLocation, + IconNat, + IconNature, + IconNaturePeople, + IconNavigateBefore, + IconNavigateNext, + IconNavigation, + IconNearMe, + IconNearMeDisabled, + IconNetworkCheck, + IconNetworkLocked, + IconNewReleases, + IconNextPlan, + IconNextWeek, + IconNfc, + IconNightShelter, + IconNightsStay, + IconNoBackpack, + IconNoCell, + IconNoDrinks, + IconNoEncryption, + IconNoFlash, + IconNoFood, + IconNoLuggage, + IconNoMeals, + IconNoMeetingRoom, + IconNoPhotography, + IconNoSim, + IconNoStroller, + IconNoTransfer, + IconNorth, + IconNorthEast, + IconNorthWest, + IconNotAccessible, + IconNotInterested, + IconNotListedLocation, + IconNotStarted, + IconNote, + IconNoteAdd, + IconNotes, + IconNotificationImportant, + IconNotifications, + IconNotificationsActive, + IconNotificationsNone, + IconNotificationsOff, + IconNotificationsPaused, + IconOfflineBolt, + IconOfflinePin, + IconOndemandVideo, + IconOnlinePrediction, + IconOpacity, + IconOpenInBrowser, + IconOpenInFull, + IconOpenInNew, + IconOpenWith, + IconOutbond, + IconOutdoorGrill, + IconOutlet, + IconOutlinedFlag, + IconPages, + IconPageview, + IconPalette, + IconPanTool, + IconPanorama, + IconPanoramaFishEye, + IconPanoramaHorizontal, + IconPanoramaVertical, + IconPanoramaWideAngle, + IconPartyMode, + IconPause, + IconPauseCircleFilled, + IconPauseCircleOutline, + IconPausePresentation, + IconPayment, + IconPayments, + IconPedalBike, + IconPending, + IconPendingActions, + IconPeople, + IconPeopleAlt, + IconPeopleOutline, + IconPermCameraMic, + IconPermContactCalendar, + IconPermDataSetting, + IconPermDeviceInformation, + IconPermIdentity, + IconPermMedia, + IconPermPhoneMsg, + IconPermScanWifi, + IconPerson, + IconPersonAdd, + IconPersonAddAlt1, + IconPersonAddDisabled, + IconPersonOutline, + IconPersonPin, + IconPersonPinCircle, + IconPersonRemove, + IconPersonRemoveAlt1, + IconPersonSearch, + IconPersonalVideo, + IconPestControl, + IconPestControlRodent, + IconPets, + IconPhone, + IconPhoneAndroid, + IconPhoneBluetoothSpeaker, + IconPhoneCallback, + IconPhoneDisabled, + IconPhoneEnabled, + IconPhoneForwarded, + IconPhoneInTalk, + IconPhoneIphone, + IconPhoneLocked, + IconPhoneMissed, + IconPhonePaused, + IconPhonelink, + IconPhonelinkErase, + IconPhonelinkLock, + IconPhonelinkOff, + IconPhonelinkRing, + IconPhonelinkSetup, + IconPhoto, + IconPhotoAlbum, + IconPhotoCamera, + IconPhotoFilter, + IconPhotoLibrary, + IconPhotoSizeSelectActual, + IconPhotoSizeSelectLarge, + IconPhotoSizeSelectSmall, + IconPictureAsPdf, + IconPictureInPicture, + IconPictureInPictureAlt, + IconPieChart, + IconPinDrop, + IconPlace, + IconPlagiarism, + IconPlayArrow, + IconPlayCircleFilled, + IconPlayCircleOutline, + IconPlayForWork, + IconPlaylistAdd, + IconPlaylistAddCheck, + IconPlaylistPlay, + IconPlumbing, + IconPlusOne, + IconPointOfSale, + IconPolicy, + IconPoll, + IconPolymer, + IconPool, + IconPortableWifiOff, + IconPortrait, + IconPostAdd, + IconPower, + IconPowerInput, + IconPowerOff, + IconPowerSettingsNew, + IconPregnantWoman, + IconPresentToAll, + IconPreview, + IconPrint, + IconPrintDisabled, + IconPriorityHigh, + IconPrivacyTip, + IconPsychology, + IconPublic, + IconPublicOff, + IconPublish, + IconPublishedWithChanges, + IconPushPin, + IconQrCode, + IconQrCode2, + IconQrCodeScanner, + IconQueryBuilder, + IconQuestionAnswer, + IconQueue, + IconQueueMusic, + IconQueuePlayNext, + IconQuickreply, + IconRadio, + IconRadioButtonChecked, + IconRadioButtonUnchecked, + IconRateReview, + IconReadMore, + IconReceipt, + IconReceiptLong, + IconRecentActors, + IconRecordVoiceOver, + IconRedeem, + IconRedo, + IconReduceCapacity, + IconRefresh, + IconRemove, + IconRemoveCircle, + IconRemoveCircleOutline, + IconRemoveFromQueue, + IconRemoveRedEye, + IconRemoveShoppingCart, + IconReorder, + IconRepeat, + IconRepeatOne, + IconReplay, + IconReplay10, + IconReplay30, + IconReplay5, + IconReply, + IconReplyAll, + IconReport, + IconReportOff, + IconReportProblem, + IconRequestPage, + IconRequestQuote, + IconRestaurant, + IconRestaurantMenu, + IconRestore, + IconRestoreFromTrash, + IconRestorePage, + IconRiceBowl, + IconRingVolume, + IconRoofing, + IconRoom, + IconRoomPreferences, + IconRoomService, + IconRotate90DegreesCcw, + IconRotateLeft, + IconRotateRight, + IconRoundedCorner, + IconRouter, + IconRowing, + IconRssFeed, + IconRule, + IconRuleFolder, + IconRunCircle, + IconRvHookup, + IconSanitizer, + IconSatellite, + IconSave, + IconSaveAlt, + IconScanner, + IconScatterPlot, + IconSchedule, + IconSchool, + IconScience, + IconScore, + IconScreenLockLandscape, + IconScreenLockPortrait, + IconScreenLockRotation, + IconScreenRotation, + IconScreenShare, + IconSdCard, + IconSdStorage, + IconSearch, + IconSearchOff, + IconSecurity, + IconSelectAll, + IconSelfImprovement, + IconSend, + IconSensorDoor, + IconSensorWindow, + IconSentimentDissatisfied, + IconSentimentSatisfied, + IconSentimentSatisfiedAlt, + IconSentimentVeryDissatisfied, + IconSentimentVerySatisfied, + IconSetMeal, + IconSettings, + IconSettingsApplications, + IconSettingsBackupRestore, + IconSettingsBluetooth, + IconSettingsBrightness, + IconSettingsCell, + IconSettingsEthernet, + IconSettingsInputAntenna, + IconSettingsInputComponent, + IconSettingsInputComposite, + IconSettingsInputHdmi, + IconSettingsInputSvideo, + IconSettingsOverscan, + IconSettingsPhone, + IconSettingsPower, + IconSettingsRemote, + IconSettingsSystemDaydream, + IconSettingsVoice, + IconShare, + IconShop, + IconShopTwo, + IconShoppingBag, + IconShoppingBasket, + IconShoppingCart, + IconShortText, + IconShowChart, + IconShuffle, + IconShutterSpeed, + IconSick, + IconSignalCellular4Bar, + IconSignalCellularAlt, + IconSignalCellularConnectedNoInternet4Bar, + IconSignalCellularNoSim, + IconSignalCellularNull, + IconSignalCellularOff, + IconSignalWifi4Bar, + IconSignalWifi4BarLock, + IconSignalWifiOff, + IconSimCard, + IconSingleBed, + IconSkipNext, + IconSkipPrevious, + IconSlideshow, + IconSlowMotionVideo, + IconSmartButton, + IconSmartphone, + IconSmokeFree, + IconSmokingRooms, + IconSms, + IconSmsFailed, + IconSnippetFolder, + IconSnooze, + IconSoap, + IconSort, + IconSortByAlpha, + IconSource, + IconSouth, + IconSouthEast, + IconSouthWest, + IconSpa, + IconSpaceBar, + IconSpeaker, + IconSpeakerGroup, + IconSpeakerNotes, + IconSpeakerNotesOff, + IconSpeakerPhone, + IconSpeed, + IconSpellcheck, + IconSports, + IconSportsBar, + IconSportsBaseball, + IconSportsBasketball, + IconSportsCricket, + IconSportsEsports, + IconSportsFootball, + IconSportsGolf, + IconSportsHandball, + IconSportsHockey, + IconSportsKabaddi, + IconSportsMma, + IconSportsMotorsports, + IconSportsRugby, + IconSportsSoccer, + IconSportsTennis, + IconSportsVolleyball, + IconSquareFoot, + IconStackedLineChart, + IconStairs, + IconStar, + IconStarBorder, + IconStarHalf, + IconStarOutline, + IconStarRate, + IconStars, + IconStayCurrentLandscape, + IconStayCurrentPortrait, + IconStayPrimaryLandscape, + IconStayPrimaryPortrait, + IconStickyNote2, + IconStop, + IconStopCircle, + IconStopScreenShare, + IconStorage, + IconStore, + IconStoreMallDirectory, + IconStorefront, + IconStraighten, + IconStreetview, + IconStrikethroughS, + IconStroller, + IconStyle, + IconSubdirectoryArrowLeft, + IconSubdirectoryArrowRight, + IconSubject, + IconSubscript, + IconSubscriptions, + IconSubtitles, + IconSubtitlesOff, + IconSubway, + IconSuperscript, + IconSupervisedUserCircle, + IconSupervisorAccount, + IconSupport, + IconSupportAgent, + IconSurroundSound, + IconSwapCalls, + IconSwapHoriz, + IconSwapHorizontalCircle, + IconSwapVert, + IconSwapVerticalCircle, + IconSwitchCamera, + IconSwitchLeft, + IconSwitchRight, + IconSwitchVideo, + IconSync, + IconSyncAlt, + IconSyncDisabled, + IconSyncProblem, + IconSystemUpdate, + IconSystemUpdateAlt, + IconTab, + IconTabUnselected, + IconTableChart, + IconTableRows, + IconTableView, + IconTablet, + IconTabletAndroid, + IconTabletMac, + IconTagFaces, + IconTapAndPlay, + IconTapas, + IconTerrain, + IconTextFields, + IconTextFormat, + IconTextRotateUp, + IconTextRotateVertical, + IconTextRotationAngledown, + IconTextRotationAngleup, + IconTextRotationDown, + IconTextRotationNone, + IconTextSnippet, + IconTextsms, + IconTexture, + IconTheaters, + IconThumbDown, + IconThumbDownAlt, + IconThumbUp, + IconThumbUpAlt, + IconThumbsUpDown, + IconTimeToLeave, + IconTimelapse, + IconTimeline, + IconTimer, + IconTimer10, + IconTimer3, + IconTimerOff, + IconTitle, + IconToc, + IconToday, + IconToggleOff, + IconToggleOn, + IconToll, + IconTonality, + IconTopic, + IconTouchApp, + IconTour, + IconToys, + IconTrackChanges, + IconTraffic, + IconTrain, + IconTram, + IconTransferWithinAStation, + IconTransform, + IconTransitEnterexit, + IconTranslate, + IconTrendingDown, + IconTrendingFlat, + IconTrendingUp, + IconTripOrigin, + IconTty, + IconTune, + IconTurnedIn, + IconTurnedInNot, + IconTv, + IconTvOff, + IconTwoWheeler, + IconUmbrella, + IconUnarchive, + IconUndo, + IconUnfoldLess, + IconUnfoldMore, + IconUnpublished, + IconUnsubscribe, + IconUpdate, + IconUpdateDisabled, + IconUpgrade, + IconUsb, + IconVerified, + IconVerifiedUser, + IconVerticalAlignBottom, + IconVerticalAlignCenter, + IconVerticalAlignTop, + IconVerticalDistribute, + IconVerticalSplit, + IconVibration, + IconVideoCall, + IconVideoLabel, + IconVideoLibrary, + IconVideoSettings, + IconVideocam, + IconVideocamOff, + IconVideogameAsset, + IconViewAgenda, + IconViewArray, + IconViewCarousel, + IconViewColumn, + IconViewComfy, + IconViewCompact, + IconViewDay, + IconViewHeadline, + IconViewList, + IconViewModule, + IconViewQuilt, + IconViewSidebar, + IconViewStream, + IconViewWeek, + IconVignette, + IconVisibility, + IconVisibilityOff, + IconVoiceChat, + IconVoiceOverOff, + IconVoicemail, + IconVolumeDown, + IconVolumeMute, + IconVolumeOff, + IconVolumeUp, + IconVpnKey, + IconVpnLock, + IconWallpaper, + IconWarning, + IconWash, + IconWatch, + IconWatchLater, + IconWaterDamage, + IconWaves, + IconWbAuto, + IconWbCloudy, + IconWbIncandescent, + IconWbIridescent, + IconWbSunny, + IconWc, + IconWeb, + IconWebAsset, + IconWeekend, + IconWest, + IconWhatshot, + IconWheelchairPickup, + IconWhereToVote, + IconWidgets, + IconWifi, + IconWifiCalling, + IconWifiLock, + IconWifiOff, + IconWifiProtectedSetup, + IconWifiTethering, + IconWineBar, + IconWork, + IconWorkOff, + IconWorkOutline, + IconWrapText, + IconWrongLocation, + IconWysiwyg, + IconYoutubeSearchedFor, + IconZoomIn, + IconZoomOut, + IconZoomOutMap, +} From 23bc9d56b98123e2bf88b231c7a247896a3511ca Mon Sep 17 00:00:00 2001 From: Alex Lanz Date: Mon, 5 Oct 2020 15:33:59 +0200 Subject: [PATCH 06/20] 0.1.1 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index a10a9beaf..5c9b9c5b7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@aboutbits/material-design-icons", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 29a7dc3ff..d8b4cf2db 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aboutbits/material-design-icons", - "version": "0.1.0", + "version": "0.1.1", "description": "Material design icon components for React", "main": "dist/index.js", "scripts": { From 4f6c9badbcab756029869e467d6bb97cc5cd404f Mon Sep 17 00:00:00 2001 From: Alex Lanz Date: Mon, 5 Oct 2020 15:43:52 +0200 Subject: [PATCH 07/20] Fixing missing React dependencies --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index d8b4cf2db..a22b63f50 100644 --- a/package.json +++ b/package.json @@ -42,6 +42,8 @@ "@types/react": "^16.9.50", "@typescript-eslint/parser": "^4.3.0", "@typescript-eslint/eslint-plugin": "^4.3.0", + "react": "^16.13.1", + "react-dom": "^16.13.1", "axios": "^0.20.0", "jest": "^26.4.2", "eslint": "^7.10.0", From d7a68f4d52a3e290887826dfe549b49a6f895bfc Mon Sep 17 00:00:00 2001 From: Alex Lanz Date: Mon, 5 Oct 2020 15:44:57 +0200 Subject: [PATCH 08/20] 0.1.2 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5c9b9c5b7..5dff237d8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@aboutbits/material-design-icons", - "version": "0.1.1", + "version": "0.1.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index a22b63f50..b2d1cea3f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aboutbits/material-design-icons", - "version": "0.1.1", + "version": "0.1.2", "description": "Material design icon components for React", "main": "dist/index.js", "scripts": { From 68bb8007c4dccd8a71579f5c86fe132c2929a04c Mon Sep 17 00:00:00 2001 From: Alex Lanz Date: Mon, 5 Oct 2020 15:51:46 +0200 Subject: [PATCH 09/20] Adjusting package name --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b2d1cea3f..f00b0cc22 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@aboutbits/material-design-icons", + "name": "@aboutbits/react-material-icons", "version": "0.1.2", "description": "Material design icon components for React", "main": "dist/index.js", From 46b95323444c71a471733cecc2baf6c66bb80663 Mon Sep 17 00:00:00 2001 From: Alex Lanz Date: Mon, 5 Oct 2020 15:52:35 +0200 Subject: [PATCH 10/20] 0.1.3 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5dff237d8..da8ad4d2b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@aboutbits/material-design-icons", - "version": "0.1.2", + "version": "0.1.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index f00b0cc22..b91b1a3fc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aboutbits/react-material-icons", - "version": "0.1.2", + "version": "0.1.3", "description": "Material design icon components for React", "main": "dist/index.js", "scripts": { From 49c205bde3ae2ae13f425ab2e1233f2ba5fa19a0 Mon Sep 17 00:00:00 2001 From: Alex Lanz Date: Mon, 5 Oct 2020 15:55:27 +0200 Subject: [PATCH 11/20] 0.1.4 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index da8ad4d2b..094de5345 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@aboutbits/material-design-icons", - "version": "0.1.3", + "version": "0.1.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index b91b1a3fc..236fe54c5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aboutbits/react-material-icons", - "version": "0.1.3", + "version": "0.1.4", "description": "Material design icon components for React", "main": "dist/index.js", "scripts": { From 87aa1f0ac40998cedb17336ccccb81f32116415b Mon Sep 17 00:00:00 2001 From: Alex Lanz Date: Mon, 5 Oct 2020 16:15:13 +0200 Subject: [PATCH 12/20] 0.1.5 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 094de5345..9040d00da 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@aboutbits/material-design-icons", - "version": "0.1.4", + "version": "0.1.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 236fe54c5..40488b39f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aboutbits/react-material-icons", - "version": "0.1.4", + "version": "0.1.5", "description": "Material design icon components for React", "main": "dist/index.js", "scripts": { From 8ede87d3658e1a4128a5694934cdc6f5410d64d3 Mon Sep 17 00:00:00 2001 From: Alex Lanz Date: Mon, 5 Oct 2020 16:18:24 +0200 Subject: [PATCH 13/20] 0.1.6 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9040d00da..763f71098 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@aboutbits/material-design-icons", - "version": "0.1.5", + "version": "0.1.6", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 40488b39f..e532a69e1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aboutbits/react-material-icons", - "version": "0.1.5", + "version": "0.1.6", "description": "Material design icon components for React", "main": "dist/index.js", "scripts": { From 78adf20176dc7dbaee7f50bfb29b63472dfc51d2 Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Mon, 5 Oct 2020 17:13:02 +0200 Subject: [PATCH 14/20] Add generated icons --- src/components/Icon360.tsx | 10 ----- src/components/Icon3dRotation.tsx | 10 ----- src/components/Icon4k.tsx | 10 ----- src/components/Icon5g.tsx | 22 ---------- src/components/Icon6FtApart.tsx | 15 ------- src/components/IconAcUnit.tsx | 10 ----- src/components/IconAccessAlarm.tsx | 10 ----- src/components/IconAccessAlarms.tsx | 10 ----- src/components/IconAccessTime.tsx | 11 ----- src/components/IconAccessibility.tsx | 10 ----- src/components/IconAccessibilityNew.tsx | 10 ----- src/components/IconAccessible.tsx | 11 ----- src/components/IconAccessibleForward.tsx | 11 ----- src/components/IconAccountBalance.tsx | 25 ----------- src/components/IconAccountBalanceWallet.tsx | 10 ----- src/components/IconAccountBox.tsx | 10 ----- src/components/IconAccountCircle.tsx | 10 ----- src/components/IconAccountTree.tsx | 10 ----- src/components/IconAdUnits.tsx | 10 ----- src/components/IconAdb.tsx | 10 ----- src/components/IconAdd.tsx | 10 ----- src/components/IconAddAPhoto.tsx | 15 ------- src/components/IconAddAlarm.tsx | 10 ----- src/components/IconAddAlert.tsx | 10 ----- src/components/IconAddBox.tsx | 10 ----- src/components/IconAddBusiness.tsx | 23 ---------- src/components/IconAddCircle.tsx | 10 ----- src/components/IconAddCircleOutline.tsx | 10 ----- src/components/IconAddComment.tsx | 10 ----- src/components/IconAddIcCall.tsx | 10 ----- src/components/IconAddLocation.tsx | 10 ----- src/components/IconAddLocationAlt.tsx | 10 ----- src/components/IconAddPhotoAlternate.tsx | 10 ----- src/components/IconAddRoad.tsx | 26 ----------- src/components/IconAddShoppingCart.tsx | 10 ----- src/components/IconAddTask.tsx | 15 ------- src/components/IconAddToHomeScreen.tsx | 11 ----- src/components/IconAddToPhotos.tsx | 10 ----- src/components/IconAddToQueue.tsx | 10 ----- src/components/IconAddchart.tsx | 10 ----- src/components/IconAdjust.tsx | 10 ----- src/components/IconAdminPanelSettings.tsx | 22 ---------- src/components/IconAgriculture.tsx | 24 ---------- src/components/IconAirlineSeatFlat.tsx | 10 ----- src/components/IconAirlineSeatFlatAngled.tsx | 10 ----- .../IconAirlineSeatIndividualSuite.tsx | 10 ----- .../IconAirlineSeatLegroomExtra.tsx | 10 ----- .../IconAirlineSeatLegroomNormal.tsx | 10 ----- .../IconAirlineSeatLegroomReduced.tsx | 10 ----- .../IconAirlineSeatReclineExtra.tsx | 10 ----- .../IconAirlineSeatReclineNormal.tsx | 10 ----- src/components/IconAirplanemodeActive.tsx | 17 ------- src/components/IconAirplanemodeInactive.tsx | 17 ------- src/components/IconAirplay.tsx | 18 -------- src/components/IconAirportShuttle.tsx | 10 ----- src/components/IconAlarm.tsx | 10 ----- src/components/IconAlarmAdd.tsx | 10 ----- src/components/IconAlarmOff.tsx | 10 ----- src/components/IconAlarmOn.tsx | 10 ----- src/components/IconAlbum.tsx | 10 ----- src/components/IconAlignHorizontalCenter.tsx | 15 ------- src/components/IconAlignHorizontalLeft.tsx | 15 ------- src/components/IconAlignHorizontalRight.tsx | 15 ------- src/components/IconAlignVerticalBottom.tsx | 15 ------- src/components/IconAlignVerticalCenter.tsx | 15 ------- src/components/IconAlignVerticalTop.tsx | 15 ------- src/components/IconAllInbox.tsx | 10 ----- src/components/IconAllInclusive.tsx | 10 ----- src/components/IconAllOut.tsx | 10 ----- src/components/IconAltRoute.tsx | 17 ------- src/components/IconAlternateEmail.tsx | 10 ----- src/components/IconAmpStories.tsx | 24 ---------- src/components/IconAnalytics.tsx | 10 ----- src/components/IconAnchor.tsx | 17 ------- src/components/IconAndroid.tsx | 17 ------- src/components/IconAnnouncement.tsx | 10 ----- src/components/IconApartment.tsx | 19 -------- src/components/IconApi.tsx | 17 ------- src/components/IconAppBlocking.tsx | 10 ----- src/components/IconAppSettingsAlt.tsx | 10 ----- src/components/IconApps.tsx | 10 ----- src/components/IconArchitecture.tsx | 23 ---------- src/components/IconArchive.tsx | 10 ----- src/components/IconArrowBack.tsx | 10 ----- src/components/IconArrowBackIos.tsx | 10 ----- src/components/IconArrowCircleDown.tsx | 17 ------- src/components/IconArrowCircleUp.tsx | 17 ------- src/components/IconArrowDownward.tsx | 10 ----- src/components/IconArrowDropDown.tsx | 10 ----- src/components/IconArrowDropDownCircle.tsx | 10 ----- src/components/IconArrowDropUp.tsx | 10 ----- src/components/IconArrowForward.tsx | 10 ----- src/components/IconArrowForwardIos.tsx | 10 ----- src/components/IconArrowLeft.tsx | 10 ----- src/components/IconArrowRight.tsx | 10 ----- src/components/IconArrowRightAlt.tsx | 10 ----- src/components/IconArrowUpward.tsx | 10 ----- src/components/IconArtTrack.tsx | 10 ----- src/components/IconArticle.tsx | 10 ----- src/components/IconAspectRatio.tsx | 10 ----- src/components/IconAssessment.tsx | 10 ----- src/components/IconAssignment.tsx | 10 ----- src/components/IconAssignmentInd.tsx | 10 ----- src/components/IconAssignmentLate.tsx | 10 ----- src/components/IconAssignmentReturn.tsx | 10 ----- src/components/IconAssignmentReturned.tsx | 10 ----- src/components/IconAssignmentTurnedIn.tsx | 10 ----- src/components/IconAssistant.tsx | 10 ----- src/components/IconAssistantPhoto.tsx | 10 ----- src/components/IconAtm.tsx | 10 ----- src/components/IconAttachEmail.tsx | 22 ---------- src/components/IconAttachFile.tsx | 10 ----- src/components/IconAttachMoney.tsx | 10 ----- src/components/IconAttachment.tsx | 10 ----- src/components/IconAudiotrack.tsx | 10 ----- src/components/IconAutoDelete.tsx | 23 ---------- src/components/IconAutorenew.tsx | 10 ----- src/components/IconAvTimer.tsx | 10 ----- src/components/IconBabyChangingStation.tsx | 17 ------- src/components/IconBackpack.tsx | 21 --------- src/components/IconBackspace.tsx | 10 ----- src/components/IconBackup.tsx | 10 ----- src/components/IconBackupTable.tsx | 22 ---------- src/components/IconBallot.tsx | 18 -------- src/components/IconBarChart.tsx | 10 ----- src/components/IconBatchPrediction.tsx | 17 ------- src/components/IconBathtub.tsx | 26 ----------- src/components/IconBatteryAlert.tsx | 10 ----- src/components/IconBatteryChargingFull.tsx | 10 ----- src/components/IconBatteryFull.tsx | 10 ----- src/components/IconBatteryStd.tsx | 10 ----- src/components/IconBatteryUnknown.tsx | 10 ----- src/components/IconBeachAccess.tsx | 10 ----- src/components/IconBedtime.tsx | 21 --------- src/components/IconBeenhere.tsx | 10 ----- src/components/IconBento.tsx | 17 ------- src/components/IconBikeScooter.tsx | 23 ---------- src/components/IconBiotech.tsx | 23 ---------- src/components/IconBlock.tsx | 10 ----- src/components/IconBluetooth.tsx | 10 ----- src/components/IconBluetoothAudio.tsx | 10 ----- src/components/IconBluetoothConnected.tsx | 10 ----- src/components/IconBluetoothDisabled.tsx | 10 ----- src/components/IconBluetoothSearching.tsx | 10 ----- src/components/IconBlurCircular.tsx | 10 ----- src/components/IconBlurLinear.tsx | 10 ----- src/components/IconBlurOff.tsx | 10 ----- src/components/IconBlurOn.tsx | 10 ----- src/components/IconBook.tsx | 10 ----- src/components/IconBookOnline.tsx | 17 ------- src/components/IconBookmark.tsx | 10 ----- src/components/IconBookmarkBorder.tsx | 10 ----- src/components/IconBookmarks.tsx | 10 ----- src/components/IconBorderAll.tsx | 10 ----- src/components/IconBorderBottom.tsx | 10 ----- src/components/IconBorderClear.tsx | 10 ----- src/components/IconBorderHorizontal.tsx | 10 ----- src/components/IconBorderInner.tsx | 10 ----- src/components/IconBorderLeft.tsx | 10 ----- src/components/IconBorderOuter.tsx | 10 ----- src/components/IconBorderRight.tsx | 10 ----- src/components/IconBorderStyle.tsx | 10 ----- src/components/IconBorderTop.tsx | 10 ----- src/components/IconBorderVertical.tsx | 10 ----- src/components/IconBrandingWatermark.tsx | 10 ----- src/components/IconBrightness1.tsx | 10 ----- src/components/IconBrightness2.tsx | 10 ----- src/components/IconBrightness3.tsx | 10 ----- src/components/IconBrightness4.tsx | 10 ----- src/components/IconBrightness5.tsx | 10 ----- src/components/IconBrightness6.tsx | 10 ----- src/components/IconBrightness7.tsx | 10 ----- src/components/IconBrightnessAuto.tsx | 10 ----- src/components/IconBrightnessHigh.tsx | 10 ----- src/components/IconBrightnessLow.tsx | 10 ----- src/components/IconBrightnessMedium.tsx | 10 ----- src/components/IconBrokenImage.tsx | 14 ------ src/components/IconBrowserNotSupported.tsx | 22 ---------- src/components/IconBrush.tsx | 10 ----- src/components/IconBubbleChart.tsx | 12 ----- src/components/IconBugReport.tsx | 10 ----- src/components/IconBuild.tsx | 10 ----- src/components/IconBuildCircle.tsx | 24 ---------- src/components/IconBurstMode.tsx | 10 ----- src/components/IconBusiness.tsx | 10 ----- src/components/IconBusinessCenter.tsx | 10 ----- src/components/IconCached.tsx | 10 ----- src/components/IconCake.tsx | 10 ----- src/components/IconCalculate.tsx | 19 -------- src/components/IconCalendarToday.tsx | 10 ----- src/components/IconCalendarViewDay.tsx | 10 ----- src/components/IconCall.tsx | 10 ----- src/components/IconCallEnd.tsx | 10 ----- src/components/IconCallMade.tsx | 10 ----- src/components/IconCallMerge.tsx | 10 ----- src/components/IconCallMissed.tsx | 10 ----- src/components/IconCallMissedOutgoing.tsx | 23 ---------- src/components/IconCallReceived.tsx | 10 ----- src/components/IconCallSplit.tsx | 10 ----- src/components/IconCallToAction.tsx | 10 ----- src/components/IconCamera.tsx | 10 ----- src/components/IconCameraAlt.tsx | 11 ----- src/components/IconCameraEnhance.tsx | 11 ----- src/components/IconCameraFront.tsx | 10 ----- src/components/IconCameraRear.tsx | 10 ----- src/components/IconCameraRoll.tsx | 10 ----- src/components/IconCampaign.tsx | 10 ----- src/components/IconCancel.tsx | 10 ----- src/components/IconCancelPresentation.tsx | 15 ------- src/components/IconCancelScheduleSend.tsx | 22 ---------- src/components/IconCardGiftcard.tsx | 10 ----- src/components/IconCardMembership.tsx | 10 ----- src/components/IconCardTravel.tsx | 10 ----- src/components/IconCarpenter.tsx | 15 ------- src/components/IconCasino.tsx | 13 ------ src/components/IconCast.tsx | 11 ----- src/components/IconCastConnected.tsx | 11 ----- src/components/IconCastForEducation.tsx | 17 ------- src/components/IconCategory.tsx | 12 ----- src/components/IconCenterFocusStrong.tsx | 10 ----- src/components/IconCenterFocusWeak.tsx | 10 ----- src/components/IconChangeHistory.tsx | 10 ----- src/components/IconChargingStation.tsx | 17 ------- src/components/IconChat.tsx | 10 ----- src/components/IconChatBubble.tsx | 10 ----- src/components/IconChatBubbleOutline.tsx | 10 ----- src/components/IconCheck.tsx | 10 ----- src/components/IconCheckBox.tsx | 10 ----- src/components/IconCheckBoxOutlineBlank.tsx | 10 ----- src/components/IconCheckCircle.tsx | 10 ----- src/components/IconCheckCircleOutline.tsx | 10 ----- src/components/IconCheckroom.tsx | 17 ------- src/components/IconChevronLeft.tsx | 10 ----- src/components/IconChevronRight.tsx | 10 ----- src/components/IconChildCare.tsx | 12 ----- src/components/IconChildFriendly.tsx | 10 ----- src/components/IconChromeReaderMode.tsx | 10 ----- src/components/IconClass.tsx | 10 ----- src/components/IconCleanHands.tsx | 15 ------- src/components/IconCleaningServices.tsx | 19 -------- src/components/IconClear.tsx | 10 ----- src/components/IconClearAll.tsx | 10 ----- src/components/IconClose.tsx | 10 ----- src/components/IconCloseFullscreen.tsx | 15 ------- src/components/IconClosedCaption.tsx | 10 ----- src/components/IconClosedCaptionDisabled.tsx | 15 ------- src/components/IconCloud.tsx | 10 ----- src/components/IconCloudCircle.tsx | 10 ----- src/components/IconCloudDone.tsx | 10 ----- src/components/IconCloudDownload.tsx | 10 ----- src/components/IconCloudOff.tsx | 10 ----- src/components/IconCloudQueue.tsx | 10 ----- src/components/IconCloudUpload.tsx | 10 ----- src/components/IconCode.tsx | 10 ----- src/components/IconCollections.tsx | 10 ----- src/components/IconCollectionsBookmark.tsx | 12 ----- src/components/IconColorLens.tsx | 10 ----- src/components/IconColorize.tsx | 10 ----- src/components/IconComment.tsx | 10 ----- src/components/IconCommentBank.tsx | 19 -------- src/components/IconCommute.tsx | 10 ----- src/components/IconCompare.tsx | 10 ----- src/components/IconCompareArrows.tsx | 23 ---------- src/components/IconCompassCalibration.tsx | 11 ----- src/components/IconComputer.tsx | 10 ----- src/components/IconConfirmationNumber.tsx | 23 ---------- src/components/IconConnectWithoutContact.tsx | 15 ------- src/components/IconConstruction.tsx | 28 ------------ src/components/IconContactMail.tsx | 11 ----- src/components/IconContactPage.tsx | 15 ------- src/components/IconContactPhone.tsx | 10 ----- src/components/IconContactSupport.tsx | 10 ----- src/components/IconContactless.tsx | 19 -------- src/components/IconContacts.tsx | 10 ----- src/components/IconContentCopy.tsx | 10 ----- src/components/IconContentCut.tsx | 13 ------ src/components/IconContentPaste.tsx | 10 ----- src/components/IconControlCamera.tsx | 11 ----- src/components/IconControlPoint.tsx | 10 ----- src/components/IconControlPointDuplicate.tsx | 10 ----- src/components/IconCopyright.tsx | 23 ---------- src/components/IconCoronavirus.tsx | 15 ------- src/components/IconCorporateFare.tsx | 15 ------- src/components/IconCountertops.tsx | 15 ------- src/components/IconCreate.tsx | 10 ----- src/components/IconCreateNewFolder.tsx | 10 ----- src/components/IconCreditCard.tsx | 10 ----- src/components/IconCrop.tsx | 10 ----- src/components/IconCrop169.tsx | 10 ----- src/components/IconCrop32.tsx | 10 ----- src/components/IconCrop54.tsx | 10 ----- src/components/IconCrop75.tsx | 10 ----- src/components/IconCropDin.tsx | 10 ----- src/components/IconCropFree.tsx | 10 ----- src/components/IconCropLandscape.tsx | 10 ----- src/components/IconCropOriginal.tsx | 10 ----- src/components/IconCropPortrait.tsx | 10 ----- src/components/IconCropRotate.tsx | 10 ----- src/components/IconCropSquare.tsx | 10 ----- src/components/IconDashboard.tsx | 10 ----- src/components/IconDataUsage.tsx | 10 ----- src/components/IconDateRange.tsx | 10 ----- src/components/IconDeck.tsx | 23 ---------- src/components/IconDehaze.tsx | 10 ----- src/components/IconDelete.tsx | 10 ----- src/components/IconDeleteForever.tsx | 11 ----- src/components/IconDeleteOutline.tsx | 10 ----- src/components/IconDeleteSweep.tsx | 10 ----- src/components/IconDepartureBoard.tsx | 10 ----- src/components/IconDescription.tsx | 10 ----- src/components/IconDesignServices.tsx | 23 ---------- src/components/IconDesktopAccessDisabled.tsx | 10 ----- src/components/IconDesktopMac.tsx | 10 ----- src/components/IconDesktopWindows.tsx | 10 ----- src/components/IconDetails.tsx | 15 ------- src/components/IconDeveloperBoard.tsx | 10 ----- src/components/IconDeveloperMode.tsx | 10 ----- src/components/IconDeviceHub.tsx | 11 ----- src/components/IconDeviceUnknown.tsx | 10 ----- src/components/IconDevices.tsx | 10 ----- src/components/IconDevicesOther.tsx | 10 ----- src/components/IconDialerSip.tsx | 10 ----- src/components/IconDialpad.tsx | 10 ----- src/components/IconDirections.tsx | 10 ----- src/components/IconDirectionsBike.tsx | 10 ----- src/components/IconDirectionsBoat.tsx | 10 ----- src/components/IconDirectionsBus.tsx | 10 ----- src/components/IconDirectionsCar.tsx | 10 ----- src/components/IconDirectionsOff.tsx | 29 ------------ src/components/IconDirectionsRailway.tsx | 10 ----- src/components/IconDirectionsRun.tsx | 10 ----- src/components/IconDirectionsSubway.tsx | 10 ----- src/components/IconDirectionsTransit.tsx | 10 ----- src/components/IconDirectionsWalk.tsx | 10 ----- src/components/IconDisabledByDefault.tsx | 15 ------- src/components/IconDiscFull.tsx | 10 ----- src/components/IconDns.tsx | 10 ----- src/components/IconDoNotStep.tsx | 17 ------- src/components/IconDoNotTouch.tsx | 17 ------- src/components/IconDock.tsx | 10 ----- src/components/IconDomain.tsx | 17 ------- src/components/IconDomainDisabled.tsx | 10 ----- src/components/IconDomainVerification.tsx | 22 ---------- src/components/IconDone.tsx | 10 ----- src/components/IconDoneAll.tsx | 10 ----- src/components/IconDoneOutline.tsx | 10 ----- src/components/IconDonutLarge.tsx | 23 ---------- src/components/IconDonutSmall.tsx | 10 ----- src/components/IconDoubleArrow.tsx | 22 ---------- src/components/IconDrafts.tsx | 10 ----- src/components/IconDragHandle.tsx | 23 ---------- src/components/IconDragIndicator.tsx | 10 ----- src/components/IconDriveEta.tsx | 10 ----- src/components/IconDry.tsx | 17 ------- src/components/IconDuo.tsx | 10 ----- src/components/IconDvr.tsx | 10 ----- src/components/IconDynamicFeed.tsx | 32 -------------- src/components/IconDynamicForm.tsx | 17 ------- src/components/IconEast.tsx | 15 ------- src/components/IconEco.tsx | 21 --------- src/components/IconEdit.tsx | 10 ----- src/components/IconEditAttributes.tsx | 10 ----- src/components/IconEditLocation.tsx | 10 ----- src/components/IconEditRoad.tsx | 26 ----------- src/components/IconEject.tsx | 10 ----- src/components/IconElderly.tsx | 15 ------- src/components/IconElectricBike.tsx | 22 ---------- src/components/IconElectricCar.tsx | 20 --------- src/components/IconElectricMoped.tsx | 24 ---------- src/components/IconElectricScooter.tsx | 23 ---------- src/components/IconElectricalServices.tsx | 24 ---------- src/components/IconElevator.tsx | 17 ------- src/components/IconEmail.tsx | 10 ----- src/components/IconEmojiEmotions.tsx | 20 --------- src/components/IconEmojiEvents.tsx | 15 ------- src/components/IconEmojiFlags.tsx | 20 --------- src/components/IconEmojiFoodBeverage.tsx | 23 ---------- src/components/IconEmojiNature.tsx | 23 ---------- src/components/IconEmojiObjects.tsx | 20 --------- src/components/IconEmojiPeople.tsx | 23 ---------- src/components/IconEmojiSymbols.tsx | 34 -------------- src/components/IconEmojiTransportation.tsx | 27 ------------ src/components/IconEngineering.tsx | 25 ----------- src/components/IconEnhancedEncryption.tsx | 11 ----- src/components/IconEqualizer.tsx | 10 ----- src/components/IconError.tsx | 10 ----- src/components/IconErrorOutline.tsx | 10 ----- src/components/IconEscalator.tsx | 19 -------- src/components/IconEscalatorWarning.tsx | 17 ------- src/components/IconEuro.tsx | 20 --------- src/components/IconEuroSymbol.tsx | 10 ----- src/components/IconEvStation.tsx | 10 ----- src/components/IconEvent.tsx | 10 ----- src/components/IconEventAvailable.tsx | 10 ----- src/components/IconEventBusy.tsx | 10 ----- src/components/IconEventNote.tsx | 10 ----- src/components/IconEventSeat.tsx | 23 ---------- src/components/IconExitToApp.tsx | 10 ----- src/components/IconExpandLess.tsx | 10 ----- src/components/IconExpandMore.tsx | 10 ----- src/components/IconExplicit.tsx | 10 ----- src/components/IconExplore.tsx | 10 ----- src/components/IconExploreOff.tsx | 10 ----- src/components/IconExposure.tsx | 10 ----- src/components/IconExposureNeg1.tsx | 10 ----- src/components/IconExposureNeg2.tsx | 10 ----- src/components/IconExposurePlus1.tsx | 10 ----- src/components/IconExposurePlus2.tsx | 10 ----- src/components/IconExposureZero.tsx | 13 ------ src/components/IconExtension.tsx | 10 ----- src/components/IconFace.tsx | 10 ----- src/components/IconFacebook.tsx | 15 ------- src/components/IconFactCheck.tsx | 24 ---------- src/components/IconFamilyRestroom.tsx | 17 ------- src/components/IconFastForward.tsx | 10 ----- src/components/IconFastRewind.tsx | 10 ----- src/components/IconFastfood.tsx | 10 ----- src/components/IconFavorite.tsx | 10 ----- src/components/IconFavoriteBorder.tsx | 10 ----- src/components/IconFeaturedPlayList.tsx | 10 ----- src/components/IconFeaturedVideo.tsx | 10 ----- src/components/IconFeedback.tsx | 10 ----- src/components/IconFence.tsx | 19 -------- src/components/IconFiberDvr.tsx | 23 ---------- src/components/IconFiberManualRecord.tsx | 10 ----- src/components/IconFiberNew.tsx | 23 ---------- src/components/IconFiberPin.tsx | 10 ----- src/components/IconFiberSmartRecord.tsx | 13 ------ src/components/IconFileCopy.tsx | 10 ----- src/components/IconFilter.tsx | 10 ----- src/components/IconFilter1.tsx | 10 ----- src/components/IconFilter2.tsx | 10 ----- src/components/IconFilter3.tsx | 10 ----- src/components/IconFilter4.tsx | 10 ----- src/components/IconFilter5.tsx | 10 ----- src/components/IconFilter6.tsx | 10 ----- src/components/IconFilter7.tsx | 10 ----- src/components/IconFilter8.tsx | 10 ----- src/components/IconFilter9.tsx | 10 ----- src/components/IconFilter9Plus.tsx | 10 ----- src/components/IconFilterAlt.tsx | 18 -------- src/components/IconFilterBAndW.tsx | 10 ----- src/components/IconFilterCenterFocus.tsx | 10 ----- src/components/IconFilterDrama.tsx | 10 ----- src/components/IconFilterFrames.tsx | 10 ----- src/components/IconFilterHdr.tsx | 10 ----- src/components/IconFilterList.tsx | 10 ----- src/components/IconFilterNone.tsx | 10 ----- src/components/IconFilterTiltShift.tsx | 10 ----- src/components/IconFilterVintage.tsx | 10 ----- src/components/IconFindInPage.tsx | 10 ----- src/components/IconFindReplace.tsx | 10 ----- src/components/IconFingerprint.tsx | 10 ----- src/components/IconFireExtinguisher.tsx | 17 ------- src/components/IconFireplace.tsx | 19 -------- src/components/IconFirstPage.tsx | 10 ----- src/components/IconFitnessCenter.tsx | 10 ----- src/components/IconFlag.tsx | 10 ----- src/components/IconFlaky.tsx | 22 ---------- src/components/IconFlare.tsx | 10 ----- src/components/IconFlashAuto.tsx | 10 ----- src/components/IconFlashOff.tsx | 10 ----- src/components/IconFlashOn.tsx | 10 ----- src/components/IconFlight.tsx | 10 ----- src/components/IconFlightLand.tsx | 23 ---------- src/components/IconFlightTakeoff.tsx | 23 ---------- src/components/IconFlip.tsx | 10 ----- src/components/IconFlipCameraAndroid.tsx | 23 ---------- src/components/IconFlipCameraIos.tsx | 21 --------- src/components/IconFlipToBack.tsx | 10 ----- src/components/IconFlipToFront.tsx | 10 ----- src/components/IconFolder.tsx | 10 ----- src/components/IconFolderOpen.tsx | 10 ----- src/components/IconFolderShared.tsx | 10 ----- src/components/IconFolderSpecial.tsx | 10 ----- src/components/IconFollowTheSigns.tsx | 15 ------- src/components/IconFontDownload.tsx | 15 ------- src/components/IconFoodBank.tsx | 15 ------- src/components/IconFormatAlignCenter.tsx | 10 ----- src/components/IconFormatAlignJustify.tsx | 10 ----- src/components/IconFormatAlignLeft.tsx | 10 ----- src/components/IconFormatAlignRight.tsx | 10 ----- src/components/IconFormatBold.tsx | 10 ----- src/components/IconFormatClear.tsx | 10 ----- src/components/IconFormatColorReset.tsx | 10 ----- src/components/IconFormatIndentDecrease.tsx | 10 ----- src/components/IconFormatIndentIncrease.tsx | 10 ----- src/components/IconFormatItalic.tsx | 10 ----- src/components/IconFormatLineSpacing.tsx | 10 ----- src/components/IconFormatListBulleted.tsx | 10 ----- src/components/IconFormatListNumbered.tsx | 10 ----- src/components/IconFormatListNumberedRtl.tsx | 10 ----- src/components/IconFormatPaint.tsx | 10 ----- src/components/IconFormatQuote.tsx | 10 ----- src/components/IconFormatShapes.tsx | 10 ----- src/components/IconFormatSize.tsx | 10 ----- src/components/IconFormatStrikethrough.tsx | 10 ----- .../IconFormatTextdirectionLToR.tsx | 10 ----- .../IconFormatTextdirectionRToL.tsx | 10 ----- src/components/IconFormatUnderlined.tsx | 10 ----- src/components/IconForum.tsx | 10 ----- src/components/IconForward.tsx | 10 ----- src/components/IconForward10.tsx | 23 ---------- src/components/IconForward30.tsx | 23 ---------- src/components/IconForward5.tsx | 22 ---------- src/components/IconForwardToInbox.tsx | 17 ------- src/components/IconFoundation.tsx | 15 ------- src/components/IconFreeBreakfast.tsx | 10 ----- src/components/IconFullscreen.tsx | 10 ----- src/components/IconFullscreenExit.tsx | 10 ----- src/components/IconFunctions.tsx | 10 ----- src/components/IconGTranslate.tsx | 10 ----- src/components/IconGamepad.tsx | 10 ----- src/components/IconGames.tsx | 10 ----- src/components/IconGavel.tsx | 42 ------------------ src/components/IconGesture.tsx | 10 ----- src/components/IconGetApp.tsx | 10 ----- src/components/IconGif.tsx | 23 ---------- src/components/IconGolfCourse.tsx | 11 ----- src/components/IconGpsFixed.tsx | 10 ----- src/components/IconGpsNotFixed.tsx | 10 ----- src/components/IconGpsOff.tsx | 10 ----- src/components/IconGrade.tsx | 10 ----- src/components/IconGradient.tsx | 10 ----- src/components/IconGrading.tsx | 19 -------- src/components/IconGrain.tsx | 10 ----- src/components/IconGraphicEq.tsx | 10 ----- src/components/IconGrass.tsx | 15 ------- src/components/IconGridOff.tsx | 10 ----- src/components/IconGridOn.tsx | 10 ----- src/components/IconGroup.tsx | 10 ----- src/components/IconGroupAdd.tsx | 10 ----- src/components/IconGroupWork.tsx | 10 ----- src/components/IconGroups.tsx | 17 ------- src/components/IconHandyman.tsx | 26 ----------- src/components/IconHd.tsx | 10 ----- src/components/IconHdrOff.tsx | 9 ---- src/components/IconHdrOn.tsx | 10 ----- src/components/IconHdrStrong.tsx | 10 ----- src/components/IconHdrWeak.tsx | 10 ----- src/components/IconHeadset.tsx | 10 ----- src/components/IconHeadsetMic.tsx | 10 ----- src/components/IconHealing.tsx | 10 ----- src/components/IconHearing.tsx | 10 ----- src/components/IconHearingDisabled.tsx | 17 ------- src/components/IconHeight.tsx | 20 --------- src/components/IconHelp.tsx | 10 ----- src/components/IconHelpCenter.tsx | 17 ------- src/components/IconHelpOutline.tsx | 10 ----- src/components/IconHighQuality.tsx | 10 ----- src/components/IconHighlight.tsx | 23 ---------- src/components/IconHighlightAlt.tsx | 10 ----- src/components/IconHighlightOff.tsx | 10 ----- src/components/IconHistory.tsx | 10 ----- src/components/IconHistoryEdu.tsx | 21 --------- src/components/IconHistoryToggleOff.tsx | 17 ------- src/components/IconHome.tsx | 10 ----- src/components/IconHomeRepairService.tsx | 22 ---------- src/components/IconHomeWork.tsx | 12 ----- src/components/IconHorizontalDistribute.tsx | 15 ------- src/components/IconHorizontalRule.tsx | 17 ------- src/components/IconHorizontalSplit.tsx | 10 ----- src/components/IconHotTub.tsx | 11 ----- src/components/IconHotel.tsx | 10 ----- src/components/IconHourglassBottom.tsx | 19 -------- src/components/IconHourglassDisabled.tsx | 22 ---------- src/components/IconHourglassEmpty.tsx | 10 ----- src/components/IconHourglassFull.tsx | 10 ----- src/components/IconHourglassTop.tsx | 19 -------- src/components/IconHouse.tsx | 19 -------- src/components/IconHouseSiding.tsx | 15 ------- src/components/IconHowToReg.tsx | 13 ------ src/components/IconHowToVote.tsx | 10 ----- src/components/IconHttp.tsx | 10 ----- src/components/IconHttps.tsx | 10 ----- src/components/IconHvac.tsx | 35 --------------- src/components/IconImage.tsx | 10 ----- src/components/IconImageAspectRatio.tsx | 10 ----- src/components/IconImageNotSupported.tsx | 17 ------- src/components/IconImageSearch.tsx | 11 ----- src/components/IconImportContacts.tsx | 23 ---------- src/components/IconImportExport.tsx | 10 ----- src/components/IconImportantDevices.tsx | 10 ----- src/components/IconInbox.tsx | 10 ----- src/components/IconIndeterminateCheckBox.tsx | 23 ---------- src/components/IconInfo.tsx | 10 ----- src/components/IconInput.tsx | 10 ----- src/components/IconInsertChart.tsx | 10 ----- src/components/IconInsertChartOutlined.tsx | 10 ----- src/components/IconInsertComment.tsx | 10 ----- src/components/IconInsertDriveFile.tsx | 10 ----- src/components/IconInsertEmoticon.tsx | 10 ----- src/components/IconInsertInvitation.tsx | 10 ----- src/components/IconInsertLink.tsx | 10 ----- src/components/IconInsertPhoto.tsx | 10 ----- src/components/IconInsights.tsx | 23 ---------- .../IconIntegrationInstructions.tsx | 20 --------- src/components/IconInvertColors.tsx | 10 ----- src/components/IconInvertColorsOff.tsx | 10 ----- src/components/IconIso.tsx | 10 ----- src/components/IconKeyboard.tsx | 10 ----- src/components/IconKeyboardArrowDown.tsx | 10 ----- src/components/IconKeyboardArrowLeft.tsx | 10 ----- src/components/IconKeyboardArrowRight.tsx | 10 ----- src/components/IconKeyboardArrowUp.tsx | 10 ----- src/components/IconKeyboardBackspace.tsx | 10 ----- src/components/IconKeyboardCapslock.tsx | 10 ----- src/components/IconKeyboardHide.tsx | 10 ----- src/components/IconKeyboardReturn.tsx | 10 ----- src/components/IconKeyboardTab.tsx | 10 ----- src/components/IconKeyboardVoice.tsx | 10 ----- src/components/IconKingBed.tsx | 23 ---------- src/components/IconKitchen.tsx | 10 ----- src/components/IconLabel.tsx | 10 ----- src/components/IconLabelImportant.tsx | 10 ----- src/components/IconLabelOff.tsx | 10 ----- src/components/IconLandscape.tsx | 10 ----- src/components/IconLanguage.tsx | 10 ----- src/components/IconLaptop.tsx | 23 ---------- src/components/IconLaptopChromebook.tsx | 10 ----- src/components/IconLaptopMac.tsx | 10 ----- src/components/IconLaptopWindows.tsx | 10 ----- src/components/IconLastPage.tsx | 10 ----- src/components/IconLaunch.tsx | 10 ----- src/components/IconLayers.tsx | 10 ----- src/components/IconLayersClear.tsx | 10 ----- src/components/IconLeaderboard.tsx | 17 ------- src/components/IconLeakAdd.tsx | 10 ----- src/components/IconLeakRemove.tsx | 10 ----- src/components/IconLegendToggle.tsx | 17 ------- src/components/IconLens.tsx | 10 ----- src/components/IconLibraryAdd.tsx | 10 ----- src/components/IconLibraryAddCheck.tsx | 10 ----- src/components/IconLibraryBooks.tsx | 10 ----- src/components/IconLibraryMusic.tsx | 10 ----- src/components/IconLineStyle.tsx | 23 ---------- src/components/IconLineWeight.tsx | 23 ---------- src/components/IconLinearScale.tsx | 23 ---------- src/components/IconLink.tsx | 10 ----- src/components/IconLinkOff.tsx | 11 ----- src/components/IconLinkedCamera.tsx | 13 ------ src/components/IconList.tsx | 10 ----- src/components/IconListAlt.tsx | 10 ----- src/components/IconLiveHelp.tsx | 10 ----- src/components/IconLiveTv.tsx | 10 ----- src/components/IconLocalActivity.tsx | 10 ----- src/components/IconLocalAirport.tsx | 17 ------- src/components/IconLocalAtm.tsx | 10 ----- src/components/IconLocalBar.tsx | 10 ----- src/components/IconLocalCafe.tsx | 10 ----- src/components/IconLocalCarWash.tsx | 10 ----- src/components/IconLocalConvenienceStore.tsx | 10 ----- src/components/IconLocalDining.tsx | 10 ----- src/components/IconLocalDrink.tsx | 10 ----- src/components/IconLocalFireDepartment.tsx | 19 -------- src/components/IconLocalFlorist.tsx | 10 ----- src/components/IconLocalGasStation.tsx | 10 ----- src/components/IconLocalGroceryStore.tsx | 10 ----- src/components/IconLocalHospital.tsx | 10 ----- src/components/IconLocalHotel.tsx | 10 ----- src/components/IconLocalLaundryService.tsx | 10 ----- src/components/IconLocalLibrary.tsx | 10 ----- src/components/IconLocalMall.tsx | 10 ----- src/components/IconLocalMovies.tsx | 10 ----- src/components/IconLocalOffer.tsx | 10 ----- src/components/IconLocalParking.tsx | 10 ----- src/components/IconLocalPharmacy.tsx | 10 ----- src/components/IconLocalPhone.tsx | 10 ----- src/components/IconLocalPizza.tsx | 10 ----- src/components/IconLocalPlay.tsx | 10 ----- src/components/IconLocalPolice.tsx | 15 ------- src/components/IconLocalPostOffice.tsx | 10 ----- src/components/IconLocalPrintshop.tsx | 10 ----- src/components/IconLocalSee.tsx | 11 ----- src/components/IconLocalShipping.tsx | 10 ----- src/components/IconLocalTaxi.tsx | 10 ----- src/components/IconLocationCity.tsx | 10 ----- src/components/IconLocationDisabled.tsx | 10 ----- src/components/IconLocationOff.tsx | 10 ----- src/components/IconLocationOn.tsx | 10 ----- src/components/IconLocationSearching.tsx | 10 ----- src/components/IconLock.tsx | 10 ----- src/components/IconLockOpen.tsx | 10 ----- src/components/IconLogin.tsx | 19 -------- src/components/IconLooks.tsx | 10 ----- src/components/IconLooks3.tsx | 10 ----- src/components/IconLooks4.tsx | 10 ----- src/components/IconLooks5.tsx | 10 ----- src/components/IconLooks6.tsx | 10 ----- src/components/IconLooksOne.tsx | 10 ----- src/components/IconLooksTwo.tsx | 10 ----- src/components/IconLoop.tsx | 10 ----- src/components/IconLoupe.tsx | 10 ----- src/components/IconLowPriority.tsx | 10 ----- src/components/IconLoyalty.tsx | 10 ----- src/components/IconLuggage.tsx | 17 ------- src/components/IconMail.tsx | 10 ----- src/components/IconMailOutline.tsx | 10 ----- src/components/IconMap.tsx | 10 ----- src/components/IconMapsUgc.tsx | 18 -------- src/components/IconMarkChatRead.tsx | 17 ------- src/components/IconMarkChatUnread.tsx | 17 ------- src/components/IconMarkEmailRead.tsx | 17 ------- src/components/IconMarkEmailUnread.tsx | 17 ------- src/components/IconMarkunread.tsx | 10 ----- src/components/IconMarkunreadMailbox.tsx | 10 ----- src/components/IconMasks.tsx | 15 ------- src/components/IconMaximize.tsx | 10 ----- src/components/IconMediation.tsx | 10 ----- src/components/IconMedicalServices.tsx | 21 --------- src/components/IconMeetingRoom.tsx | 9 ---- src/components/IconMemory.tsx | 10 ----- src/components/IconMenu.tsx | 10 ----- src/components/IconMenuBook.tsx | 27 ------------ src/components/IconMenuOpen.tsx | 10 ----- src/components/IconMergeType.tsx | 10 ----- src/components/IconMessage.tsx | 10 ----- src/components/IconMic.tsx | 10 ----- src/components/IconMicNone.tsx | 10 ----- src/components/IconMicOff.tsx | 10 ----- src/components/IconMicrowave.tsx | 15 ------- src/components/IconMilitaryTech.tsx | 19 -------- src/components/IconMinimize.tsx | 10 ----- src/components/IconMiscellaneousServices.tsx | 22 ---------- src/components/IconMissedVideoCall.tsx | 10 ----- src/components/IconMms.tsx | 10 ----- src/components/IconMobileFriendly.tsx | 10 ----- src/components/IconMobileOff.tsx | 10 ----- src/components/IconMobileScreenShare.tsx | 10 ----- src/components/IconModeComment.tsx | 10 ----- src/components/IconModelTraining.tsx | 17 ------- src/components/IconMonetizationOn.tsx | 10 ----- src/components/IconMoney.tsx | 12 ----- src/components/IconMoneyOff.tsx | 10 ----- src/components/IconMonochromePhotos.tsx | 11 ----- src/components/IconMood.tsx | 10 ----- src/components/IconMoodBad.tsx | 10 ----- src/components/IconMoped.tsx | 23 ---------- src/components/IconMore.tsx | 10 ----- src/components/IconMoreHoriz.tsx | 10 ----- src/components/IconMoreTime.tsx | 23 ---------- src/components/IconMoreVert.tsx | 10 ----- src/components/IconMotionPhotosOn.tsx | 17 ------- src/components/IconMotionPhotosPause.tsx | 15 ------- src/components/IconMotionPhotosPaused.tsx | 17 ------- src/components/IconMouse.tsx | 10 ----- src/components/IconMoveToInbox.tsx | 10 ----- src/components/IconMovie.tsx | 10 ----- src/components/IconMovieCreation.tsx | 10 ----- src/components/IconMovieFilter.tsx | 10 ----- src/components/IconMultilineChart.tsx | 10 ----- src/components/IconMultipleStop.tsx | 17 ------- src/components/IconMuseum.tsx | 19 -------- src/components/IconMusicNote.tsx | 10 ----- src/components/IconMusicOff.tsx | 10 ----- src/components/IconMusicVideo.tsx | 10 ----- src/components/IconMyLocation.tsx | 10 ----- src/components/IconNat.tsx | 22 ---------- src/components/IconNature.tsx | 10 ----- src/components/IconNaturePeople.tsx | 10 ----- src/components/IconNavigateBefore.tsx | 10 ----- src/components/IconNavigateNext.tsx | 10 ----- src/components/IconNavigation.tsx | 10 ----- src/components/IconNearMe.tsx | 10 ----- src/components/IconNearMeDisabled.tsx | 15 ------- src/components/IconNetworkCheck.tsx | 10 ----- src/components/IconNetworkLocked.tsx | 10 ----- src/components/IconNewReleases.tsx | 10 ----- src/components/IconNextPlan.tsx | 19 -------- src/components/IconNextWeek.tsx | 23 ---------- src/components/IconNfc.tsx | 11 ----- src/components/IconNightShelter.tsx | 15 ------- src/components/IconNightsStay.tsx | 24 ---------- src/components/IconNoBackpack.tsx | 15 ------- src/components/IconNoCell.tsx | 17 ------- src/components/IconNoDrinks.tsx | 17 ------- src/components/IconNoEncryption.tsx | 13 ------ src/components/IconNoFlash.tsx | 17 ------- src/components/IconNoFood.tsx | 17 ------- src/components/IconNoLuggage.tsx | 15 ------- src/components/IconNoMeals.tsx | 15 ------- src/components/IconNoMeetingRoom.tsx | 9 ---- src/components/IconNoPhotography.tsx | 17 ------- src/components/IconNoSim.tsx | 10 ----- src/components/IconNoStroller.tsx | 17 ------- src/components/IconNoTransfer.tsx | 15 ------- src/components/IconNorth.tsx | 15 ------- src/components/IconNorthEast.tsx | 15 ------- src/components/IconNorthWest.tsx | 15 ------- src/components/IconNotAccessible.tsx | 17 ------- src/components/IconNotInterested.tsx | 10 ----- src/components/IconNotListedLocation.tsx | 10 ----- src/components/IconNotStarted.tsx | 17 ------- src/components/IconNote.tsx | 10 ----- src/components/IconNoteAdd.tsx | 10 ----- src/components/IconNotes.tsx | 10 ----- src/components/IconNotificationImportant.tsx | 10 ----- src/components/IconNotifications.tsx | 9 ---- src/components/IconNotificationsActive.tsx | 10 ----- src/components/IconNotificationsNone.tsx | 10 ----- src/components/IconNotificationsOff.tsx | 10 ----- src/components/IconNotificationsPaused.tsx | 10 ----- src/components/IconOfflineBolt.tsx | 10 ----- src/components/IconOfflinePin.tsx | 23 ---------- src/components/IconOndemandVideo.tsx | 10 ----- src/components/IconOnlinePrediction.tsx | 17 ------- src/components/IconOpacity.tsx | 10 ----- src/components/IconOpenInBrowser.tsx | 10 ----- src/components/IconOpenInFull.tsx | 15 ------- src/components/IconOpenInNew.tsx | 10 ----- src/components/IconOpenWith.tsx | 10 ----- src/components/IconOutbond.tsx | 15 ------- src/components/IconOutdoorGrill.tsx | 24 ---------- src/components/IconOutlet.tsx | 15 ------- src/components/IconOutlinedFlag.tsx | 10 ----- src/components/IconPages.tsx | 10 ----- src/components/IconPageview.tsx | 10 ----- src/components/IconPalette.tsx | 10 ----- src/components/IconPanTool.tsx | 23 ---------- src/components/IconPanorama.tsx | 10 ----- src/components/IconPanoramaFishEye.tsx | 10 ----- src/components/IconPanoramaHorizontal.tsx | 10 ----- src/components/IconPanoramaVertical.tsx | 10 ----- src/components/IconPanoramaWideAngle.tsx | 10 ----- src/components/IconPartyMode.tsx | 10 ----- src/components/IconPause.tsx | 10 ----- src/components/IconPauseCircleFilled.tsx | 10 ----- src/components/IconPauseCircleOutline.tsx | 10 ----- src/components/IconPausePresentation.tsx | 15 ------- src/components/IconPayment.tsx | 10 ----- src/components/IconPayments.tsx | 10 ----- src/components/IconPedalBike.tsx | 19 -------- src/components/IconPending.tsx | 19 -------- src/components/IconPendingActions.tsx | 17 ------- src/components/IconPeople.tsx | 10 ----- src/components/IconPeopleAlt.tsx | 42 ------------------ src/components/IconPeopleOutline.tsx | 10 ----- src/components/IconPermCameraMic.tsx | 10 ----- src/components/IconPermContactCalendar.tsx | 10 ----- src/components/IconPermDataSetting.tsx | 10 ----- src/components/IconPermDeviceInformation.tsx | 10 ----- src/components/IconPermIdentity.tsx | 10 ----- src/components/IconPermMedia.tsx | 10 ----- src/components/IconPermPhoneMsg.tsx | 10 ----- src/components/IconPermScanWifi.tsx | 10 ----- src/components/IconPerson.tsx | 10 ----- src/components/IconPersonAdd.tsx | 10 ----- src/components/IconPersonAddAlt1.tsx | 19 -------- src/components/IconPersonAddDisabled.tsx | 11 ----- src/components/IconPersonOutline.tsx | 10 ----- src/components/IconPersonPin.tsx | 10 ----- src/components/IconPersonPinCircle.tsx | 23 ---------- src/components/IconPersonRemove.tsx | 19 -------- src/components/IconPersonRemoveAlt1.tsx | 19 -------- src/components/IconPersonSearch.tsx | 23 ---------- src/components/IconPersonalVideo.tsx | 10 ----- src/components/IconPestControl.tsx | 21 --------- src/components/IconPestControlRodent.tsx | 19 -------- src/components/IconPets.tsx | 14 ------ src/components/IconPhone.tsx | 10 ----- src/components/IconPhoneAndroid.tsx | 10 ----- src/components/IconPhoneBluetoothSpeaker.tsx | 10 ----- src/components/IconPhoneCallback.tsx | 10 ----- src/components/IconPhoneDisabled.tsx | 10 ----- src/components/IconPhoneEnabled.tsx | 10 ----- src/components/IconPhoneForwarded.tsx | 10 ----- src/components/IconPhoneInTalk.tsx | 10 ----- src/components/IconPhoneIphone.tsx | 10 ----- src/components/IconPhoneLocked.tsx | 10 ----- src/components/IconPhoneMissed.tsx | 10 ----- src/components/IconPhonePaused.tsx | 10 ----- src/components/IconPhonelink.tsx | 10 ----- src/components/IconPhonelinkErase.tsx | 10 ----- src/components/IconPhonelinkLock.tsx | 10 ----- src/components/IconPhonelinkOff.tsx | 10 ----- src/components/IconPhonelinkRing.tsx | 10 ----- src/components/IconPhonelinkSetup.tsx | 10 ----- src/components/IconPhoto.tsx | 10 ----- src/components/IconPhotoAlbum.tsx | 10 ----- src/components/IconPhotoCamera.tsx | 11 ----- src/components/IconPhotoFilter.tsx | 10 ----- src/components/IconPhotoLibrary.tsx | 10 ----- src/components/IconPhotoSizeSelectActual.tsx | 10 ----- src/components/IconPhotoSizeSelectLarge.tsx | 10 ----- src/components/IconPhotoSizeSelectSmall.tsx | 10 ----- src/components/IconPictureAsPdf.tsx | 10 ----- src/components/IconPictureInPicture.tsx | 10 ----- src/components/IconPictureInPictureAlt.tsx | 10 ----- src/components/IconPieChart.tsx | 10 ----- src/components/IconPinDrop.tsx | 10 ----- src/components/IconPlace.tsx | 10 ----- src/components/IconPlagiarism.tsx | 22 ---------- src/components/IconPlayArrow.tsx | 10 ----- src/components/IconPlayCircleFilled.tsx | 10 ----- src/components/IconPlayCircleOutline.tsx | 10 ----- src/components/IconPlayForWork.tsx | 10 ----- src/components/IconPlaylistAdd.tsx | 10 ----- src/components/IconPlaylistAddCheck.tsx | 23 ---------- src/components/IconPlaylistPlay.tsx | 10 ----- src/components/IconPlumbing.tsx | 23 ---------- src/components/IconPlusOne.tsx | 10 ----- src/components/IconPointOfSale.tsx | 17 ------- src/components/IconPolicy.tsx | 23 ---------- src/components/IconPoll.tsx | 10 ----- src/components/IconPolymer.tsx | 10 ----- src/components/IconPool.tsx | 11 ----- src/components/IconPortableWifiOff.tsx | 10 ----- src/components/IconPortrait.tsx | 10 ----- src/components/IconPostAdd.tsx | 26 ----------- src/components/IconPower.tsx | 10 ----- src/components/IconPowerInput.tsx | 10 ----- src/components/IconPowerOff.tsx | 10 ----- src/components/IconPowerSettingsNew.tsx | 10 ----- src/components/IconPregnantWoman.tsx | 23 ---------- src/components/IconPresentToAll.tsx | 10 ----- src/components/IconPreview.tsx | 17 ------- src/components/IconPrint.tsx | 10 ----- src/components/IconPrintDisabled.tsx | 10 ----- src/components/IconPriorityHigh.tsx | 11 ----- src/components/IconPrivacyTip.tsx | 17 ------- src/components/IconPsychology.tsx | 22 ---------- src/components/IconPublic.tsx | 10 ----- src/components/IconPublicOff.tsx | 17 ------- src/components/IconPublish.tsx | 10 ----- src/components/IconPublishedWithChanges.tsx | 15 ------- src/components/IconPushPin.tsx | 22 ---------- src/components/IconQrCode.tsx | 31 ------------- src/components/IconQrCode2.tsx | 17 ------- src/components/IconQrCodeScanner.tsx | 15 ------- src/components/IconQueryBuilder.tsx | 11 ----- src/components/IconQuestionAnswer.tsx | 10 ----- src/components/IconQueue.tsx | 10 ----- src/components/IconQueueMusic.tsx | 10 ----- src/components/IconQueuePlayNext.tsx | 23 ---------- src/components/IconQuickreply.tsx | 26 ----------- src/components/IconRadio.tsx | 10 ----- src/components/IconRadioButtonChecked.tsx | 10 ----- src/components/IconRadioButtonUnchecked.tsx | 10 ----- src/components/IconRateReview.tsx | 13 ------ src/components/IconReadMore.tsx | 24 ---------- src/components/IconReceipt.tsx | 10 ----- src/components/IconReceiptLong.tsx | 21 --------- src/components/IconRecentActors.tsx | 10 ----- src/components/IconRecordVoiceOver.tsx | 11 ----- src/components/IconRedeem.tsx | 10 ----- src/components/IconRedo.tsx | 10 ----- src/components/IconReduceCapacity.tsx | 15 ------- src/components/IconRefresh.tsx | 10 ----- src/components/IconRemove.tsx | 10 ----- src/components/IconRemoveCircle.tsx | 10 ----- src/components/IconRemoveCircleOutline.tsx | 10 ----- src/components/IconRemoveFromQueue.tsx | 23 ---------- src/components/IconRemoveRedEye.tsx | 10 ----- src/components/IconRemoveShoppingCart.tsx | 10 ----- src/components/IconReorder.tsx | 10 ----- src/components/IconRepeat.tsx | 10 ----- src/components/IconRepeatOne.tsx | 10 ----- src/components/IconReplay.tsx | 10 ----- src/components/IconReplay10.tsx | 25 ----------- src/components/IconReplay30.tsx | 25 ----------- src/components/IconReplay5.tsx | 24 ---------- src/components/IconReply.tsx | 10 ----- src/components/IconReplyAll.tsx | 10 ----- src/components/IconReport.tsx | 10 ----- src/components/IconReportOff.tsx | 10 ----- src/components/IconReportProblem.tsx | 10 ----- src/components/IconRequestPage.tsx | 15 ------- src/components/IconRequestQuote.tsx | 17 ------- src/components/IconRestaurant.tsx | 10 ----- src/components/IconRestaurantMenu.tsx | 10 ----- src/components/IconRestore.tsx | 10 ----- src/components/IconRestoreFromTrash.tsx | 10 ----- src/components/IconRestorePage.tsx | 10 ----- src/components/IconRiceBowl.tsx | 15 ------- src/components/IconRingVolume.tsx | 10 ----- src/components/IconRoofing.tsx | 15 ------- src/components/IconRoom.tsx | 10 ----- src/components/IconRoomPreferences.tsx | 17 ------- src/components/IconRoomService.tsx | 10 ----- src/components/IconRotate90DegreesCcw.tsx | 10 ----- src/components/IconRotateLeft.tsx | 10 ----- src/components/IconRotateRight.tsx | 10 ----- src/components/IconRoundedCorner.tsx | 23 ---------- src/components/IconRouter.tsx | 10 ----- src/components/IconRowing.tsx | 23 ---------- src/components/IconRssFeed.tsx | 11 ----- src/components/IconRule.tsx | 17 ------- src/components/IconRuleFolder.tsx | 17 ------- src/components/IconRunCircle.tsx | 19 -------- src/components/IconRvHookup.tsx | 11 ----- src/components/IconSanitizer.tsx | 15 ------- src/components/IconSatellite.tsx | 10 ----- src/components/IconSave.tsx | 10 ----- src/components/IconSaveAlt.tsx | 10 ----- src/components/IconScanner.tsx | 10 ----- src/components/IconScatterPlot.tsx | 14 ------ src/components/IconSchedule.tsx | 11 ----- src/components/IconSchool.tsx | 10 ----- src/components/IconScience.tsx | 19 -------- src/components/IconScore.tsx | 10 ----- src/components/IconScreenLockLandscape.tsx | 10 ----- src/components/IconScreenLockPortrait.tsx | 10 ----- src/components/IconScreenLockRotation.tsx | 10 ----- src/components/IconScreenRotation.tsx | 10 ----- src/components/IconScreenShare.tsx | 10 ----- src/components/IconSdCard.tsx | 10 ----- src/components/IconSdStorage.tsx | 10 ----- src/components/IconSearch.tsx | 10 ----- src/components/IconSearchOff.tsx | 22 ---------- src/components/IconSecurity.tsx | 10 ----- src/components/IconSelectAll.tsx | 10 ----- src/components/IconSelfImprovement.tsx | 22 ---------- src/components/IconSend.tsx | 10 ----- src/components/IconSensorDoor.tsx | 17 ------- src/components/IconSensorWindow.tsx | 17 ------- src/components/IconSentimentDissatisfied.tsx | 12 ----- src/components/IconSentimentSatisfied.tsx | 12 ----- src/components/IconSentimentSatisfiedAlt.tsx | 15 ------- .../IconSentimentVeryDissatisfied.tsx | 12 ----- src/components/IconSentimentVerySatisfied.tsx | 12 ----- src/components/IconSetMeal.tsx | 15 ------- src/components/IconSettings.tsx | 17 ------- src/components/IconSettingsApplications.tsx | 10 ----- src/components/IconSettingsBackupRestore.tsx | 10 ----- src/components/IconSettingsBluetooth.tsx | 10 ----- src/components/IconSettingsBrightness.tsx | 10 ----- src/components/IconSettingsCell.tsx | 10 ----- src/components/IconSettingsEthernet.tsx | 10 ----- src/components/IconSettingsInputAntenna.tsx | 10 ----- src/components/IconSettingsInputComponent.tsx | 10 ----- src/components/IconSettingsInputComposite.tsx | 10 ----- src/components/IconSettingsInputHdmi.tsx | 10 ----- src/components/IconSettingsInputSvideo.tsx | 10 ----- src/components/IconSettingsOverscan.tsx | 10 ----- src/components/IconSettingsPhone.tsx | 10 ----- src/components/IconSettingsPower.tsx | 10 ----- src/components/IconSettingsRemote.tsx | 10 ----- src/components/IconSettingsSystemDaydream.tsx | 10 ----- src/components/IconSettingsVoice.tsx | 10 ----- src/components/IconShare.tsx | 10 ----- src/components/IconShop.tsx | 10 ----- src/components/IconShopTwo.tsx | 10 ----- src/components/IconShoppingBag.tsx | 17 ------- src/components/IconShoppingBasket.tsx | 10 ----- src/components/IconShoppingCart.tsx | 10 ----- src/components/IconShortText.tsx | 23 ---------- src/components/IconShowChart.tsx | 10 ----- src/components/IconShuffle.tsx | 10 ----- src/components/IconShutterSpeed.tsx | 10 ----- src/components/IconSick.tsx | 15 ------- src/components/IconSignalCellular4Bar.tsx | 10 ----- src/components/IconSignalCellularAlt.tsx | 10 ----- ...nSignalCellularConnectedNoInternet4Bar.tsx | 12 ----- src/components/IconSignalCellularNoSim.tsx | 14 ------ src/components/IconSignalCellularNull.tsx | 10 ----- src/components/IconSignalCellularOff.tsx | 10 ----- src/components/IconSignalWifi4Bar.tsx | 10 ----- src/components/IconSignalWifi4BarLock.tsx | 10 ----- src/components/IconSignalWifiOff.tsx | 10 ----- src/components/IconSimCard.tsx | 10 ----- src/components/IconSingleBed.tsx | 19 -------- src/components/IconSkipNext.tsx | 10 ----- src/components/IconSkipPrevious.tsx | 10 ----- src/components/IconSlideshow.tsx | 10 ----- src/components/IconSlowMotionVideo.tsx | 10 ----- src/components/IconSmartButton.tsx | 17 ------- src/components/IconSmartphone.tsx | 10 ----- src/components/IconSmokeFree.tsx | 10 ----- src/components/IconSmokingRooms.tsx | 10 ----- src/components/IconSms.tsx | 10 ----- src/components/IconSmsFailed.tsx | 10 ----- src/components/IconSnippetFolder.tsx | 17 ------- src/components/IconSnooze.tsx | 10 ----- src/components/IconSoap.tsx | 17 ------- src/components/IconSort.tsx | 10 ----- src/components/IconSortByAlpha.tsx | 13 ------ src/components/IconSource.tsx | 17 ------- src/components/IconSouth.tsx | 15 ------- src/components/IconSouthEast.tsx | 15 ------- src/components/IconSouthWest.tsx | 15 ------- src/components/IconSpa.tsx | 14 ------ src/components/IconSpaceBar.tsx | 10 ----- src/components/IconSpeaker.tsx | 10 ----- src/components/IconSpeakerGroup.tsx | 12 ----- src/components/IconSpeakerNotes.tsx | 10 ----- src/components/IconSpeakerNotesOff.tsx | 10 ----- src/components/IconSpeakerPhone.tsx | 10 ----- src/components/IconSpeed.tsx | 10 ----- src/components/IconSpellcheck.tsx | 10 ----- src/components/IconSports.tsx | 26 ----------- src/components/IconSportsBar.tsx | 15 ------- src/components/IconSportsBaseball.tsx | 29 ------------ src/components/IconSportsBasketball.tsx | 44 ------------------- src/components/IconSportsCricket.tsx | 31 ------------- src/components/IconSportsEsports.tsx | 21 --------- src/components/IconSportsFootball.tsx | 23 ---------- src/components/IconSportsGolf.tsx | 25 ----------- src/components/IconSportsHandball.tsx | 23 ---------- src/components/IconSportsHockey.tsx | 26 ----------- src/components/IconSportsKabaddi.tsx | 24 ---------- src/components/IconSportsMma.tsx | 22 ---------- src/components/IconSportsMotorsports.tsx | 22 ---------- src/components/IconSportsRugby.tsx | 21 --------- src/components/IconSportsSoccer.tsx | 21 --------- src/components/IconSportsTennis.tsx | 20 --------- src/components/IconSportsVolleyball.tsx | 26 ----------- src/components/IconSquareFoot.tsx | 21 --------- src/components/IconStackedLineChart.tsx | 15 ------- src/components/IconStairs.tsx | 21 --------- src/components/IconStar.tsx | 11 ----- src/components/IconStarBorder.tsx | 10 ----- src/components/IconStarHalf.tsx | 23 ---------- src/components/IconStarOutline.tsx | 9 ---- src/components/IconStarRate.tsx | 17 ------- src/components/IconStars.tsx | 10 ----- src/components/IconStayCurrentLandscape.tsx | 10 ----- src/components/IconStayCurrentPortrait.tsx | 10 ----- src/components/IconStayPrimaryLandscape.tsx | 10 ----- src/components/IconStayPrimaryPortrait.tsx | 10 ----- src/components/IconStickyNote2.tsx | 15 ------- src/components/IconStop.tsx | 10 ----- src/components/IconStopCircle.tsx | 22 ---------- src/components/IconStopScreenShare.tsx | 10 ----- src/components/IconStorage.tsx | 10 ----- src/components/IconStore.tsx | 10 ----- src/components/IconStoreMallDirectory.tsx | 10 ----- src/components/IconStorefront.tsx | 22 ---------- src/components/IconStraighten.tsx | 10 ----- src/components/IconStreetview.tsx | 12 ----- src/components/IconStrikethroughS.tsx | 23 ---------- src/components/IconStroller.tsx | 22 ---------- src/components/IconStyle.tsx | 10 ----- src/components/IconSubdirectoryArrowLeft.tsx | 10 ----- src/components/IconSubdirectoryArrowRight.tsx | 10 ----- src/components/IconSubject.tsx | 10 ----- src/components/IconSubscript.tsx | 17 ------- src/components/IconSubscriptions.tsx | 10 ----- src/components/IconSubtitles.tsx | 10 ----- src/components/IconSubtitlesOff.tsx | 22 ---------- src/components/IconSubway.tsx | 15 ------- src/components/IconSuperscript.tsx | 17 ------- src/components/IconSupervisedUserCircle.tsx | 10 ----- src/components/IconSupervisorAccount.tsx | 10 ----- src/components/IconSupport.tsx | 19 -------- src/components/IconSupportAgent.tsx | 24 ---------- src/components/IconSurroundSound.tsx | 10 ----- src/components/IconSwapCalls.tsx | 10 ----- src/components/IconSwapHoriz.tsx | 10 ----- src/components/IconSwapHorizontalCircle.tsx | 10 ----- src/components/IconSwapVert.tsx | 10 ----- src/components/IconSwapVerticalCircle.tsx | 10 ----- src/components/IconSwitchCamera.tsx | 10 ----- src/components/IconSwitchLeft.tsx | 15 ------- src/components/IconSwitchRight.tsx | 20 --------- src/components/IconSwitchVideo.tsx | 10 ----- src/components/IconSync.tsx | 10 ----- src/components/IconSyncAlt.tsx | 23 ---------- src/components/IconSyncDisabled.tsx | 10 ----- src/components/IconSyncProblem.tsx | 10 ----- src/components/IconSystemUpdate.tsx | 10 ----- src/components/IconSystemUpdateAlt.tsx | 10 ----- src/components/IconTab.tsx | 10 ----- src/components/IconTabUnselected.tsx | 10 ----- src/components/IconTableChart.tsx | 10 ----- src/components/IconTableRows.tsx | 17 ------- src/components/IconTableView.tsx | 17 ------- src/components/IconTablet.tsx | 10 ----- src/components/IconTabletAndroid.tsx | 23 ---------- src/components/IconTabletMac.tsx | 9 ---- src/components/IconTagFaces.tsx | 10 ----- src/components/IconTapAndPlay.tsx | 10 ----- src/components/IconTapas.tsx | 15 ------- src/components/IconTerrain.tsx | 10 ----- src/components/IconTextFields.tsx | 23 ---------- src/components/IconTextFormat.tsx | 10 ----- src/components/IconTextRotateUp.tsx | 10 ----- src/components/IconTextRotateVertical.tsx | 10 ----- src/components/IconTextRotationAngledown.tsx | 10 ----- src/components/IconTextRotationAngleup.tsx | 10 ----- src/components/IconTextRotationDown.tsx | 10 ----- src/components/IconTextRotationNone.tsx | 10 ----- src/components/IconTextSnippet.tsx | 17 ------- src/components/IconTextsms.tsx | 10 ----- src/components/IconTexture.tsx | 10 ----- src/components/IconTheaters.tsx | 10 ----- src/components/IconThumbDown.tsx | 10 ----- src/components/IconThumbDownAlt.tsx | 10 ----- src/components/IconThumbUp.tsx | 10 ----- src/components/IconThumbUpAlt.tsx | 10 ----- src/components/IconThumbsUpDown.tsx | 10 ----- src/components/IconTimeToLeave.tsx | 10 ----- src/components/IconTimelapse.tsx | 10 ----- src/components/IconTimeline.tsx | 23 ---------- src/components/IconTimer.tsx | 10 ----- src/components/IconTimer10.tsx | 10 ----- src/components/IconTimer3.tsx | 10 ----- src/components/IconTimerOff.tsx | 13 ------ src/components/IconTitle.tsx | 10 ----- src/components/IconToc.tsx | 10 ----- src/components/IconToday.tsx | 10 ----- src/components/IconToggleOff.tsx | 10 ----- src/components/IconToggleOn.tsx | 10 ----- src/components/IconToll.tsx | 11 ----- src/components/IconTonality.tsx | 10 ----- src/components/IconTopic.tsx | 17 ------- src/components/IconTouchApp.tsx | 23 ---------- src/components/IconTour.tsx | 10 ----- src/components/IconToys.tsx | 10 ----- src/components/IconTrackChanges.tsx | 10 ----- src/components/IconTraffic.tsx | 10 ----- src/components/IconTrain.tsx | 10 ----- src/components/IconTram.tsx | 10 ----- src/components/IconTransferWithinAStation.tsx | 10 ----- src/components/IconTransform.tsx | 10 ----- src/components/IconTransitEnterexit.tsx | 10 ----- src/components/IconTranslate.tsx | 10 ----- src/components/IconTrendingDown.tsx | 10 ----- src/components/IconTrendingFlat.tsx | 10 ----- src/components/IconTrendingUp.tsx | 10 ----- src/components/IconTripOrigin.tsx | 11 ----- src/components/IconTty.tsx | 17 ------- src/components/IconTune.tsx | 10 ----- src/components/IconTurnedIn.tsx | 10 ----- src/components/IconTurnedInNot.tsx | 10 ----- src/components/IconTv.tsx | 10 ----- src/components/IconTvOff.tsx | 10 ----- src/components/IconTwoWheeler.tsx | 24 ---------- src/components/IconUmbrella.tsx | 17 ------- src/components/IconUnarchive.tsx | 23 ---------- src/components/IconUndo.tsx | 10 ----- src/components/IconUnfoldLess.tsx | 10 ----- src/components/IconUnfoldMore.tsx | 10 ----- src/components/IconUnpublished.tsx | 15 ------- src/components/IconUnsubscribe.tsx | 9 ---- src/components/IconUpdate.tsx | 23 ---------- src/components/IconUpdateDisabled.tsx | 17 ------- src/components/IconUpgrade.tsx | 17 ------- src/components/IconUsb.tsx | 10 ----- src/components/IconVerified.tsx | 19 -------- src/components/IconVerifiedUser.tsx | 10 ----- src/components/IconVerticalAlignBottom.tsx | 10 ----- src/components/IconVerticalAlignCenter.tsx | 10 ----- src/components/IconVerticalAlignTop.tsx | 10 ----- src/components/IconVerticalDistribute.tsx | 15 ------- src/components/IconVerticalSplit.tsx | 10 ----- src/components/IconVibration.tsx | 10 ----- src/components/IconVideoCall.tsx | 10 ----- src/components/IconVideoLabel.tsx | 10 ----- src/components/IconVideoLibrary.tsx | 10 ----- src/components/IconVideoSettings.tsx | 23 ---------- src/components/IconVideocam.tsx | 10 ----- src/components/IconVideocamOff.tsx | 10 ----- src/components/IconVideogameAsset.tsx | 13 ------ src/components/IconViewAgenda.tsx | 10 ----- src/components/IconViewArray.tsx | 10 ----- src/components/IconViewCarousel.tsx | 10 ----- src/components/IconViewColumn.tsx | 10 ----- src/components/IconViewComfy.tsx | 10 ----- src/components/IconViewCompact.tsx | 10 ----- src/components/IconViewDay.tsx | 10 ----- src/components/IconViewHeadline.tsx | 10 ----- src/components/IconViewList.tsx | 10 ----- src/components/IconViewModule.tsx | 10 ----- src/components/IconViewQuilt.tsx | 10 ----- src/components/IconViewSidebar.tsx | 17 ------- src/components/IconViewStream.tsx | 10 ----- src/components/IconViewWeek.tsx | 10 ----- src/components/IconVignette.tsx | 10 ----- src/components/IconVisibility.tsx | 10 ----- src/components/IconVisibilityOff.tsx | 13 ------ src/components/IconVoiceChat.tsx | 10 ----- src/components/IconVoiceOverOff.tsx | 10 ----- src/components/IconVoicemail.tsx | 10 ----- src/components/IconVolumeDown.tsx | 10 ----- src/components/IconVolumeMute.tsx | 10 ----- src/components/IconVolumeOff.tsx | 10 ----- src/components/IconVolumeUp.tsx | 10 ----- src/components/IconVpnKey.tsx | 10 ----- src/components/IconVpnLock.tsx | 10 ----- src/components/IconWallpaper.tsx | 10 ----- src/components/IconWarning.tsx | 10 ----- src/components/IconWash.tsx | 17 ------- src/components/IconWatch.tsx | 10 ----- src/components/IconWatchLater.tsx | 23 ---------- src/components/IconWaterDamage.tsx | 15 ------- src/components/IconWaves.tsx | 9 ---- src/components/IconWbAuto.tsx | 10 ----- src/components/IconWbCloudy.tsx | 10 ----- src/components/IconWbIncandescent.tsx | 10 ----- src/components/IconWbIridescent.tsx | 10 ----- src/components/IconWbSunny.tsx | 10 ----- src/components/IconWc.tsx | 10 ----- src/components/IconWeb.tsx | 10 ----- src/components/IconWebAsset.tsx | 10 ----- src/components/IconWeekend.tsx | 17 ------- src/components/IconWest.tsx | 15 ------- src/components/IconWhatshot.tsx | 10 ----- src/components/IconWheelchairPickup.tsx | 17 ------- src/components/IconWhereToVote.tsx | 10 ----- src/components/IconWidgets.tsx | 10 ----- src/components/IconWifi.tsx | 10 ----- src/components/IconWifiCalling.tsx | 22 ---------- src/components/IconWifiLock.tsx | 10 ----- src/components/IconWifiOff.tsx | 13 ------ src/components/IconWifiProtectedSetup.tsx | 26 ----------- src/components/IconWifiTethering.tsx | 10 ----- src/components/IconWineBar.tsx | 15 ------- src/components/IconWork.tsx | 10 ----- src/components/IconWorkOff.tsx | 10 ----- src/components/IconWorkOutline.tsx | 13 ------ src/components/IconWrapText.tsx | 10 ----- src/components/IconWrongLocation.tsx | 22 ---------- src/components/IconWysiwyg.tsx | 17 ------- src/components/IconYoutubeSearchedFor.tsx | 10 ----- src/components/IconZoomIn.tsx | 11 ----- src/components/IconZoomOut.tsx | 10 ----- src/components/IconZoomOutMap.tsx | 23 ---------- 1317 files changed, 16667 deletions(-) delete mode 100644 src/components/Icon360.tsx delete mode 100644 src/components/Icon3dRotation.tsx delete mode 100644 src/components/Icon4k.tsx delete mode 100644 src/components/Icon5g.tsx delete mode 100644 src/components/Icon6FtApart.tsx delete mode 100644 src/components/IconAcUnit.tsx delete mode 100644 src/components/IconAccessAlarm.tsx delete mode 100644 src/components/IconAccessAlarms.tsx delete mode 100644 src/components/IconAccessTime.tsx delete mode 100644 src/components/IconAccessibility.tsx delete mode 100644 src/components/IconAccessibilityNew.tsx delete mode 100644 src/components/IconAccessible.tsx delete mode 100644 src/components/IconAccessibleForward.tsx delete mode 100644 src/components/IconAccountBalance.tsx delete mode 100644 src/components/IconAccountBalanceWallet.tsx delete mode 100644 src/components/IconAccountBox.tsx delete mode 100644 src/components/IconAccountCircle.tsx delete mode 100644 src/components/IconAccountTree.tsx delete mode 100644 src/components/IconAdUnits.tsx delete mode 100644 src/components/IconAdb.tsx delete mode 100644 src/components/IconAdd.tsx delete mode 100644 src/components/IconAddAPhoto.tsx delete mode 100644 src/components/IconAddAlarm.tsx delete mode 100644 src/components/IconAddAlert.tsx delete mode 100644 src/components/IconAddBox.tsx delete mode 100644 src/components/IconAddBusiness.tsx delete mode 100644 src/components/IconAddCircle.tsx delete mode 100644 src/components/IconAddCircleOutline.tsx delete mode 100644 src/components/IconAddComment.tsx delete mode 100644 src/components/IconAddIcCall.tsx delete mode 100644 src/components/IconAddLocation.tsx delete mode 100644 src/components/IconAddLocationAlt.tsx delete mode 100644 src/components/IconAddPhotoAlternate.tsx delete mode 100644 src/components/IconAddRoad.tsx delete mode 100644 src/components/IconAddShoppingCart.tsx delete mode 100644 src/components/IconAddTask.tsx delete mode 100644 src/components/IconAddToHomeScreen.tsx delete mode 100644 src/components/IconAddToPhotos.tsx delete mode 100644 src/components/IconAddToQueue.tsx delete mode 100644 src/components/IconAddchart.tsx delete mode 100644 src/components/IconAdjust.tsx delete mode 100644 src/components/IconAdminPanelSettings.tsx delete mode 100644 src/components/IconAgriculture.tsx delete mode 100644 src/components/IconAirlineSeatFlat.tsx delete mode 100644 src/components/IconAirlineSeatFlatAngled.tsx delete mode 100644 src/components/IconAirlineSeatIndividualSuite.tsx delete mode 100644 src/components/IconAirlineSeatLegroomExtra.tsx delete mode 100644 src/components/IconAirlineSeatLegroomNormal.tsx delete mode 100644 src/components/IconAirlineSeatLegroomReduced.tsx delete mode 100644 src/components/IconAirlineSeatReclineExtra.tsx delete mode 100644 src/components/IconAirlineSeatReclineNormal.tsx delete mode 100644 src/components/IconAirplanemodeActive.tsx delete mode 100644 src/components/IconAirplanemodeInactive.tsx delete mode 100644 src/components/IconAirplay.tsx delete mode 100644 src/components/IconAirportShuttle.tsx delete mode 100644 src/components/IconAlarm.tsx delete mode 100644 src/components/IconAlarmAdd.tsx delete mode 100644 src/components/IconAlarmOff.tsx delete mode 100644 src/components/IconAlarmOn.tsx delete mode 100644 src/components/IconAlbum.tsx delete mode 100644 src/components/IconAlignHorizontalCenter.tsx delete mode 100644 src/components/IconAlignHorizontalLeft.tsx delete mode 100644 src/components/IconAlignHorizontalRight.tsx delete mode 100644 src/components/IconAlignVerticalBottom.tsx delete mode 100644 src/components/IconAlignVerticalCenter.tsx delete mode 100644 src/components/IconAlignVerticalTop.tsx delete mode 100644 src/components/IconAllInbox.tsx delete mode 100644 src/components/IconAllInclusive.tsx delete mode 100644 src/components/IconAllOut.tsx delete mode 100644 src/components/IconAltRoute.tsx delete mode 100644 src/components/IconAlternateEmail.tsx delete mode 100644 src/components/IconAmpStories.tsx delete mode 100644 src/components/IconAnalytics.tsx delete mode 100644 src/components/IconAnchor.tsx delete mode 100644 src/components/IconAndroid.tsx delete mode 100644 src/components/IconAnnouncement.tsx delete mode 100644 src/components/IconApartment.tsx delete mode 100644 src/components/IconApi.tsx delete mode 100644 src/components/IconAppBlocking.tsx delete mode 100644 src/components/IconAppSettingsAlt.tsx delete mode 100644 src/components/IconApps.tsx delete mode 100644 src/components/IconArchitecture.tsx delete mode 100644 src/components/IconArchive.tsx delete mode 100644 src/components/IconArrowBack.tsx delete mode 100644 src/components/IconArrowBackIos.tsx delete mode 100644 src/components/IconArrowCircleDown.tsx delete mode 100644 src/components/IconArrowCircleUp.tsx delete mode 100644 src/components/IconArrowDownward.tsx delete mode 100644 src/components/IconArrowDropDown.tsx delete mode 100644 src/components/IconArrowDropDownCircle.tsx delete mode 100644 src/components/IconArrowDropUp.tsx delete mode 100644 src/components/IconArrowForward.tsx delete mode 100644 src/components/IconArrowForwardIos.tsx delete mode 100644 src/components/IconArrowLeft.tsx delete mode 100644 src/components/IconArrowRight.tsx delete mode 100644 src/components/IconArrowRightAlt.tsx delete mode 100644 src/components/IconArrowUpward.tsx delete mode 100644 src/components/IconArtTrack.tsx delete mode 100644 src/components/IconArticle.tsx delete mode 100644 src/components/IconAspectRatio.tsx delete mode 100644 src/components/IconAssessment.tsx delete mode 100644 src/components/IconAssignment.tsx delete mode 100644 src/components/IconAssignmentInd.tsx delete mode 100644 src/components/IconAssignmentLate.tsx delete mode 100644 src/components/IconAssignmentReturn.tsx delete mode 100644 src/components/IconAssignmentReturned.tsx delete mode 100644 src/components/IconAssignmentTurnedIn.tsx delete mode 100644 src/components/IconAssistant.tsx delete mode 100644 src/components/IconAssistantPhoto.tsx delete mode 100644 src/components/IconAtm.tsx delete mode 100644 src/components/IconAttachEmail.tsx delete mode 100644 src/components/IconAttachFile.tsx delete mode 100644 src/components/IconAttachMoney.tsx delete mode 100644 src/components/IconAttachment.tsx delete mode 100644 src/components/IconAudiotrack.tsx delete mode 100644 src/components/IconAutoDelete.tsx delete mode 100644 src/components/IconAutorenew.tsx delete mode 100644 src/components/IconAvTimer.tsx delete mode 100644 src/components/IconBabyChangingStation.tsx delete mode 100644 src/components/IconBackpack.tsx delete mode 100644 src/components/IconBackspace.tsx delete mode 100644 src/components/IconBackup.tsx delete mode 100644 src/components/IconBackupTable.tsx delete mode 100644 src/components/IconBallot.tsx delete mode 100644 src/components/IconBarChart.tsx delete mode 100644 src/components/IconBatchPrediction.tsx delete mode 100644 src/components/IconBathtub.tsx delete mode 100644 src/components/IconBatteryAlert.tsx delete mode 100644 src/components/IconBatteryChargingFull.tsx delete mode 100644 src/components/IconBatteryFull.tsx delete mode 100644 src/components/IconBatteryStd.tsx delete mode 100644 src/components/IconBatteryUnknown.tsx delete mode 100644 src/components/IconBeachAccess.tsx delete mode 100644 src/components/IconBedtime.tsx delete mode 100644 src/components/IconBeenhere.tsx delete mode 100644 src/components/IconBento.tsx delete mode 100644 src/components/IconBikeScooter.tsx delete mode 100644 src/components/IconBiotech.tsx delete mode 100644 src/components/IconBlock.tsx delete mode 100644 src/components/IconBluetooth.tsx delete mode 100644 src/components/IconBluetoothAudio.tsx delete mode 100644 src/components/IconBluetoothConnected.tsx delete mode 100644 src/components/IconBluetoothDisabled.tsx delete mode 100644 src/components/IconBluetoothSearching.tsx delete mode 100644 src/components/IconBlurCircular.tsx delete mode 100644 src/components/IconBlurLinear.tsx delete mode 100644 src/components/IconBlurOff.tsx delete mode 100644 src/components/IconBlurOn.tsx delete mode 100644 src/components/IconBook.tsx delete mode 100644 src/components/IconBookOnline.tsx delete mode 100644 src/components/IconBookmark.tsx delete mode 100644 src/components/IconBookmarkBorder.tsx delete mode 100644 src/components/IconBookmarks.tsx delete mode 100644 src/components/IconBorderAll.tsx delete mode 100644 src/components/IconBorderBottom.tsx delete mode 100644 src/components/IconBorderClear.tsx delete mode 100644 src/components/IconBorderHorizontal.tsx delete mode 100644 src/components/IconBorderInner.tsx delete mode 100644 src/components/IconBorderLeft.tsx delete mode 100644 src/components/IconBorderOuter.tsx delete mode 100644 src/components/IconBorderRight.tsx delete mode 100644 src/components/IconBorderStyle.tsx delete mode 100644 src/components/IconBorderTop.tsx delete mode 100644 src/components/IconBorderVertical.tsx delete mode 100644 src/components/IconBrandingWatermark.tsx delete mode 100644 src/components/IconBrightness1.tsx delete mode 100644 src/components/IconBrightness2.tsx delete mode 100644 src/components/IconBrightness3.tsx delete mode 100644 src/components/IconBrightness4.tsx delete mode 100644 src/components/IconBrightness5.tsx delete mode 100644 src/components/IconBrightness6.tsx delete mode 100644 src/components/IconBrightness7.tsx delete mode 100644 src/components/IconBrightnessAuto.tsx delete mode 100644 src/components/IconBrightnessHigh.tsx delete mode 100644 src/components/IconBrightnessLow.tsx delete mode 100644 src/components/IconBrightnessMedium.tsx delete mode 100644 src/components/IconBrokenImage.tsx delete mode 100644 src/components/IconBrowserNotSupported.tsx delete mode 100644 src/components/IconBrush.tsx delete mode 100644 src/components/IconBubbleChart.tsx delete mode 100644 src/components/IconBugReport.tsx delete mode 100644 src/components/IconBuild.tsx delete mode 100644 src/components/IconBuildCircle.tsx delete mode 100644 src/components/IconBurstMode.tsx delete mode 100644 src/components/IconBusiness.tsx delete mode 100644 src/components/IconBusinessCenter.tsx delete mode 100644 src/components/IconCached.tsx delete mode 100644 src/components/IconCake.tsx delete mode 100644 src/components/IconCalculate.tsx delete mode 100644 src/components/IconCalendarToday.tsx delete mode 100644 src/components/IconCalendarViewDay.tsx delete mode 100644 src/components/IconCall.tsx delete mode 100644 src/components/IconCallEnd.tsx delete mode 100644 src/components/IconCallMade.tsx delete mode 100644 src/components/IconCallMerge.tsx delete mode 100644 src/components/IconCallMissed.tsx delete mode 100644 src/components/IconCallMissedOutgoing.tsx delete mode 100644 src/components/IconCallReceived.tsx delete mode 100644 src/components/IconCallSplit.tsx delete mode 100644 src/components/IconCallToAction.tsx delete mode 100644 src/components/IconCamera.tsx delete mode 100644 src/components/IconCameraAlt.tsx delete mode 100644 src/components/IconCameraEnhance.tsx delete mode 100644 src/components/IconCameraFront.tsx delete mode 100644 src/components/IconCameraRear.tsx delete mode 100644 src/components/IconCameraRoll.tsx delete mode 100644 src/components/IconCampaign.tsx delete mode 100644 src/components/IconCancel.tsx delete mode 100644 src/components/IconCancelPresentation.tsx delete mode 100644 src/components/IconCancelScheduleSend.tsx delete mode 100644 src/components/IconCardGiftcard.tsx delete mode 100644 src/components/IconCardMembership.tsx delete mode 100644 src/components/IconCardTravel.tsx delete mode 100644 src/components/IconCarpenter.tsx delete mode 100644 src/components/IconCasino.tsx delete mode 100644 src/components/IconCast.tsx delete mode 100644 src/components/IconCastConnected.tsx delete mode 100644 src/components/IconCastForEducation.tsx delete mode 100644 src/components/IconCategory.tsx delete mode 100644 src/components/IconCenterFocusStrong.tsx delete mode 100644 src/components/IconCenterFocusWeak.tsx delete mode 100644 src/components/IconChangeHistory.tsx delete mode 100644 src/components/IconChargingStation.tsx delete mode 100644 src/components/IconChat.tsx delete mode 100644 src/components/IconChatBubble.tsx delete mode 100644 src/components/IconChatBubbleOutline.tsx delete mode 100644 src/components/IconCheck.tsx delete mode 100644 src/components/IconCheckBox.tsx delete mode 100644 src/components/IconCheckBoxOutlineBlank.tsx delete mode 100644 src/components/IconCheckCircle.tsx delete mode 100644 src/components/IconCheckCircleOutline.tsx delete mode 100644 src/components/IconCheckroom.tsx delete mode 100644 src/components/IconChevronLeft.tsx delete mode 100644 src/components/IconChevronRight.tsx delete mode 100644 src/components/IconChildCare.tsx delete mode 100644 src/components/IconChildFriendly.tsx delete mode 100644 src/components/IconChromeReaderMode.tsx delete mode 100644 src/components/IconClass.tsx delete mode 100644 src/components/IconCleanHands.tsx delete mode 100644 src/components/IconCleaningServices.tsx delete mode 100644 src/components/IconClear.tsx delete mode 100644 src/components/IconClearAll.tsx delete mode 100644 src/components/IconClose.tsx delete mode 100644 src/components/IconCloseFullscreen.tsx delete mode 100644 src/components/IconClosedCaption.tsx delete mode 100644 src/components/IconClosedCaptionDisabled.tsx delete mode 100644 src/components/IconCloud.tsx delete mode 100644 src/components/IconCloudCircle.tsx delete mode 100644 src/components/IconCloudDone.tsx delete mode 100644 src/components/IconCloudDownload.tsx delete mode 100644 src/components/IconCloudOff.tsx delete mode 100644 src/components/IconCloudQueue.tsx delete mode 100644 src/components/IconCloudUpload.tsx delete mode 100644 src/components/IconCode.tsx delete mode 100644 src/components/IconCollections.tsx delete mode 100644 src/components/IconCollectionsBookmark.tsx delete mode 100644 src/components/IconColorLens.tsx delete mode 100644 src/components/IconColorize.tsx delete mode 100644 src/components/IconComment.tsx delete mode 100644 src/components/IconCommentBank.tsx delete mode 100644 src/components/IconCommute.tsx delete mode 100644 src/components/IconCompare.tsx delete mode 100644 src/components/IconCompareArrows.tsx delete mode 100644 src/components/IconCompassCalibration.tsx delete mode 100644 src/components/IconComputer.tsx delete mode 100644 src/components/IconConfirmationNumber.tsx delete mode 100644 src/components/IconConnectWithoutContact.tsx delete mode 100644 src/components/IconConstruction.tsx delete mode 100644 src/components/IconContactMail.tsx delete mode 100644 src/components/IconContactPage.tsx delete mode 100644 src/components/IconContactPhone.tsx delete mode 100644 src/components/IconContactSupport.tsx delete mode 100644 src/components/IconContactless.tsx delete mode 100644 src/components/IconContacts.tsx delete mode 100644 src/components/IconContentCopy.tsx delete mode 100644 src/components/IconContentCut.tsx delete mode 100644 src/components/IconContentPaste.tsx delete mode 100644 src/components/IconControlCamera.tsx delete mode 100644 src/components/IconControlPoint.tsx delete mode 100644 src/components/IconControlPointDuplicate.tsx delete mode 100644 src/components/IconCopyright.tsx delete mode 100644 src/components/IconCoronavirus.tsx delete mode 100644 src/components/IconCorporateFare.tsx delete mode 100644 src/components/IconCountertops.tsx delete mode 100644 src/components/IconCreate.tsx delete mode 100644 src/components/IconCreateNewFolder.tsx delete mode 100644 src/components/IconCreditCard.tsx delete mode 100644 src/components/IconCrop.tsx delete mode 100644 src/components/IconCrop169.tsx delete mode 100644 src/components/IconCrop32.tsx delete mode 100644 src/components/IconCrop54.tsx delete mode 100644 src/components/IconCrop75.tsx delete mode 100644 src/components/IconCropDin.tsx delete mode 100644 src/components/IconCropFree.tsx delete mode 100644 src/components/IconCropLandscape.tsx delete mode 100644 src/components/IconCropOriginal.tsx delete mode 100644 src/components/IconCropPortrait.tsx delete mode 100644 src/components/IconCropRotate.tsx delete mode 100644 src/components/IconCropSquare.tsx delete mode 100644 src/components/IconDashboard.tsx delete mode 100644 src/components/IconDataUsage.tsx delete mode 100644 src/components/IconDateRange.tsx delete mode 100644 src/components/IconDeck.tsx delete mode 100644 src/components/IconDehaze.tsx delete mode 100644 src/components/IconDelete.tsx delete mode 100644 src/components/IconDeleteForever.tsx delete mode 100644 src/components/IconDeleteOutline.tsx delete mode 100644 src/components/IconDeleteSweep.tsx delete mode 100644 src/components/IconDepartureBoard.tsx delete mode 100644 src/components/IconDescription.tsx delete mode 100644 src/components/IconDesignServices.tsx delete mode 100644 src/components/IconDesktopAccessDisabled.tsx delete mode 100644 src/components/IconDesktopMac.tsx delete mode 100644 src/components/IconDesktopWindows.tsx delete mode 100644 src/components/IconDetails.tsx delete mode 100644 src/components/IconDeveloperBoard.tsx delete mode 100644 src/components/IconDeveloperMode.tsx delete mode 100644 src/components/IconDeviceHub.tsx delete mode 100644 src/components/IconDeviceUnknown.tsx delete mode 100644 src/components/IconDevices.tsx delete mode 100644 src/components/IconDevicesOther.tsx delete mode 100644 src/components/IconDialerSip.tsx delete mode 100644 src/components/IconDialpad.tsx delete mode 100644 src/components/IconDirections.tsx delete mode 100644 src/components/IconDirectionsBike.tsx delete mode 100644 src/components/IconDirectionsBoat.tsx delete mode 100644 src/components/IconDirectionsBus.tsx delete mode 100644 src/components/IconDirectionsCar.tsx delete mode 100644 src/components/IconDirectionsOff.tsx delete mode 100644 src/components/IconDirectionsRailway.tsx delete mode 100644 src/components/IconDirectionsRun.tsx delete mode 100644 src/components/IconDirectionsSubway.tsx delete mode 100644 src/components/IconDirectionsTransit.tsx delete mode 100644 src/components/IconDirectionsWalk.tsx delete mode 100644 src/components/IconDisabledByDefault.tsx delete mode 100644 src/components/IconDiscFull.tsx delete mode 100644 src/components/IconDns.tsx delete mode 100644 src/components/IconDoNotStep.tsx delete mode 100644 src/components/IconDoNotTouch.tsx delete mode 100644 src/components/IconDock.tsx delete mode 100644 src/components/IconDomain.tsx delete mode 100644 src/components/IconDomainDisabled.tsx delete mode 100644 src/components/IconDomainVerification.tsx delete mode 100644 src/components/IconDone.tsx delete mode 100644 src/components/IconDoneAll.tsx delete mode 100644 src/components/IconDoneOutline.tsx delete mode 100644 src/components/IconDonutLarge.tsx delete mode 100644 src/components/IconDonutSmall.tsx delete mode 100644 src/components/IconDoubleArrow.tsx delete mode 100644 src/components/IconDrafts.tsx delete mode 100644 src/components/IconDragHandle.tsx delete mode 100644 src/components/IconDragIndicator.tsx delete mode 100644 src/components/IconDriveEta.tsx delete mode 100644 src/components/IconDry.tsx delete mode 100644 src/components/IconDuo.tsx delete mode 100644 src/components/IconDvr.tsx delete mode 100644 src/components/IconDynamicFeed.tsx delete mode 100644 src/components/IconDynamicForm.tsx delete mode 100644 src/components/IconEast.tsx delete mode 100644 src/components/IconEco.tsx delete mode 100644 src/components/IconEdit.tsx delete mode 100644 src/components/IconEditAttributes.tsx delete mode 100644 src/components/IconEditLocation.tsx delete mode 100644 src/components/IconEditRoad.tsx delete mode 100644 src/components/IconEject.tsx delete mode 100644 src/components/IconElderly.tsx delete mode 100644 src/components/IconElectricBike.tsx delete mode 100644 src/components/IconElectricCar.tsx delete mode 100644 src/components/IconElectricMoped.tsx delete mode 100644 src/components/IconElectricScooter.tsx delete mode 100644 src/components/IconElectricalServices.tsx delete mode 100644 src/components/IconElevator.tsx delete mode 100644 src/components/IconEmail.tsx delete mode 100644 src/components/IconEmojiEmotions.tsx delete mode 100644 src/components/IconEmojiEvents.tsx delete mode 100644 src/components/IconEmojiFlags.tsx delete mode 100644 src/components/IconEmojiFoodBeverage.tsx delete mode 100644 src/components/IconEmojiNature.tsx delete mode 100644 src/components/IconEmojiObjects.tsx delete mode 100644 src/components/IconEmojiPeople.tsx delete mode 100644 src/components/IconEmojiSymbols.tsx delete mode 100644 src/components/IconEmojiTransportation.tsx delete mode 100644 src/components/IconEngineering.tsx delete mode 100644 src/components/IconEnhancedEncryption.tsx delete mode 100644 src/components/IconEqualizer.tsx delete mode 100644 src/components/IconError.tsx delete mode 100644 src/components/IconErrorOutline.tsx delete mode 100644 src/components/IconEscalator.tsx delete mode 100644 src/components/IconEscalatorWarning.tsx delete mode 100644 src/components/IconEuro.tsx delete mode 100644 src/components/IconEuroSymbol.tsx delete mode 100644 src/components/IconEvStation.tsx delete mode 100644 src/components/IconEvent.tsx delete mode 100644 src/components/IconEventAvailable.tsx delete mode 100644 src/components/IconEventBusy.tsx delete mode 100644 src/components/IconEventNote.tsx delete mode 100644 src/components/IconEventSeat.tsx delete mode 100644 src/components/IconExitToApp.tsx delete mode 100644 src/components/IconExpandLess.tsx delete mode 100644 src/components/IconExpandMore.tsx delete mode 100644 src/components/IconExplicit.tsx delete mode 100644 src/components/IconExplore.tsx delete mode 100644 src/components/IconExploreOff.tsx delete mode 100644 src/components/IconExposure.tsx delete mode 100644 src/components/IconExposureNeg1.tsx delete mode 100644 src/components/IconExposureNeg2.tsx delete mode 100644 src/components/IconExposurePlus1.tsx delete mode 100644 src/components/IconExposurePlus2.tsx delete mode 100644 src/components/IconExposureZero.tsx delete mode 100644 src/components/IconExtension.tsx delete mode 100644 src/components/IconFace.tsx delete mode 100644 src/components/IconFacebook.tsx delete mode 100644 src/components/IconFactCheck.tsx delete mode 100644 src/components/IconFamilyRestroom.tsx delete mode 100644 src/components/IconFastForward.tsx delete mode 100644 src/components/IconFastRewind.tsx delete mode 100644 src/components/IconFastfood.tsx delete mode 100644 src/components/IconFavorite.tsx delete mode 100644 src/components/IconFavoriteBorder.tsx delete mode 100644 src/components/IconFeaturedPlayList.tsx delete mode 100644 src/components/IconFeaturedVideo.tsx delete mode 100644 src/components/IconFeedback.tsx delete mode 100644 src/components/IconFence.tsx delete mode 100644 src/components/IconFiberDvr.tsx delete mode 100644 src/components/IconFiberManualRecord.tsx delete mode 100644 src/components/IconFiberNew.tsx delete mode 100644 src/components/IconFiberPin.tsx delete mode 100644 src/components/IconFiberSmartRecord.tsx delete mode 100644 src/components/IconFileCopy.tsx delete mode 100644 src/components/IconFilter.tsx delete mode 100644 src/components/IconFilter1.tsx delete mode 100644 src/components/IconFilter2.tsx delete mode 100644 src/components/IconFilter3.tsx delete mode 100644 src/components/IconFilter4.tsx delete mode 100644 src/components/IconFilter5.tsx delete mode 100644 src/components/IconFilter6.tsx delete mode 100644 src/components/IconFilter7.tsx delete mode 100644 src/components/IconFilter8.tsx delete mode 100644 src/components/IconFilter9.tsx delete mode 100644 src/components/IconFilter9Plus.tsx delete mode 100644 src/components/IconFilterAlt.tsx delete mode 100644 src/components/IconFilterBAndW.tsx delete mode 100644 src/components/IconFilterCenterFocus.tsx delete mode 100644 src/components/IconFilterDrama.tsx delete mode 100644 src/components/IconFilterFrames.tsx delete mode 100644 src/components/IconFilterHdr.tsx delete mode 100644 src/components/IconFilterList.tsx delete mode 100644 src/components/IconFilterNone.tsx delete mode 100644 src/components/IconFilterTiltShift.tsx delete mode 100644 src/components/IconFilterVintage.tsx delete mode 100644 src/components/IconFindInPage.tsx delete mode 100644 src/components/IconFindReplace.tsx delete mode 100644 src/components/IconFingerprint.tsx delete mode 100644 src/components/IconFireExtinguisher.tsx delete mode 100644 src/components/IconFireplace.tsx delete mode 100644 src/components/IconFirstPage.tsx delete mode 100644 src/components/IconFitnessCenter.tsx delete mode 100644 src/components/IconFlag.tsx delete mode 100644 src/components/IconFlaky.tsx delete mode 100644 src/components/IconFlare.tsx delete mode 100644 src/components/IconFlashAuto.tsx delete mode 100644 src/components/IconFlashOff.tsx delete mode 100644 src/components/IconFlashOn.tsx delete mode 100644 src/components/IconFlight.tsx delete mode 100644 src/components/IconFlightLand.tsx delete mode 100644 src/components/IconFlightTakeoff.tsx delete mode 100644 src/components/IconFlip.tsx delete mode 100644 src/components/IconFlipCameraAndroid.tsx delete mode 100644 src/components/IconFlipCameraIos.tsx delete mode 100644 src/components/IconFlipToBack.tsx delete mode 100644 src/components/IconFlipToFront.tsx delete mode 100644 src/components/IconFolder.tsx delete mode 100644 src/components/IconFolderOpen.tsx delete mode 100644 src/components/IconFolderShared.tsx delete mode 100644 src/components/IconFolderSpecial.tsx delete mode 100644 src/components/IconFollowTheSigns.tsx delete mode 100644 src/components/IconFontDownload.tsx delete mode 100644 src/components/IconFoodBank.tsx delete mode 100644 src/components/IconFormatAlignCenter.tsx delete mode 100644 src/components/IconFormatAlignJustify.tsx delete mode 100644 src/components/IconFormatAlignLeft.tsx delete mode 100644 src/components/IconFormatAlignRight.tsx delete mode 100644 src/components/IconFormatBold.tsx delete mode 100644 src/components/IconFormatClear.tsx delete mode 100644 src/components/IconFormatColorReset.tsx delete mode 100644 src/components/IconFormatIndentDecrease.tsx delete mode 100644 src/components/IconFormatIndentIncrease.tsx delete mode 100644 src/components/IconFormatItalic.tsx delete mode 100644 src/components/IconFormatLineSpacing.tsx delete mode 100644 src/components/IconFormatListBulleted.tsx delete mode 100644 src/components/IconFormatListNumbered.tsx delete mode 100644 src/components/IconFormatListNumberedRtl.tsx delete mode 100644 src/components/IconFormatPaint.tsx delete mode 100644 src/components/IconFormatQuote.tsx delete mode 100644 src/components/IconFormatShapes.tsx delete mode 100644 src/components/IconFormatSize.tsx delete mode 100644 src/components/IconFormatStrikethrough.tsx delete mode 100644 src/components/IconFormatTextdirectionLToR.tsx delete mode 100644 src/components/IconFormatTextdirectionRToL.tsx delete mode 100644 src/components/IconFormatUnderlined.tsx delete mode 100644 src/components/IconForum.tsx delete mode 100644 src/components/IconForward.tsx delete mode 100644 src/components/IconForward10.tsx delete mode 100644 src/components/IconForward30.tsx delete mode 100644 src/components/IconForward5.tsx delete mode 100644 src/components/IconForwardToInbox.tsx delete mode 100644 src/components/IconFoundation.tsx delete mode 100644 src/components/IconFreeBreakfast.tsx delete mode 100644 src/components/IconFullscreen.tsx delete mode 100644 src/components/IconFullscreenExit.tsx delete mode 100644 src/components/IconFunctions.tsx delete mode 100644 src/components/IconGTranslate.tsx delete mode 100644 src/components/IconGamepad.tsx delete mode 100644 src/components/IconGames.tsx delete mode 100644 src/components/IconGavel.tsx delete mode 100644 src/components/IconGesture.tsx delete mode 100644 src/components/IconGetApp.tsx delete mode 100644 src/components/IconGif.tsx delete mode 100644 src/components/IconGolfCourse.tsx delete mode 100644 src/components/IconGpsFixed.tsx delete mode 100644 src/components/IconGpsNotFixed.tsx delete mode 100644 src/components/IconGpsOff.tsx delete mode 100644 src/components/IconGrade.tsx delete mode 100644 src/components/IconGradient.tsx delete mode 100644 src/components/IconGrading.tsx delete mode 100644 src/components/IconGrain.tsx delete mode 100644 src/components/IconGraphicEq.tsx delete mode 100644 src/components/IconGrass.tsx delete mode 100644 src/components/IconGridOff.tsx delete mode 100644 src/components/IconGridOn.tsx delete mode 100644 src/components/IconGroup.tsx delete mode 100644 src/components/IconGroupAdd.tsx delete mode 100644 src/components/IconGroupWork.tsx delete mode 100644 src/components/IconGroups.tsx delete mode 100644 src/components/IconHandyman.tsx delete mode 100644 src/components/IconHd.tsx delete mode 100644 src/components/IconHdrOff.tsx delete mode 100644 src/components/IconHdrOn.tsx delete mode 100644 src/components/IconHdrStrong.tsx delete mode 100644 src/components/IconHdrWeak.tsx delete mode 100644 src/components/IconHeadset.tsx delete mode 100644 src/components/IconHeadsetMic.tsx delete mode 100644 src/components/IconHealing.tsx delete mode 100644 src/components/IconHearing.tsx delete mode 100644 src/components/IconHearingDisabled.tsx delete mode 100644 src/components/IconHeight.tsx delete mode 100644 src/components/IconHelp.tsx delete mode 100644 src/components/IconHelpCenter.tsx delete mode 100644 src/components/IconHelpOutline.tsx delete mode 100644 src/components/IconHighQuality.tsx delete mode 100644 src/components/IconHighlight.tsx delete mode 100644 src/components/IconHighlightAlt.tsx delete mode 100644 src/components/IconHighlightOff.tsx delete mode 100644 src/components/IconHistory.tsx delete mode 100644 src/components/IconHistoryEdu.tsx delete mode 100644 src/components/IconHistoryToggleOff.tsx delete mode 100644 src/components/IconHome.tsx delete mode 100644 src/components/IconHomeRepairService.tsx delete mode 100644 src/components/IconHomeWork.tsx delete mode 100644 src/components/IconHorizontalDistribute.tsx delete mode 100644 src/components/IconHorizontalRule.tsx delete mode 100644 src/components/IconHorizontalSplit.tsx delete mode 100644 src/components/IconHotTub.tsx delete mode 100644 src/components/IconHotel.tsx delete mode 100644 src/components/IconHourglassBottom.tsx delete mode 100644 src/components/IconHourglassDisabled.tsx delete mode 100644 src/components/IconHourglassEmpty.tsx delete mode 100644 src/components/IconHourglassFull.tsx delete mode 100644 src/components/IconHourglassTop.tsx delete mode 100644 src/components/IconHouse.tsx delete mode 100644 src/components/IconHouseSiding.tsx delete mode 100644 src/components/IconHowToReg.tsx delete mode 100644 src/components/IconHowToVote.tsx delete mode 100644 src/components/IconHttp.tsx delete mode 100644 src/components/IconHttps.tsx delete mode 100644 src/components/IconHvac.tsx delete mode 100644 src/components/IconImage.tsx delete mode 100644 src/components/IconImageAspectRatio.tsx delete mode 100644 src/components/IconImageNotSupported.tsx delete mode 100644 src/components/IconImageSearch.tsx delete mode 100644 src/components/IconImportContacts.tsx delete mode 100644 src/components/IconImportExport.tsx delete mode 100644 src/components/IconImportantDevices.tsx delete mode 100644 src/components/IconInbox.tsx delete mode 100644 src/components/IconIndeterminateCheckBox.tsx delete mode 100644 src/components/IconInfo.tsx delete mode 100644 src/components/IconInput.tsx delete mode 100644 src/components/IconInsertChart.tsx delete mode 100644 src/components/IconInsertChartOutlined.tsx delete mode 100644 src/components/IconInsertComment.tsx delete mode 100644 src/components/IconInsertDriveFile.tsx delete mode 100644 src/components/IconInsertEmoticon.tsx delete mode 100644 src/components/IconInsertInvitation.tsx delete mode 100644 src/components/IconInsertLink.tsx delete mode 100644 src/components/IconInsertPhoto.tsx delete mode 100644 src/components/IconInsights.tsx delete mode 100644 src/components/IconIntegrationInstructions.tsx delete mode 100644 src/components/IconInvertColors.tsx delete mode 100644 src/components/IconInvertColorsOff.tsx delete mode 100644 src/components/IconIso.tsx delete mode 100644 src/components/IconKeyboard.tsx delete mode 100644 src/components/IconKeyboardArrowDown.tsx delete mode 100644 src/components/IconKeyboardArrowLeft.tsx delete mode 100644 src/components/IconKeyboardArrowRight.tsx delete mode 100644 src/components/IconKeyboardArrowUp.tsx delete mode 100644 src/components/IconKeyboardBackspace.tsx delete mode 100644 src/components/IconKeyboardCapslock.tsx delete mode 100644 src/components/IconKeyboardHide.tsx delete mode 100644 src/components/IconKeyboardReturn.tsx delete mode 100644 src/components/IconKeyboardTab.tsx delete mode 100644 src/components/IconKeyboardVoice.tsx delete mode 100644 src/components/IconKingBed.tsx delete mode 100644 src/components/IconKitchen.tsx delete mode 100644 src/components/IconLabel.tsx delete mode 100644 src/components/IconLabelImportant.tsx delete mode 100644 src/components/IconLabelOff.tsx delete mode 100644 src/components/IconLandscape.tsx delete mode 100644 src/components/IconLanguage.tsx delete mode 100644 src/components/IconLaptop.tsx delete mode 100644 src/components/IconLaptopChromebook.tsx delete mode 100644 src/components/IconLaptopMac.tsx delete mode 100644 src/components/IconLaptopWindows.tsx delete mode 100644 src/components/IconLastPage.tsx delete mode 100644 src/components/IconLaunch.tsx delete mode 100644 src/components/IconLayers.tsx delete mode 100644 src/components/IconLayersClear.tsx delete mode 100644 src/components/IconLeaderboard.tsx delete mode 100644 src/components/IconLeakAdd.tsx delete mode 100644 src/components/IconLeakRemove.tsx delete mode 100644 src/components/IconLegendToggle.tsx delete mode 100644 src/components/IconLens.tsx delete mode 100644 src/components/IconLibraryAdd.tsx delete mode 100644 src/components/IconLibraryAddCheck.tsx delete mode 100644 src/components/IconLibraryBooks.tsx delete mode 100644 src/components/IconLibraryMusic.tsx delete mode 100644 src/components/IconLineStyle.tsx delete mode 100644 src/components/IconLineWeight.tsx delete mode 100644 src/components/IconLinearScale.tsx delete mode 100644 src/components/IconLink.tsx delete mode 100644 src/components/IconLinkOff.tsx delete mode 100644 src/components/IconLinkedCamera.tsx delete mode 100644 src/components/IconList.tsx delete mode 100644 src/components/IconListAlt.tsx delete mode 100644 src/components/IconLiveHelp.tsx delete mode 100644 src/components/IconLiveTv.tsx delete mode 100644 src/components/IconLocalActivity.tsx delete mode 100644 src/components/IconLocalAirport.tsx delete mode 100644 src/components/IconLocalAtm.tsx delete mode 100644 src/components/IconLocalBar.tsx delete mode 100644 src/components/IconLocalCafe.tsx delete mode 100644 src/components/IconLocalCarWash.tsx delete mode 100644 src/components/IconLocalConvenienceStore.tsx delete mode 100644 src/components/IconLocalDining.tsx delete mode 100644 src/components/IconLocalDrink.tsx delete mode 100644 src/components/IconLocalFireDepartment.tsx delete mode 100644 src/components/IconLocalFlorist.tsx delete mode 100644 src/components/IconLocalGasStation.tsx delete mode 100644 src/components/IconLocalGroceryStore.tsx delete mode 100644 src/components/IconLocalHospital.tsx delete mode 100644 src/components/IconLocalHotel.tsx delete mode 100644 src/components/IconLocalLaundryService.tsx delete mode 100644 src/components/IconLocalLibrary.tsx delete mode 100644 src/components/IconLocalMall.tsx delete mode 100644 src/components/IconLocalMovies.tsx delete mode 100644 src/components/IconLocalOffer.tsx delete mode 100644 src/components/IconLocalParking.tsx delete mode 100644 src/components/IconLocalPharmacy.tsx delete mode 100644 src/components/IconLocalPhone.tsx delete mode 100644 src/components/IconLocalPizza.tsx delete mode 100644 src/components/IconLocalPlay.tsx delete mode 100644 src/components/IconLocalPolice.tsx delete mode 100644 src/components/IconLocalPostOffice.tsx delete mode 100644 src/components/IconLocalPrintshop.tsx delete mode 100644 src/components/IconLocalSee.tsx delete mode 100644 src/components/IconLocalShipping.tsx delete mode 100644 src/components/IconLocalTaxi.tsx delete mode 100644 src/components/IconLocationCity.tsx delete mode 100644 src/components/IconLocationDisabled.tsx delete mode 100644 src/components/IconLocationOff.tsx delete mode 100644 src/components/IconLocationOn.tsx delete mode 100644 src/components/IconLocationSearching.tsx delete mode 100644 src/components/IconLock.tsx delete mode 100644 src/components/IconLockOpen.tsx delete mode 100644 src/components/IconLogin.tsx delete mode 100644 src/components/IconLooks.tsx delete mode 100644 src/components/IconLooks3.tsx delete mode 100644 src/components/IconLooks4.tsx delete mode 100644 src/components/IconLooks5.tsx delete mode 100644 src/components/IconLooks6.tsx delete mode 100644 src/components/IconLooksOne.tsx delete mode 100644 src/components/IconLooksTwo.tsx delete mode 100644 src/components/IconLoop.tsx delete mode 100644 src/components/IconLoupe.tsx delete mode 100644 src/components/IconLowPriority.tsx delete mode 100644 src/components/IconLoyalty.tsx delete mode 100644 src/components/IconLuggage.tsx delete mode 100644 src/components/IconMail.tsx delete mode 100644 src/components/IconMailOutline.tsx delete mode 100644 src/components/IconMap.tsx delete mode 100644 src/components/IconMapsUgc.tsx delete mode 100644 src/components/IconMarkChatRead.tsx delete mode 100644 src/components/IconMarkChatUnread.tsx delete mode 100644 src/components/IconMarkEmailRead.tsx delete mode 100644 src/components/IconMarkEmailUnread.tsx delete mode 100644 src/components/IconMarkunread.tsx delete mode 100644 src/components/IconMarkunreadMailbox.tsx delete mode 100644 src/components/IconMasks.tsx delete mode 100644 src/components/IconMaximize.tsx delete mode 100644 src/components/IconMediation.tsx delete mode 100644 src/components/IconMedicalServices.tsx delete mode 100644 src/components/IconMeetingRoom.tsx delete mode 100644 src/components/IconMemory.tsx delete mode 100644 src/components/IconMenu.tsx delete mode 100644 src/components/IconMenuBook.tsx delete mode 100644 src/components/IconMenuOpen.tsx delete mode 100644 src/components/IconMergeType.tsx delete mode 100644 src/components/IconMessage.tsx delete mode 100644 src/components/IconMic.tsx delete mode 100644 src/components/IconMicNone.tsx delete mode 100644 src/components/IconMicOff.tsx delete mode 100644 src/components/IconMicrowave.tsx delete mode 100644 src/components/IconMilitaryTech.tsx delete mode 100644 src/components/IconMinimize.tsx delete mode 100644 src/components/IconMiscellaneousServices.tsx delete mode 100644 src/components/IconMissedVideoCall.tsx delete mode 100644 src/components/IconMms.tsx delete mode 100644 src/components/IconMobileFriendly.tsx delete mode 100644 src/components/IconMobileOff.tsx delete mode 100644 src/components/IconMobileScreenShare.tsx delete mode 100644 src/components/IconModeComment.tsx delete mode 100644 src/components/IconModelTraining.tsx delete mode 100644 src/components/IconMonetizationOn.tsx delete mode 100644 src/components/IconMoney.tsx delete mode 100644 src/components/IconMoneyOff.tsx delete mode 100644 src/components/IconMonochromePhotos.tsx delete mode 100644 src/components/IconMood.tsx delete mode 100644 src/components/IconMoodBad.tsx delete mode 100644 src/components/IconMoped.tsx delete mode 100644 src/components/IconMore.tsx delete mode 100644 src/components/IconMoreHoriz.tsx delete mode 100644 src/components/IconMoreTime.tsx delete mode 100644 src/components/IconMoreVert.tsx delete mode 100644 src/components/IconMotionPhotosOn.tsx delete mode 100644 src/components/IconMotionPhotosPause.tsx delete mode 100644 src/components/IconMotionPhotosPaused.tsx delete mode 100644 src/components/IconMouse.tsx delete mode 100644 src/components/IconMoveToInbox.tsx delete mode 100644 src/components/IconMovie.tsx delete mode 100644 src/components/IconMovieCreation.tsx delete mode 100644 src/components/IconMovieFilter.tsx delete mode 100644 src/components/IconMultilineChart.tsx delete mode 100644 src/components/IconMultipleStop.tsx delete mode 100644 src/components/IconMuseum.tsx delete mode 100644 src/components/IconMusicNote.tsx delete mode 100644 src/components/IconMusicOff.tsx delete mode 100644 src/components/IconMusicVideo.tsx delete mode 100644 src/components/IconMyLocation.tsx delete mode 100644 src/components/IconNat.tsx delete mode 100644 src/components/IconNature.tsx delete mode 100644 src/components/IconNaturePeople.tsx delete mode 100644 src/components/IconNavigateBefore.tsx delete mode 100644 src/components/IconNavigateNext.tsx delete mode 100644 src/components/IconNavigation.tsx delete mode 100644 src/components/IconNearMe.tsx delete mode 100644 src/components/IconNearMeDisabled.tsx delete mode 100644 src/components/IconNetworkCheck.tsx delete mode 100644 src/components/IconNetworkLocked.tsx delete mode 100644 src/components/IconNewReleases.tsx delete mode 100644 src/components/IconNextPlan.tsx delete mode 100644 src/components/IconNextWeek.tsx delete mode 100644 src/components/IconNfc.tsx delete mode 100644 src/components/IconNightShelter.tsx delete mode 100644 src/components/IconNightsStay.tsx delete mode 100644 src/components/IconNoBackpack.tsx delete mode 100644 src/components/IconNoCell.tsx delete mode 100644 src/components/IconNoDrinks.tsx delete mode 100644 src/components/IconNoEncryption.tsx delete mode 100644 src/components/IconNoFlash.tsx delete mode 100644 src/components/IconNoFood.tsx delete mode 100644 src/components/IconNoLuggage.tsx delete mode 100644 src/components/IconNoMeals.tsx delete mode 100644 src/components/IconNoMeetingRoom.tsx delete mode 100644 src/components/IconNoPhotography.tsx delete mode 100644 src/components/IconNoSim.tsx delete mode 100644 src/components/IconNoStroller.tsx delete mode 100644 src/components/IconNoTransfer.tsx delete mode 100644 src/components/IconNorth.tsx delete mode 100644 src/components/IconNorthEast.tsx delete mode 100644 src/components/IconNorthWest.tsx delete mode 100644 src/components/IconNotAccessible.tsx delete mode 100644 src/components/IconNotInterested.tsx delete mode 100644 src/components/IconNotListedLocation.tsx delete mode 100644 src/components/IconNotStarted.tsx delete mode 100644 src/components/IconNote.tsx delete mode 100644 src/components/IconNoteAdd.tsx delete mode 100644 src/components/IconNotes.tsx delete mode 100644 src/components/IconNotificationImportant.tsx delete mode 100644 src/components/IconNotifications.tsx delete mode 100644 src/components/IconNotificationsActive.tsx delete mode 100644 src/components/IconNotificationsNone.tsx delete mode 100644 src/components/IconNotificationsOff.tsx delete mode 100644 src/components/IconNotificationsPaused.tsx delete mode 100644 src/components/IconOfflineBolt.tsx delete mode 100644 src/components/IconOfflinePin.tsx delete mode 100644 src/components/IconOndemandVideo.tsx delete mode 100644 src/components/IconOnlinePrediction.tsx delete mode 100644 src/components/IconOpacity.tsx delete mode 100644 src/components/IconOpenInBrowser.tsx delete mode 100644 src/components/IconOpenInFull.tsx delete mode 100644 src/components/IconOpenInNew.tsx delete mode 100644 src/components/IconOpenWith.tsx delete mode 100644 src/components/IconOutbond.tsx delete mode 100644 src/components/IconOutdoorGrill.tsx delete mode 100644 src/components/IconOutlet.tsx delete mode 100644 src/components/IconOutlinedFlag.tsx delete mode 100644 src/components/IconPages.tsx delete mode 100644 src/components/IconPageview.tsx delete mode 100644 src/components/IconPalette.tsx delete mode 100644 src/components/IconPanTool.tsx delete mode 100644 src/components/IconPanorama.tsx delete mode 100644 src/components/IconPanoramaFishEye.tsx delete mode 100644 src/components/IconPanoramaHorizontal.tsx delete mode 100644 src/components/IconPanoramaVertical.tsx delete mode 100644 src/components/IconPanoramaWideAngle.tsx delete mode 100644 src/components/IconPartyMode.tsx delete mode 100644 src/components/IconPause.tsx delete mode 100644 src/components/IconPauseCircleFilled.tsx delete mode 100644 src/components/IconPauseCircleOutline.tsx delete mode 100644 src/components/IconPausePresentation.tsx delete mode 100644 src/components/IconPayment.tsx delete mode 100644 src/components/IconPayments.tsx delete mode 100644 src/components/IconPedalBike.tsx delete mode 100644 src/components/IconPending.tsx delete mode 100644 src/components/IconPendingActions.tsx delete mode 100644 src/components/IconPeople.tsx delete mode 100644 src/components/IconPeopleAlt.tsx delete mode 100644 src/components/IconPeopleOutline.tsx delete mode 100644 src/components/IconPermCameraMic.tsx delete mode 100644 src/components/IconPermContactCalendar.tsx delete mode 100644 src/components/IconPermDataSetting.tsx delete mode 100644 src/components/IconPermDeviceInformation.tsx delete mode 100644 src/components/IconPermIdentity.tsx delete mode 100644 src/components/IconPermMedia.tsx delete mode 100644 src/components/IconPermPhoneMsg.tsx delete mode 100644 src/components/IconPermScanWifi.tsx delete mode 100644 src/components/IconPerson.tsx delete mode 100644 src/components/IconPersonAdd.tsx delete mode 100644 src/components/IconPersonAddAlt1.tsx delete mode 100644 src/components/IconPersonAddDisabled.tsx delete mode 100644 src/components/IconPersonOutline.tsx delete mode 100644 src/components/IconPersonPin.tsx delete mode 100644 src/components/IconPersonPinCircle.tsx delete mode 100644 src/components/IconPersonRemove.tsx delete mode 100644 src/components/IconPersonRemoveAlt1.tsx delete mode 100644 src/components/IconPersonSearch.tsx delete mode 100644 src/components/IconPersonalVideo.tsx delete mode 100644 src/components/IconPestControl.tsx delete mode 100644 src/components/IconPestControlRodent.tsx delete mode 100644 src/components/IconPets.tsx delete mode 100644 src/components/IconPhone.tsx delete mode 100644 src/components/IconPhoneAndroid.tsx delete mode 100644 src/components/IconPhoneBluetoothSpeaker.tsx delete mode 100644 src/components/IconPhoneCallback.tsx delete mode 100644 src/components/IconPhoneDisabled.tsx delete mode 100644 src/components/IconPhoneEnabled.tsx delete mode 100644 src/components/IconPhoneForwarded.tsx delete mode 100644 src/components/IconPhoneInTalk.tsx delete mode 100644 src/components/IconPhoneIphone.tsx delete mode 100644 src/components/IconPhoneLocked.tsx delete mode 100644 src/components/IconPhoneMissed.tsx delete mode 100644 src/components/IconPhonePaused.tsx delete mode 100644 src/components/IconPhonelink.tsx delete mode 100644 src/components/IconPhonelinkErase.tsx delete mode 100644 src/components/IconPhonelinkLock.tsx delete mode 100644 src/components/IconPhonelinkOff.tsx delete mode 100644 src/components/IconPhonelinkRing.tsx delete mode 100644 src/components/IconPhonelinkSetup.tsx delete mode 100644 src/components/IconPhoto.tsx delete mode 100644 src/components/IconPhotoAlbum.tsx delete mode 100644 src/components/IconPhotoCamera.tsx delete mode 100644 src/components/IconPhotoFilter.tsx delete mode 100644 src/components/IconPhotoLibrary.tsx delete mode 100644 src/components/IconPhotoSizeSelectActual.tsx delete mode 100644 src/components/IconPhotoSizeSelectLarge.tsx delete mode 100644 src/components/IconPhotoSizeSelectSmall.tsx delete mode 100644 src/components/IconPictureAsPdf.tsx delete mode 100644 src/components/IconPictureInPicture.tsx delete mode 100644 src/components/IconPictureInPictureAlt.tsx delete mode 100644 src/components/IconPieChart.tsx delete mode 100644 src/components/IconPinDrop.tsx delete mode 100644 src/components/IconPlace.tsx delete mode 100644 src/components/IconPlagiarism.tsx delete mode 100644 src/components/IconPlayArrow.tsx delete mode 100644 src/components/IconPlayCircleFilled.tsx delete mode 100644 src/components/IconPlayCircleOutline.tsx delete mode 100644 src/components/IconPlayForWork.tsx delete mode 100644 src/components/IconPlaylistAdd.tsx delete mode 100644 src/components/IconPlaylistAddCheck.tsx delete mode 100644 src/components/IconPlaylistPlay.tsx delete mode 100644 src/components/IconPlumbing.tsx delete mode 100644 src/components/IconPlusOne.tsx delete mode 100644 src/components/IconPointOfSale.tsx delete mode 100644 src/components/IconPolicy.tsx delete mode 100644 src/components/IconPoll.tsx delete mode 100644 src/components/IconPolymer.tsx delete mode 100644 src/components/IconPool.tsx delete mode 100644 src/components/IconPortableWifiOff.tsx delete mode 100644 src/components/IconPortrait.tsx delete mode 100644 src/components/IconPostAdd.tsx delete mode 100644 src/components/IconPower.tsx delete mode 100644 src/components/IconPowerInput.tsx delete mode 100644 src/components/IconPowerOff.tsx delete mode 100644 src/components/IconPowerSettingsNew.tsx delete mode 100644 src/components/IconPregnantWoman.tsx delete mode 100644 src/components/IconPresentToAll.tsx delete mode 100644 src/components/IconPreview.tsx delete mode 100644 src/components/IconPrint.tsx delete mode 100644 src/components/IconPrintDisabled.tsx delete mode 100644 src/components/IconPriorityHigh.tsx delete mode 100644 src/components/IconPrivacyTip.tsx delete mode 100644 src/components/IconPsychology.tsx delete mode 100644 src/components/IconPublic.tsx delete mode 100644 src/components/IconPublicOff.tsx delete mode 100644 src/components/IconPublish.tsx delete mode 100644 src/components/IconPublishedWithChanges.tsx delete mode 100644 src/components/IconPushPin.tsx delete mode 100644 src/components/IconQrCode.tsx delete mode 100644 src/components/IconQrCode2.tsx delete mode 100644 src/components/IconQrCodeScanner.tsx delete mode 100644 src/components/IconQueryBuilder.tsx delete mode 100644 src/components/IconQuestionAnswer.tsx delete mode 100644 src/components/IconQueue.tsx delete mode 100644 src/components/IconQueueMusic.tsx delete mode 100644 src/components/IconQueuePlayNext.tsx delete mode 100644 src/components/IconQuickreply.tsx delete mode 100644 src/components/IconRadio.tsx delete mode 100644 src/components/IconRadioButtonChecked.tsx delete mode 100644 src/components/IconRadioButtonUnchecked.tsx delete mode 100644 src/components/IconRateReview.tsx delete mode 100644 src/components/IconReadMore.tsx delete mode 100644 src/components/IconReceipt.tsx delete mode 100644 src/components/IconReceiptLong.tsx delete mode 100644 src/components/IconRecentActors.tsx delete mode 100644 src/components/IconRecordVoiceOver.tsx delete mode 100644 src/components/IconRedeem.tsx delete mode 100644 src/components/IconRedo.tsx delete mode 100644 src/components/IconReduceCapacity.tsx delete mode 100644 src/components/IconRefresh.tsx delete mode 100644 src/components/IconRemove.tsx delete mode 100644 src/components/IconRemoveCircle.tsx delete mode 100644 src/components/IconRemoveCircleOutline.tsx delete mode 100644 src/components/IconRemoveFromQueue.tsx delete mode 100644 src/components/IconRemoveRedEye.tsx delete mode 100644 src/components/IconRemoveShoppingCart.tsx delete mode 100644 src/components/IconReorder.tsx delete mode 100644 src/components/IconRepeat.tsx delete mode 100644 src/components/IconRepeatOne.tsx delete mode 100644 src/components/IconReplay.tsx delete mode 100644 src/components/IconReplay10.tsx delete mode 100644 src/components/IconReplay30.tsx delete mode 100644 src/components/IconReplay5.tsx delete mode 100644 src/components/IconReply.tsx delete mode 100644 src/components/IconReplyAll.tsx delete mode 100644 src/components/IconReport.tsx delete mode 100644 src/components/IconReportOff.tsx delete mode 100644 src/components/IconReportProblem.tsx delete mode 100644 src/components/IconRequestPage.tsx delete mode 100644 src/components/IconRequestQuote.tsx delete mode 100644 src/components/IconRestaurant.tsx delete mode 100644 src/components/IconRestaurantMenu.tsx delete mode 100644 src/components/IconRestore.tsx delete mode 100644 src/components/IconRestoreFromTrash.tsx delete mode 100644 src/components/IconRestorePage.tsx delete mode 100644 src/components/IconRiceBowl.tsx delete mode 100644 src/components/IconRingVolume.tsx delete mode 100644 src/components/IconRoofing.tsx delete mode 100644 src/components/IconRoom.tsx delete mode 100644 src/components/IconRoomPreferences.tsx delete mode 100644 src/components/IconRoomService.tsx delete mode 100644 src/components/IconRotate90DegreesCcw.tsx delete mode 100644 src/components/IconRotateLeft.tsx delete mode 100644 src/components/IconRotateRight.tsx delete mode 100644 src/components/IconRoundedCorner.tsx delete mode 100644 src/components/IconRouter.tsx delete mode 100644 src/components/IconRowing.tsx delete mode 100644 src/components/IconRssFeed.tsx delete mode 100644 src/components/IconRule.tsx delete mode 100644 src/components/IconRuleFolder.tsx delete mode 100644 src/components/IconRunCircle.tsx delete mode 100644 src/components/IconRvHookup.tsx delete mode 100644 src/components/IconSanitizer.tsx delete mode 100644 src/components/IconSatellite.tsx delete mode 100644 src/components/IconSave.tsx delete mode 100644 src/components/IconSaveAlt.tsx delete mode 100644 src/components/IconScanner.tsx delete mode 100644 src/components/IconScatterPlot.tsx delete mode 100644 src/components/IconSchedule.tsx delete mode 100644 src/components/IconSchool.tsx delete mode 100644 src/components/IconScience.tsx delete mode 100644 src/components/IconScore.tsx delete mode 100644 src/components/IconScreenLockLandscape.tsx delete mode 100644 src/components/IconScreenLockPortrait.tsx delete mode 100644 src/components/IconScreenLockRotation.tsx delete mode 100644 src/components/IconScreenRotation.tsx delete mode 100644 src/components/IconScreenShare.tsx delete mode 100644 src/components/IconSdCard.tsx delete mode 100644 src/components/IconSdStorage.tsx delete mode 100644 src/components/IconSearch.tsx delete mode 100644 src/components/IconSearchOff.tsx delete mode 100644 src/components/IconSecurity.tsx delete mode 100644 src/components/IconSelectAll.tsx delete mode 100644 src/components/IconSelfImprovement.tsx delete mode 100644 src/components/IconSend.tsx delete mode 100644 src/components/IconSensorDoor.tsx delete mode 100644 src/components/IconSensorWindow.tsx delete mode 100644 src/components/IconSentimentDissatisfied.tsx delete mode 100644 src/components/IconSentimentSatisfied.tsx delete mode 100644 src/components/IconSentimentSatisfiedAlt.tsx delete mode 100644 src/components/IconSentimentVeryDissatisfied.tsx delete mode 100644 src/components/IconSentimentVerySatisfied.tsx delete mode 100644 src/components/IconSetMeal.tsx delete mode 100644 src/components/IconSettings.tsx delete mode 100644 src/components/IconSettingsApplications.tsx delete mode 100644 src/components/IconSettingsBackupRestore.tsx delete mode 100644 src/components/IconSettingsBluetooth.tsx delete mode 100644 src/components/IconSettingsBrightness.tsx delete mode 100644 src/components/IconSettingsCell.tsx delete mode 100644 src/components/IconSettingsEthernet.tsx delete mode 100644 src/components/IconSettingsInputAntenna.tsx delete mode 100644 src/components/IconSettingsInputComponent.tsx delete mode 100644 src/components/IconSettingsInputComposite.tsx delete mode 100644 src/components/IconSettingsInputHdmi.tsx delete mode 100644 src/components/IconSettingsInputSvideo.tsx delete mode 100644 src/components/IconSettingsOverscan.tsx delete mode 100644 src/components/IconSettingsPhone.tsx delete mode 100644 src/components/IconSettingsPower.tsx delete mode 100644 src/components/IconSettingsRemote.tsx delete mode 100644 src/components/IconSettingsSystemDaydream.tsx delete mode 100644 src/components/IconSettingsVoice.tsx delete mode 100644 src/components/IconShare.tsx delete mode 100644 src/components/IconShop.tsx delete mode 100644 src/components/IconShopTwo.tsx delete mode 100644 src/components/IconShoppingBag.tsx delete mode 100644 src/components/IconShoppingBasket.tsx delete mode 100644 src/components/IconShoppingCart.tsx delete mode 100644 src/components/IconShortText.tsx delete mode 100644 src/components/IconShowChart.tsx delete mode 100644 src/components/IconShuffle.tsx delete mode 100644 src/components/IconShutterSpeed.tsx delete mode 100644 src/components/IconSick.tsx delete mode 100644 src/components/IconSignalCellular4Bar.tsx delete mode 100644 src/components/IconSignalCellularAlt.tsx delete mode 100644 src/components/IconSignalCellularConnectedNoInternet4Bar.tsx delete mode 100644 src/components/IconSignalCellularNoSim.tsx delete mode 100644 src/components/IconSignalCellularNull.tsx delete mode 100644 src/components/IconSignalCellularOff.tsx delete mode 100644 src/components/IconSignalWifi4Bar.tsx delete mode 100644 src/components/IconSignalWifi4BarLock.tsx delete mode 100644 src/components/IconSignalWifiOff.tsx delete mode 100644 src/components/IconSimCard.tsx delete mode 100644 src/components/IconSingleBed.tsx delete mode 100644 src/components/IconSkipNext.tsx delete mode 100644 src/components/IconSkipPrevious.tsx delete mode 100644 src/components/IconSlideshow.tsx delete mode 100644 src/components/IconSlowMotionVideo.tsx delete mode 100644 src/components/IconSmartButton.tsx delete mode 100644 src/components/IconSmartphone.tsx delete mode 100644 src/components/IconSmokeFree.tsx delete mode 100644 src/components/IconSmokingRooms.tsx delete mode 100644 src/components/IconSms.tsx delete mode 100644 src/components/IconSmsFailed.tsx delete mode 100644 src/components/IconSnippetFolder.tsx delete mode 100644 src/components/IconSnooze.tsx delete mode 100644 src/components/IconSoap.tsx delete mode 100644 src/components/IconSort.tsx delete mode 100644 src/components/IconSortByAlpha.tsx delete mode 100644 src/components/IconSource.tsx delete mode 100644 src/components/IconSouth.tsx delete mode 100644 src/components/IconSouthEast.tsx delete mode 100644 src/components/IconSouthWest.tsx delete mode 100644 src/components/IconSpa.tsx delete mode 100644 src/components/IconSpaceBar.tsx delete mode 100644 src/components/IconSpeaker.tsx delete mode 100644 src/components/IconSpeakerGroup.tsx delete mode 100644 src/components/IconSpeakerNotes.tsx delete mode 100644 src/components/IconSpeakerNotesOff.tsx delete mode 100644 src/components/IconSpeakerPhone.tsx delete mode 100644 src/components/IconSpeed.tsx delete mode 100644 src/components/IconSpellcheck.tsx delete mode 100644 src/components/IconSports.tsx delete mode 100644 src/components/IconSportsBar.tsx delete mode 100644 src/components/IconSportsBaseball.tsx delete mode 100644 src/components/IconSportsBasketball.tsx delete mode 100644 src/components/IconSportsCricket.tsx delete mode 100644 src/components/IconSportsEsports.tsx delete mode 100644 src/components/IconSportsFootball.tsx delete mode 100644 src/components/IconSportsGolf.tsx delete mode 100644 src/components/IconSportsHandball.tsx delete mode 100644 src/components/IconSportsHockey.tsx delete mode 100644 src/components/IconSportsKabaddi.tsx delete mode 100644 src/components/IconSportsMma.tsx delete mode 100644 src/components/IconSportsMotorsports.tsx delete mode 100644 src/components/IconSportsRugby.tsx delete mode 100644 src/components/IconSportsSoccer.tsx delete mode 100644 src/components/IconSportsTennis.tsx delete mode 100644 src/components/IconSportsVolleyball.tsx delete mode 100644 src/components/IconSquareFoot.tsx delete mode 100644 src/components/IconStackedLineChart.tsx delete mode 100644 src/components/IconStairs.tsx delete mode 100644 src/components/IconStar.tsx delete mode 100644 src/components/IconStarBorder.tsx delete mode 100644 src/components/IconStarHalf.tsx delete mode 100644 src/components/IconStarOutline.tsx delete mode 100644 src/components/IconStarRate.tsx delete mode 100644 src/components/IconStars.tsx delete mode 100644 src/components/IconStayCurrentLandscape.tsx delete mode 100644 src/components/IconStayCurrentPortrait.tsx delete mode 100644 src/components/IconStayPrimaryLandscape.tsx delete mode 100644 src/components/IconStayPrimaryPortrait.tsx delete mode 100644 src/components/IconStickyNote2.tsx delete mode 100644 src/components/IconStop.tsx delete mode 100644 src/components/IconStopCircle.tsx delete mode 100644 src/components/IconStopScreenShare.tsx delete mode 100644 src/components/IconStorage.tsx delete mode 100644 src/components/IconStore.tsx delete mode 100644 src/components/IconStoreMallDirectory.tsx delete mode 100644 src/components/IconStorefront.tsx delete mode 100644 src/components/IconStraighten.tsx delete mode 100644 src/components/IconStreetview.tsx delete mode 100644 src/components/IconStrikethroughS.tsx delete mode 100644 src/components/IconStroller.tsx delete mode 100644 src/components/IconStyle.tsx delete mode 100644 src/components/IconSubdirectoryArrowLeft.tsx delete mode 100644 src/components/IconSubdirectoryArrowRight.tsx delete mode 100644 src/components/IconSubject.tsx delete mode 100644 src/components/IconSubscript.tsx delete mode 100644 src/components/IconSubscriptions.tsx delete mode 100644 src/components/IconSubtitles.tsx delete mode 100644 src/components/IconSubtitlesOff.tsx delete mode 100644 src/components/IconSubway.tsx delete mode 100644 src/components/IconSuperscript.tsx delete mode 100644 src/components/IconSupervisedUserCircle.tsx delete mode 100644 src/components/IconSupervisorAccount.tsx delete mode 100644 src/components/IconSupport.tsx delete mode 100644 src/components/IconSupportAgent.tsx delete mode 100644 src/components/IconSurroundSound.tsx delete mode 100644 src/components/IconSwapCalls.tsx delete mode 100644 src/components/IconSwapHoriz.tsx delete mode 100644 src/components/IconSwapHorizontalCircle.tsx delete mode 100644 src/components/IconSwapVert.tsx delete mode 100644 src/components/IconSwapVerticalCircle.tsx delete mode 100644 src/components/IconSwitchCamera.tsx delete mode 100644 src/components/IconSwitchLeft.tsx delete mode 100644 src/components/IconSwitchRight.tsx delete mode 100644 src/components/IconSwitchVideo.tsx delete mode 100644 src/components/IconSync.tsx delete mode 100644 src/components/IconSyncAlt.tsx delete mode 100644 src/components/IconSyncDisabled.tsx delete mode 100644 src/components/IconSyncProblem.tsx delete mode 100644 src/components/IconSystemUpdate.tsx delete mode 100644 src/components/IconSystemUpdateAlt.tsx delete mode 100644 src/components/IconTab.tsx delete mode 100644 src/components/IconTabUnselected.tsx delete mode 100644 src/components/IconTableChart.tsx delete mode 100644 src/components/IconTableRows.tsx delete mode 100644 src/components/IconTableView.tsx delete mode 100644 src/components/IconTablet.tsx delete mode 100644 src/components/IconTabletAndroid.tsx delete mode 100644 src/components/IconTabletMac.tsx delete mode 100644 src/components/IconTagFaces.tsx delete mode 100644 src/components/IconTapAndPlay.tsx delete mode 100644 src/components/IconTapas.tsx delete mode 100644 src/components/IconTerrain.tsx delete mode 100644 src/components/IconTextFields.tsx delete mode 100644 src/components/IconTextFormat.tsx delete mode 100644 src/components/IconTextRotateUp.tsx delete mode 100644 src/components/IconTextRotateVertical.tsx delete mode 100644 src/components/IconTextRotationAngledown.tsx delete mode 100644 src/components/IconTextRotationAngleup.tsx delete mode 100644 src/components/IconTextRotationDown.tsx delete mode 100644 src/components/IconTextRotationNone.tsx delete mode 100644 src/components/IconTextSnippet.tsx delete mode 100644 src/components/IconTextsms.tsx delete mode 100644 src/components/IconTexture.tsx delete mode 100644 src/components/IconTheaters.tsx delete mode 100644 src/components/IconThumbDown.tsx delete mode 100644 src/components/IconThumbDownAlt.tsx delete mode 100644 src/components/IconThumbUp.tsx delete mode 100644 src/components/IconThumbUpAlt.tsx delete mode 100644 src/components/IconThumbsUpDown.tsx delete mode 100644 src/components/IconTimeToLeave.tsx delete mode 100644 src/components/IconTimelapse.tsx delete mode 100644 src/components/IconTimeline.tsx delete mode 100644 src/components/IconTimer.tsx delete mode 100644 src/components/IconTimer10.tsx delete mode 100644 src/components/IconTimer3.tsx delete mode 100644 src/components/IconTimerOff.tsx delete mode 100644 src/components/IconTitle.tsx delete mode 100644 src/components/IconToc.tsx delete mode 100644 src/components/IconToday.tsx delete mode 100644 src/components/IconToggleOff.tsx delete mode 100644 src/components/IconToggleOn.tsx delete mode 100644 src/components/IconToll.tsx delete mode 100644 src/components/IconTonality.tsx delete mode 100644 src/components/IconTopic.tsx delete mode 100644 src/components/IconTouchApp.tsx delete mode 100644 src/components/IconTour.tsx delete mode 100644 src/components/IconToys.tsx delete mode 100644 src/components/IconTrackChanges.tsx delete mode 100644 src/components/IconTraffic.tsx delete mode 100644 src/components/IconTrain.tsx delete mode 100644 src/components/IconTram.tsx delete mode 100644 src/components/IconTransferWithinAStation.tsx delete mode 100644 src/components/IconTransform.tsx delete mode 100644 src/components/IconTransitEnterexit.tsx delete mode 100644 src/components/IconTranslate.tsx delete mode 100644 src/components/IconTrendingDown.tsx delete mode 100644 src/components/IconTrendingFlat.tsx delete mode 100644 src/components/IconTrendingUp.tsx delete mode 100644 src/components/IconTripOrigin.tsx delete mode 100644 src/components/IconTty.tsx delete mode 100644 src/components/IconTune.tsx delete mode 100644 src/components/IconTurnedIn.tsx delete mode 100644 src/components/IconTurnedInNot.tsx delete mode 100644 src/components/IconTv.tsx delete mode 100644 src/components/IconTvOff.tsx delete mode 100644 src/components/IconTwoWheeler.tsx delete mode 100644 src/components/IconUmbrella.tsx delete mode 100644 src/components/IconUnarchive.tsx delete mode 100644 src/components/IconUndo.tsx delete mode 100644 src/components/IconUnfoldLess.tsx delete mode 100644 src/components/IconUnfoldMore.tsx delete mode 100644 src/components/IconUnpublished.tsx delete mode 100644 src/components/IconUnsubscribe.tsx delete mode 100644 src/components/IconUpdate.tsx delete mode 100644 src/components/IconUpdateDisabled.tsx delete mode 100644 src/components/IconUpgrade.tsx delete mode 100644 src/components/IconUsb.tsx delete mode 100644 src/components/IconVerified.tsx delete mode 100644 src/components/IconVerifiedUser.tsx delete mode 100644 src/components/IconVerticalAlignBottom.tsx delete mode 100644 src/components/IconVerticalAlignCenter.tsx delete mode 100644 src/components/IconVerticalAlignTop.tsx delete mode 100644 src/components/IconVerticalDistribute.tsx delete mode 100644 src/components/IconVerticalSplit.tsx delete mode 100644 src/components/IconVibration.tsx delete mode 100644 src/components/IconVideoCall.tsx delete mode 100644 src/components/IconVideoLabel.tsx delete mode 100644 src/components/IconVideoLibrary.tsx delete mode 100644 src/components/IconVideoSettings.tsx delete mode 100644 src/components/IconVideocam.tsx delete mode 100644 src/components/IconVideocamOff.tsx delete mode 100644 src/components/IconVideogameAsset.tsx delete mode 100644 src/components/IconViewAgenda.tsx delete mode 100644 src/components/IconViewArray.tsx delete mode 100644 src/components/IconViewCarousel.tsx delete mode 100644 src/components/IconViewColumn.tsx delete mode 100644 src/components/IconViewComfy.tsx delete mode 100644 src/components/IconViewCompact.tsx delete mode 100644 src/components/IconViewDay.tsx delete mode 100644 src/components/IconViewHeadline.tsx delete mode 100644 src/components/IconViewList.tsx delete mode 100644 src/components/IconViewModule.tsx delete mode 100644 src/components/IconViewQuilt.tsx delete mode 100644 src/components/IconViewSidebar.tsx delete mode 100644 src/components/IconViewStream.tsx delete mode 100644 src/components/IconViewWeek.tsx delete mode 100644 src/components/IconVignette.tsx delete mode 100644 src/components/IconVisibility.tsx delete mode 100644 src/components/IconVisibilityOff.tsx delete mode 100644 src/components/IconVoiceChat.tsx delete mode 100644 src/components/IconVoiceOverOff.tsx delete mode 100644 src/components/IconVoicemail.tsx delete mode 100644 src/components/IconVolumeDown.tsx delete mode 100644 src/components/IconVolumeMute.tsx delete mode 100644 src/components/IconVolumeOff.tsx delete mode 100644 src/components/IconVolumeUp.tsx delete mode 100644 src/components/IconVpnKey.tsx delete mode 100644 src/components/IconVpnLock.tsx delete mode 100644 src/components/IconWallpaper.tsx delete mode 100644 src/components/IconWarning.tsx delete mode 100644 src/components/IconWash.tsx delete mode 100644 src/components/IconWatch.tsx delete mode 100644 src/components/IconWatchLater.tsx delete mode 100644 src/components/IconWaterDamage.tsx delete mode 100644 src/components/IconWaves.tsx delete mode 100644 src/components/IconWbAuto.tsx delete mode 100644 src/components/IconWbCloudy.tsx delete mode 100644 src/components/IconWbIncandescent.tsx delete mode 100644 src/components/IconWbIridescent.tsx delete mode 100644 src/components/IconWbSunny.tsx delete mode 100644 src/components/IconWc.tsx delete mode 100644 src/components/IconWeb.tsx delete mode 100644 src/components/IconWebAsset.tsx delete mode 100644 src/components/IconWeekend.tsx delete mode 100644 src/components/IconWest.tsx delete mode 100644 src/components/IconWhatshot.tsx delete mode 100644 src/components/IconWheelchairPickup.tsx delete mode 100644 src/components/IconWhereToVote.tsx delete mode 100644 src/components/IconWidgets.tsx delete mode 100644 src/components/IconWifi.tsx delete mode 100644 src/components/IconWifiCalling.tsx delete mode 100644 src/components/IconWifiLock.tsx delete mode 100644 src/components/IconWifiOff.tsx delete mode 100644 src/components/IconWifiProtectedSetup.tsx delete mode 100644 src/components/IconWifiTethering.tsx delete mode 100644 src/components/IconWineBar.tsx delete mode 100644 src/components/IconWork.tsx delete mode 100644 src/components/IconWorkOff.tsx delete mode 100644 src/components/IconWorkOutline.tsx delete mode 100644 src/components/IconWrapText.tsx delete mode 100644 src/components/IconWrongLocation.tsx delete mode 100644 src/components/IconWysiwyg.tsx delete mode 100644 src/components/IconYoutubeSearchedFor.tsx delete mode 100644 src/components/IconZoomIn.tsx delete mode 100644 src/components/IconZoomOut.tsx delete mode 100644 src/components/IconZoomOutMap.tsx diff --git a/src/components/Icon360.tsx b/src/components/Icon360.tsx deleted file mode 100644 index d42b76858..000000000 --- a/src/components/Icon360.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const Icon360: React.FC = (props) => ( - - - - -) - -export { Icon360 } diff --git a/src/components/Icon3dRotation.tsx b/src/components/Icon3dRotation.tsx deleted file mode 100644 index bff31bfaa..000000000 --- a/src/components/Icon3dRotation.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const Icon3dRotation: React.FC = (props) => ( - - - - -) - -export { Icon3dRotation } diff --git a/src/components/Icon4k.tsx b/src/components/Icon4k.tsx deleted file mode 100644 index 510ebe981..000000000 --- a/src/components/Icon4k.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const Icon4k: React.FC = (props) => ( - - - - -) - -export { Icon4k } diff --git a/src/components/Icon5g.tsx b/src/components/Icon5g.tsx deleted file mode 100644 index 3e82f2913..000000000 --- a/src/components/Icon5g.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const Icon5g: React.FC = (props) => ( - - - - - - - - - - - -) - -export { Icon5g } diff --git a/src/components/Icon6FtApart.tsx b/src/components/Icon6FtApart.tsx deleted file mode 100644 index 23c631811..000000000 --- a/src/components/Icon6FtApart.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const Icon6FtApart: React.FC = (props) => ( - - - - -) - -export { Icon6FtApart } diff --git a/src/components/IconAcUnit.tsx b/src/components/IconAcUnit.tsx deleted file mode 100644 index 46bec0527..000000000 --- a/src/components/IconAcUnit.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAcUnit: React.FC = (props) => ( - - - - -) - -export { IconAcUnit } diff --git a/src/components/IconAccessAlarm.tsx b/src/components/IconAccessAlarm.tsx deleted file mode 100644 index f05f0c62d..000000000 --- a/src/components/IconAccessAlarm.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAccessAlarm: React.FC = (props) => ( - - - - -) - -export { IconAccessAlarm } diff --git a/src/components/IconAccessAlarms.tsx b/src/components/IconAccessAlarms.tsx deleted file mode 100644 index ecc43f852..000000000 --- a/src/components/IconAccessAlarms.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAccessAlarms: React.FC = (props) => ( - - - - -) - -export { IconAccessAlarms } diff --git a/src/components/IconAccessTime.tsx b/src/components/IconAccessTime.tsx deleted file mode 100644 index fd89b2dd8..000000000 --- a/src/components/IconAccessTime.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAccessTime: React.FC = (props) => ( - - - - - -) - -export { IconAccessTime } diff --git a/src/components/IconAccessibility.tsx b/src/components/IconAccessibility.tsx deleted file mode 100644 index 847a1a5ff..000000000 --- a/src/components/IconAccessibility.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAccessibility: React.FC = (props) => ( - - - - -) - -export { IconAccessibility } diff --git a/src/components/IconAccessibilityNew.tsx b/src/components/IconAccessibilityNew.tsx deleted file mode 100644 index 22400dbee..000000000 --- a/src/components/IconAccessibilityNew.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAccessibilityNew: React.FC = (props) => ( - - - - -) - -export { IconAccessibilityNew } diff --git a/src/components/IconAccessible.tsx b/src/components/IconAccessible.tsx deleted file mode 100644 index b403098a1..000000000 --- a/src/components/IconAccessible.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAccessible: React.FC = (props) => ( - - - - - -) - -export { IconAccessible } diff --git a/src/components/IconAccessibleForward.tsx b/src/components/IconAccessibleForward.tsx deleted file mode 100644 index 3cc707012..000000000 --- a/src/components/IconAccessibleForward.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAccessibleForward: React.FC = (props) => ( - - - - - -) - -export { IconAccessibleForward } diff --git a/src/components/IconAccountBalance.tsx b/src/components/IconAccountBalance.tsx deleted file mode 100644 index 233d4ceca..000000000 --- a/src/components/IconAccountBalance.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAccountBalance: React.FC = (props) => ( - - - - - - - - - - - - - - -) - -export { IconAccountBalance } diff --git a/src/components/IconAccountBalanceWallet.tsx b/src/components/IconAccountBalanceWallet.tsx deleted file mode 100644 index 06245dd2f..000000000 --- a/src/components/IconAccountBalanceWallet.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAccountBalanceWallet: React.FC = (props) => ( - - - - -) - -export { IconAccountBalanceWallet } diff --git a/src/components/IconAccountBox.tsx b/src/components/IconAccountBox.tsx deleted file mode 100644 index 11b2022ac..000000000 --- a/src/components/IconAccountBox.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAccountBox: React.FC = (props) => ( - - - - -) - -export { IconAccountBox } diff --git a/src/components/IconAccountCircle.tsx b/src/components/IconAccountCircle.tsx deleted file mode 100644 index 33e370756..000000000 --- a/src/components/IconAccountCircle.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAccountCircle: React.FC = (props) => ( - - - - -) - -export { IconAccountCircle } diff --git a/src/components/IconAccountTree.tsx b/src/components/IconAccountTree.tsx deleted file mode 100644 index 97b2f173a..000000000 --- a/src/components/IconAccountTree.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAccountTree: React.FC = (props) => ( - - - - -) - -export { IconAccountTree } diff --git a/src/components/IconAdUnits.tsx b/src/components/IconAdUnits.tsx deleted file mode 100644 index d21f0fce0..000000000 --- a/src/components/IconAdUnits.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAdUnits: React.FC = (props) => ( - - - - -) - -export { IconAdUnits } diff --git a/src/components/IconAdb.tsx b/src/components/IconAdb.tsx deleted file mode 100644 index 146e4842f..000000000 --- a/src/components/IconAdb.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAdb: React.FC = (props) => ( - - - - -) - -export { IconAdb } diff --git a/src/components/IconAdd.tsx b/src/components/IconAdd.tsx deleted file mode 100644 index 18dbd9d81..000000000 --- a/src/components/IconAdd.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAdd: React.FC = (props) => ( - - - - -) - -export { IconAdd } diff --git a/src/components/IconAddAPhoto.tsx b/src/components/IconAddAPhoto.tsx deleted file mode 100644 index de7730964..000000000 --- a/src/components/IconAddAPhoto.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddAPhoto: React.FC = (props) => ( - - - - -) - -export { IconAddAPhoto } diff --git a/src/components/IconAddAlarm.tsx b/src/components/IconAddAlarm.tsx deleted file mode 100644 index 2dc24f01a..000000000 --- a/src/components/IconAddAlarm.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddAlarm: React.FC = (props) => ( - - - - -) - -export { IconAddAlarm } diff --git a/src/components/IconAddAlert.tsx b/src/components/IconAddAlert.tsx deleted file mode 100644 index 6aa276e57..000000000 --- a/src/components/IconAddAlert.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddAlert: React.FC = (props) => ( - - - - -) - -export { IconAddAlert } diff --git a/src/components/IconAddBox.tsx b/src/components/IconAddBox.tsx deleted file mode 100644 index 7a5397b12..000000000 --- a/src/components/IconAddBox.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddBox: React.FC = (props) => ( - - - - -) - -export { IconAddBox } diff --git a/src/components/IconAddBusiness.tsx b/src/components/IconAddBusiness.tsx deleted file mode 100644 index 2e12fef9b..000000000 --- a/src/components/IconAddBusiness.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddBusiness: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconAddBusiness } diff --git a/src/components/IconAddCircle.tsx b/src/components/IconAddCircle.tsx deleted file mode 100644 index 4ec6dde0a..000000000 --- a/src/components/IconAddCircle.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddCircle: React.FC = (props) => ( - - - - -) - -export { IconAddCircle } diff --git a/src/components/IconAddCircleOutline.tsx b/src/components/IconAddCircleOutline.tsx deleted file mode 100644 index e337cfd6b..000000000 --- a/src/components/IconAddCircleOutline.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddCircleOutline: React.FC = (props) => ( - - - - -) - -export { IconAddCircleOutline } diff --git a/src/components/IconAddComment.tsx b/src/components/IconAddComment.tsx deleted file mode 100644 index 264fda583..000000000 --- a/src/components/IconAddComment.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddComment: React.FC = (props) => ( - - - - -) - -export { IconAddComment } diff --git a/src/components/IconAddIcCall.tsx b/src/components/IconAddIcCall.tsx deleted file mode 100644 index cf3570d6b..000000000 --- a/src/components/IconAddIcCall.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddIcCall: React.FC = (props) => ( - - - - -) - -export { IconAddIcCall } diff --git a/src/components/IconAddLocation.tsx b/src/components/IconAddLocation.tsx deleted file mode 100644 index 89ea4ca34..000000000 --- a/src/components/IconAddLocation.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddLocation: React.FC = (props) => ( - - - - -) - -export { IconAddLocation } diff --git a/src/components/IconAddLocationAlt.tsx b/src/components/IconAddLocationAlt.tsx deleted file mode 100644 index 0afafe425..000000000 --- a/src/components/IconAddLocationAlt.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddLocationAlt: React.FC = (props) => ( - - - - -) - -export { IconAddLocationAlt } diff --git a/src/components/IconAddPhotoAlternate.tsx b/src/components/IconAddPhotoAlternate.tsx deleted file mode 100644 index 798832586..000000000 --- a/src/components/IconAddPhotoAlternate.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddPhotoAlternate: React.FC = (props) => ( - - - - -) - -export { IconAddPhotoAlternate } diff --git a/src/components/IconAddRoad.tsx b/src/components/IconAddRoad.tsx deleted file mode 100644 index c649c4ed4..000000000 --- a/src/components/IconAddRoad.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddRoad: React.FC = (props) => ( - - - - - - - - - - - - - - - -) - -export { IconAddRoad } diff --git a/src/components/IconAddShoppingCart.tsx b/src/components/IconAddShoppingCart.tsx deleted file mode 100644 index df761f3d2..000000000 --- a/src/components/IconAddShoppingCart.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddShoppingCart: React.FC = (props) => ( - - - - -) - -export { IconAddShoppingCart } diff --git a/src/components/IconAddTask.tsx b/src/components/IconAddTask.tsx deleted file mode 100644 index fcea7b7d5..000000000 --- a/src/components/IconAddTask.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddTask: React.FC = (props) => ( - - - - -) - -export { IconAddTask } diff --git a/src/components/IconAddToHomeScreen.tsx b/src/components/IconAddToHomeScreen.tsx deleted file mode 100644 index de8e0fa92..000000000 --- a/src/components/IconAddToHomeScreen.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddToHomeScreen: React.FC = (props) => ( - - - - - -) - -export { IconAddToHomeScreen } diff --git a/src/components/IconAddToPhotos.tsx b/src/components/IconAddToPhotos.tsx deleted file mode 100644 index 017d5b315..000000000 --- a/src/components/IconAddToPhotos.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddToPhotos: React.FC = (props) => ( - - - - -) - -export { IconAddToPhotos } diff --git a/src/components/IconAddToQueue.tsx b/src/components/IconAddToQueue.tsx deleted file mode 100644 index df1256e61..000000000 --- a/src/components/IconAddToQueue.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddToQueue: React.FC = (props) => ( - - - - -) - -export { IconAddToQueue } diff --git a/src/components/IconAddchart.tsx b/src/components/IconAddchart.tsx deleted file mode 100644 index 9c92ec693..000000000 --- a/src/components/IconAddchart.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAddchart: React.FC = (props) => ( - - - - -) - -export { IconAddchart } diff --git a/src/components/IconAdjust.tsx b/src/components/IconAdjust.tsx deleted file mode 100644 index 4f7dea24d..000000000 --- a/src/components/IconAdjust.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAdjust: React.FC = (props) => ( - - - - -) - -export { IconAdjust } diff --git a/src/components/IconAdminPanelSettings.tsx b/src/components/IconAdminPanelSettings.tsx deleted file mode 100644 index d99f9a25c..000000000 --- a/src/components/IconAdminPanelSettings.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAdminPanelSettings: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconAdminPanelSettings } diff --git a/src/components/IconAgriculture.tsx b/src/components/IconAgriculture.tsx deleted file mode 100644 index 247a3ce67..000000000 --- a/src/components/IconAgriculture.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAgriculture: React.FC = (props) => ( - - - - - - - - - - - - - -) - -export { IconAgriculture } diff --git a/src/components/IconAirlineSeatFlat.tsx b/src/components/IconAirlineSeatFlat.tsx deleted file mode 100644 index 24c0949da..000000000 --- a/src/components/IconAirlineSeatFlat.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAirlineSeatFlat: React.FC = (props) => ( - - - - -) - -export { IconAirlineSeatFlat } diff --git a/src/components/IconAirlineSeatFlatAngled.tsx b/src/components/IconAirlineSeatFlatAngled.tsx deleted file mode 100644 index f6b3d8aab..000000000 --- a/src/components/IconAirlineSeatFlatAngled.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAirlineSeatFlatAngled: React.FC = (props) => ( - - - - -) - -export { IconAirlineSeatFlatAngled } diff --git a/src/components/IconAirlineSeatIndividualSuite.tsx b/src/components/IconAirlineSeatIndividualSuite.tsx deleted file mode 100644 index b74e5e9d3..000000000 --- a/src/components/IconAirlineSeatIndividualSuite.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAirlineSeatIndividualSuite: React.FC = (props) => ( - - - - -) - -export { IconAirlineSeatIndividualSuite } diff --git a/src/components/IconAirlineSeatLegroomExtra.tsx b/src/components/IconAirlineSeatLegroomExtra.tsx deleted file mode 100644 index 5f19497d3..000000000 --- a/src/components/IconAirlineSeatLegroomExtra.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAirlineSeatLegroomExtra: React.FC = (props) => ( - - - - -) - -export { IconAirlineSeatLegroomExtra } diff --git a/src/components/IconAirlineSeatLegroomNormal.tsx b/src/components/IconAirlineSeatLegroomNormal.tsx deleted file mode 100644 index dec5d4cc3..000000000 --- a/src/components/IconAirlineSeatLegroomNormal.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAirlineSeatLegroomNormal: React.FC = (props) => ( - - - - -) - -export { IconAirlineSeatLegroomNormal } diff --git a/src/components/IconAirlineSeatLegroomReduced.tsx b/src/components/IconAirlineSeatLegroomReduced.tsx deleted file mode 100644 index 15ea1ee18..000000000 --- a/src/components/IconAirlineSeatLegroomReduced.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAirlineSeatLegroomReduced: React.FC = (props) => ( - - - - -) - -export { IconAirlineSeatLegroomReduced } diff --git a/src/components/IconAirlineSeatReclineExtra.tsx b/src/components/IconAirlineSeatReclineExtra.tsx deleted file mode 100644 index 08049a4dd..000000000 --- a/src/components/IconAirlineSeatReclineExtra.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAirlineSeatReclineExtra: React.FC = (props) => ( - - - - -) - -export { IconAirlineSeatReclineExtra } diff --git a/src/components/IconAirlineSeatReclineNormal.tsx b/src/components/IconAirlineSeatReclineNormal.tsx deleted file mode 100644 index 2495c01eb..000000000 --- a/src/components/IconAirlineSeatReclineNormal.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAirlineSeatReclineNormal: React.FC = (props) => ( - - - - -) - -export { IconAirlineSeatReclineNormal } diff --git a/src/components/IconAirplanemodeActive.tsx b/src/components/IconAirplanemodeActive.tsx deleted file mode 100644 index 469e8c8b1..000000000 --- a/src/components/IconAirplanemodeActive.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAirplanemodeActive: React.FC = (props) => ( - - - - - - -) - -export { IconAirplanemodeActive } diff --git a/src/components/IconAirplanemodeInactive.tsx b/src/components/IconAirplanemodeInactive.tsx deleted file mode 100644 index 6e40fdea4..000000000 --- a/src/components/IconAirplanemodeInactive.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAirplanemodeInactive: React.FC = (props) => ( - - - - - - -) - -export { IconAirplanemodeInactive } diff --git a/src/components/IconAirplay.tsx b/src/components/IconAirplay.tsx deleted file mode 100644 index 1d6e4a06c..000000000 --- a/src/components/IconAirplay.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAirplay: React.FC = (props) => ( - - - - - - - -) - -export { IconAirplay } diff --git a/src/components/IconAirportShuttle.tsx b/src/components/IconAirportShuttle.tsx deleted file mode 100644 index 1f9e7707f..000000000 --- a/src/components/IconAirportShuttle.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAirportShuttle: React.FC = (props) => ( - - - - -) - -export { IconAirportShuttle } diff --git a/src/components/IconAlarm.tsx b/src/components/IconAlarm.tsx deleted file mode 100644 index 414d98525..000000000 --- a/src/components/IconAlarm.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAlarm: React.FC = (props) => ( - - - - -) - -export { IconAlarm } diff --git a/src/components/IconAlarmAdd.tsx b/src/components/IconAlarmAdd.tsx deleted file mode 100644 index bc15265e3..000000000 --- a/src/components/IconAlarmAdd.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAlarmAdd: React.FC = (props) => ( - - - - -) - -export { IconAlarmAdd } diff --git a/src/components/IconAlarmOff.tsx b/src/components/IconAlarmOff.tsx deleted file mode 100644 index 20375a02b..000000000 --- a/src/components/IconAlarmOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAlarmOff: React.FC = (props) => ( - - - - -) - -export { IconAlarmOff } diff --git a/src/components/IconAlarmOn.tsx b/src/components/IconAlarmOn.tsx deleted file mode 100644 index 269f3dfd3..000000000 --- a/src/components/IconAlarmOn.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAlarmOn: React.FC = (props) => ( - - - - -) - -export { IconAlarmOn } diff --git a/src/components/IconAlbum.tsx b/src/components/IconAlbum.tsx deleted file mode 100644 index bdf9c6b28..000000000 --- a/src/components/IconAlbum.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAlbum: React.FC = (props) => ( - - - - -) - -export { IconAlbum } diff --git a/src/components/IconAlignHorizontalCenter.tsx b/src/components/IconAlignHorizontalCenter.tsx deleted file mode 100644 index 9280a73e6..000000000 --- a/src/components/IconAlignHorizontalCenter.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAlignHorizontalCenter: React.FC = (props) => ( - - - - -) - -export { IconAlignHorizontalCenter } diff --git a/src/components/IconAlignHorizontalLeft.tsx b/src/components/IconAlignHorizontalLeft.tsx deleted file mode 100644 index a74fd95a5..000000000 --- a/src/components/IconAlignHorizontalLeft.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAlignHorizontalLeft: React.FC = (props) => ( - - - - -) - -export { IconAlignHorizontalLeft } diff --git a/src/components/IconAlignHorizontalRight.tsx b/src/components/IconAlignHorizontalRight.tsx deleted file mode 100644 index ba888c5ab..000000000 --- a/src/components/IconAlignHorizontalRight.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAlignHorizontalRight: React.FC = (props) => ( - - - - -) - -export { IconAlignHorizontalRight } diff --git a/src/components/IconAlignVerticalBottom.tsx b/src/components/IconAlignVerticalBottom.tsx deleted file mode 100644 index b1ceea28f..000000000 --- a/src/components/IconAlignVerticalBottom.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAlignVerticalBottom: React.FC = (props) => ( - - - - -) - -export { IconAlignVerticalBottom } diff --git a/src/components/IconAlignVerticalCenter.tsx b/src/components/IconAlignVerticalCenter.tsx deleted file mode 100644 index c0394ae89..000000000 --- a/src/components/IconAlignVerticalCenter.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAlignVerticalCenter: React.FC = (props) => ( - - - - -) - -export { IconAlignVerticalCenter } diff --git a/src/components/IconAlignVerticalTop.tsx b/src/components/IconAlignVerticalTop.tsx deleted file mode 100644 index 3f2eb94df..000000000 --- a/src/components/IconAlignVerticalTop.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAlignVerticalTop: React.FC = (props) => ( - - - - -) - -export { IconAlignVerticalTop } diff --git a/src/components/IconAllInbox.tsx b/src/components/IconAllInbox.tsx deleted file mode 100644 index 8ac86f212..000000000 --- a/src/components/IconAllInbox.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAllInbox: React.FC = (props) => ( - - - - -) - -export { IconAllInbox } diff --git a/src/components/IconAllInclusive.tsx b/src/components/IconAllInclusive.tsx deleted file mode 100644 index e97187ac9..000000000 --- a/src/components/IconAllInclusive.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAllInclusive: React.FC = (props) => ( - - - - -) - -export { IconAllInclusive } diff --git a/src/components/IconAllOut.tsx b/src/components/IconAllOut.tsx deleted file mode 100644 index 7133fa665..000000000 --- a/src/components/IconAllOut.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAllOut: React.FC = (props) => ( - - - - -) - -export { IconAllOut } diff --git a/src/components/IconAltRoute.tsx b/src/components/IconAltRoute.tsx deleted file mode 100644 index f0ba279c0..000000000 --- a/src/components/IconAltRoute.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAltRoute: React.FC = (props) => ( - - - - - - -) - -export { IconAltRoute } diff --git a/src/components/IconAlternateEmail.tsx b/src/components/IconAlternateEmail.tsx deleted file mode 100644 index 7cefa64bb..000000000 --- a/src/components/IconAlternateEmail.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAlternateEmail: React.FC = (props) => ( - - - - -) - -export { IconAlternateEmail } diff --git a/src/components/IconAmpStories.tsx b/src/components/IconAmpStories.tsx deleted file mode 100644 index df593bb13..000000000 --- a/src/components/IconAmpStories.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAmpStories: React.FC = (props) => ( - - - - - - - - - - - - - -) - -export { IconAmpStories } diff --git a/src/components/IconAnalytics.tsx b/src/components/IconAnalytics.tsx deleted file mode 100644 index 1def19677..000000000 --- a/src/components/IconAnalytics.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAnalytics: React.FC = (props) => ( - - - - -) - -export { IconAnalytics } diff --git a/src/components/IconAnchor.tsx b/src/components/IconAnchor.tsx deleted file mode 100644 index 13221008e..000000000 --- a/src/components/IconAnchor.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAnchor: React.FC = (props) => ( - - - - - - -) - -export { IconAnchor } diff --git a/src/components/IconAndroid.tsx b/src/components/IconAndroid.tsx deleted file mode 100644 index 2adc43855..000000000 --- a/src/components/IconAndroid.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAndroid: React.FC = (props) => ( - - - - - - -) - -export { IconAndroid } diff --git a/src/components/IconAnnouncement.tsx b/src/components/IconAnnouncement.tsx deleted file mode 100644 index f934cebe7..000000000 --- a/src/components/IconAnnouncement.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAnnouncement: React.FC = (props) => ( - - - - -) - -export { IconAnnouncement } diff --git a/src/components/IconApartment.tsx b/src/components/IconApartment.tsx deleted file mode 100644 index 6a5c3902c..000000000 --- a/src/components/IconApartment.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconApartment: React.FC = (props) => ( - - - - - - - - -) - -export { IconApartment } diff --git a/src/components/IconApi.tsx b/src/components/IconApi.tsx deleted file mode 100644 index 7476d40d6..000000000 --- a/src/components/IconApi.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconApi: React.FC = (props) => ( - - - - - - -) - -export { IconApi } diff --git a/src/components/IconAppBlocking.tsx b/src/components/IconAppBlocking.tsx deleted file mode 100644 index b96fb01d6..000000000 --- a/src/components/IconAppBlocking.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAppBlocking: React.FC = (props) => ( - - - - -) - -export { IconAppBlocking } diff --git a/src/components/IconAppSettingsAlt.tsx b/src/components/IconAppSettingsAlt.tsx deleted file mode 100644 index a49788e82..000000000 --- a/src/components/IconAppSettingsAlt.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAppSettingsAlt: React.FC = (props) => ( - - - - -) - -export { IconAppSettingsAlt } diff --git a/src/components/IconApps.tsx b/src/components/IconApps.tsx deleted file mode 100644 index 32d7db169..000000000 --- a/src/components/IconApps.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconApps: React.FC = (props) => ( - - - - -) - -export { IconApps } diff --git a/src/components/IconArchitecture.tsx b/src/components/IconArchitecture.tsx deleted file mode 100644 index 27554ffb1..000000000 --- a/src/components/IconArchitecture.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArchitecture: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconArchitecture } diff --git a/src/components/IconArchive.tsx b/src/components/IconArchive.tsx deleted file mode 100644 index 09348dbe4..000000000 --- a/src/components/IconArchive.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArchive: React.FC = (props) => ( - - - - -) - -export { IconArchive } diff --git a/src/components/IconArrowBack.tsx b/src/components/IconArrowBack.tsx deleted file mode 100644 index 2bc98a172..000000000 --- a/src/components/IconArrowBack.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArrowBack: React.FC = (props) => ( - - - - -) - -export { IconArrowBack } diff --git a/src/components/IconArrowBackIos.tsx b/src/components/IconArrowBackIos.tsx deleted file mode 100644 index 84db672d0..000000000 --- a/src/components/IconArrowBackIos.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArrowBackIos: React.FC = (props) => ( - - - - -) - -export { IconArrowBackIos } diff --git a/src/components/IconArrowCircleDown.tsx b/src/components/IconArrowCircleDown.tsx deleted file mode 100644 index bafb95459..000000000 --- a/src/components/IconArrowCircleDown.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArrowCircleDown: React.FC = (props) => ( - - - - - - -) - -export { IconArrowCircleDown } diff --git a/src/components/IconArrowCircleUp.tsx b/src/components/IconArrowCircleUp.tsx deleted file mode 100644 index 096853bb9..000000000 --- a/src/components/IconArrowCircleUp.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArrowCircleUp: React.FC = (props) => ( - - - - - - -) - -export { IconArrowCircleUp } diff --git a/src/components/IconArrowDownward.tsx b/src/components/IconArrowDownward.tsx deleted file mode 100644 index 5ec4b3b71..000000000 --- a/src/components/IconArrowDownward.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArrowDownward: React.FC = (props) => ( - - - - -) - -export { IconArrowDownward } diff --git a/src/components/IconArrowDropDown.tsx b/src/components/IconArrowDropDown.tsx deleted file mode 100644 index daf185b1d..000000000 --- a/src/components/IconArrowDropDown.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArrowDropDown: React.FC = (props) => ( - - - - -) - -export { IconArrowDropDown } diff --git a/src/components/IconArrowDropDownCircle.tsx b/src/components/IconArrowDropDownCircle.tsx deleted file mode 100644 index 99cc6b7ec..000000000 --- a/src/components/IconArrowDropDownCircle.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArrowDropDownCircle: React.FC = (props) => ( - - - - -) - -export { IconArrowDropDownCircle } diff --git a/src/components/IconArrowDropUp.tsx b/src/components/IconArrowDropUp.tsx deleted file mode 100644 index efcd7670d..000000000 --- a/src/components/IconArrowDropUp.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArrowDropUp: React.FC = (props) => ( - - - - -) - -export { IconArrowDropUp } diff --git a/src/components/IconArrowForward.tsx b/src/components/IconArrowForward.tsx deleted file mode 100644 index f3b92265f..000000000 --- a/src/components/IconArrowForward.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArrowForward: React.FC = (props) => ( - - - - -) - -export { IconArrowForward } diff --git a/src/components/IconArrowForwardIos.tsx b/src/components/IconArrowForwardIos.tsx deleted file mode 100644 index fb9a869d5..000000000 --- a/src/components/IconArrowForwardIos.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArrowForwardIos: React.FC = (props) => ( - - - - -) - -export { IconArrowForwardIos } diff --git a/src/components/IconArrowLeft.tsx b/src/components/IconArrowLeft.tsx deleted file mode 100644 index 876f85668..000000000 --- a/src/components/IconArrowLeft.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArrowLeft: React.FC = (props) => ( - - - - -) - -export { IconArrowLeft } diff --git a/src/components/IconArrowRight.tsx b/src/components/IconArrowRight.tsx deleted file mode 100644 index ec4733a4e..000000000 --- a/src/components/IconArrowRight.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArrowRight: React.FC = (props) => ( - - - - -) - -export { IconArrowRight } diff --git a/src/components/IconArrowRightAlt.tsx b/src/components/IconArrowRightAlt.tsx deleted file mode 100644 index 8d2baf6d2..000000000 --- a/src/components/IconArrowRightAlt.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArrowRightAlt: React.FC = (props) => ( - - - - -) - -export { IconArrowRightAlt } diff --git a/src/components/IconArrowUpward.tsx b/src/components/IconArrowUpward.tsx deleted file mode 100644 index 15254fb74..000000000 --- a/src/components/IconArrowUpward.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArrowUpward: React.FC = (props) => ( - - - - -) - -export { IconArrowUpward } diff --git a/src/components/IconArtTrack.tsx b/src/components/IconArtTrack.tsx deleted file mode 100644 index 2cc5e2281..000000000 --- a/src/components/IconArtTrack.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArtTrack: React.FC = (props) => ( - - - - -) - -export { IconArtTrack } diff --git a/src/components/IconArticle.tsx b/src/components/IconArticle.tsx deleted file mode 100644 index 8d15a3646..000000000 --- a/src/components/IconArticle.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconArticle: React.FC = (props) => ( - - - - -) - -export { IconArticle } diff --git a/src/components/IconAspectRatio.tsx b/src/components/IconAspectRatio.tsx deleted file mode 100644 index 66760989e..000000000 --- a/src/components/IconAspectRatio.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAspectRatio: React.FC = (props) => ( - - - - -) - -export { IconAspectRatio } diff --git a/src/components/IconAssessment.tsx b/src/components/IconAssessment.tsx deleted file mode 100644 index 294050b53..000000000 --- a/src/components/IconAssessment.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAssessment: React.FC = (props) => ( - - - - -) - -export { IconAssessment } diff --git a/src/components/IconAssignment.tsx b/src/components/IconAssignment.tsx deleted file mode 100644 index 03a28fafa..000000000 --- a/src/components/IconAssignment.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAssignment: React.FC = (props) => ( - - - - -) - -export { IconAssignment } diff --git a/src/components/IconAssignmentInd.tsx b/src/components/IconAssignmentInd.tsx deleted file mode 100644 index b78feb9d0..000000000 --- a/src/components/IconAssignmentInd.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAssignmentInd: React.FC = (props) => ( - - - - -) - -export { IconAssignmentInd } diff --git a/src/components/IconAssignmentLate.tsx b/src/components/IconAssignmentLate.tsx deleted file mode 100644 index 3aeb76d39..000000000 --- a/src/components/IconAssignmentLate.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAssignmentLate: React.FC = (props) => ( - - - - -) - -export { IconAssignmentLate } diff --git a/src/components/IconAssignmentReturn.tsx b/src/components/IconAssignmentReturn.tsx deleted file mode 100644 index 407101c94..000000000 --- a/src/components/IconAssignmentReturn.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAssignmentReturn: React.FC = (props) => ( - - - - -) - -export { IconAssignmentReturn } diff --git a/src/components/IconAssignmentReturned.tsx b/src/components/IconAssignmentReturned.tsx deleted file mode 100644 index 533de8770..000000000 --- a/src/components/IconAssignmentReturned.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAssignmentReturned: React.FC = (props) => ( - - - - -) - -export { IconAssignmentReturned } diff --git a/src/components/IconAssignmentTurnedIn.tsx b/src/components/IconAssignmentTurnedIn.tsx deleted file mode 100644 index 3b94ea721..000000000 --- a/src/components/IconAssignmentTurnedIn.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAssignmentTurnedIn: React.FC = (props) => ( - - - - -) - -export { IconAssignmentTurnedIn } diff --git a/src/components/IconAssistant.tsx b/src/components/IconAssistant.tsx deleted file mode 100644 index a29d64599..000000000 --- a/src/components/IconAssistant.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAssistant: React.FC = (props) => ( - - - - -) - -export { IconAssistant } diff --git a/src/components/IconAssistantPhoto.tsx b/src/components/IconAssistantPhoto.tsx deleted file mode 100644 index ffedc008a..000000000 --- a/src/components/IconAssistantPhoto.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAssistantPhoto: React.FC = (props) => ( - - - - -) - -export { IconAssistantPhoto } diff --git a/src/components/IconAtm.tsx b/src/components/IconAtm.tsx deleted file mode 100644 index 6f2a0a666..000000000 --- a/src/components/IconAtm.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAtm: React.FC = (props) => ( - - - - -) - -export { IconAtm } diff --git a/src/components/IconAttachEmail.tsx b/src/components/IconAttachEmail.tsx deleted file mode 100644 index 4014322f5..000000000 --- a/src/components/IconAttachEmail.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAttachEmail: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconAttachEmail } diff --git a/src/components/IconAttachFile.tsx b/src/components/IconAttachFile.tsx deleted file mode 100644 index 61816bee0..000000000 --- a/src/components/IconAttachFile.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAttachFile: React.FC = (props) => ( - - - - -) - -export { IconAttachFile } diff --git a/src/components/IconAttachMoney.tsx b/src/components/IconAttachMoney.tsx deleted file mode 100644 index 950dc0372..000000000 --- a/src/components/IconAttachMoney.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAttachMoney: React.FC = (props) => ( - - - - -) - -export { IconAttachMoney } diff --git a/src/components/IconAttachment.tsx b/src/components/IconAttachment.tsx deleted file mode 100644 index 3fa8c84de..000000000 --- a/src/components/IconAttachment.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAttachment: React.FC = (props) => ( - - - - -) - -export { IconAttachment } diff --git a/src/components/IconAudiotrack.tsx b/src/components/IconAudiotrack.tsx deleted file mode 100644 index a9338acaf..000000000 --- a/src/components/IconAudiotrack.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAudiotrack: React.FC = (props) => ( - - - - -) - -export { IconAudiotrack } diff --git a/src/components/IconAutoDelete.tsx b/src/components/IconAutoDelete.tsx deleted file mode 100644 index 4dd79a8c9..000000000 --- a/src/components/IconAutoDelete.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAutoDelete: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconAutoDelete } diff --git a/src/components/IconAutorenew.tsx b/src/components/IconAutorenew.tsx deleted file mode 100644 index 54b4c82c0..000000000 --- a/src/components/IconAutorenew.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAutorenew: React.FC = (props) => ( - - - - -) - -export { IconAutorenew } diff --git a/src/components/IconAvTimer.tsx b/src/components/IconAvTimer.tsx deleted file mode 100644 index b0c1069a7..000000000 --- a/src/components/IconAvTimer.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconAvTimer: React.FC = (props) => ( - - - - -) - -export { IconAvTimer } diff --git a/src/components/IconBabyChangingStation.tsx b/src/components/IconBabyChangingStation.tsx deleted file mode 100644 index 1e5014937..000000000 --- a/src/components/IconBabyChangingStation.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBabyChangingStation: React.FC = (props) => ( - - - - - - -) - -export { IconBabyChangingStation } diff --git a/src/components/IconBackpack.tsx b/src/components/IconBackpack.tsx deleted file mode 100644 index 05ff15046..000000000 --- a/src/components/IconBackpack.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBackpack: React.FC = (props) => ( - - - - - - - - - - -) - -export { IconBackpack } diff --git a/src/components/IconBackspace.tsx b/src/components/IconBackspace.tsx deleted file mode 100644 index 363c5784a..000000000 --- a/src/components/IconBackspace.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBackspace: React.FC = (props) => ( - - - - -) - -export { IconBackspace } diff --git a/src/components/IconBackup.tsx b/src/components/IconBackup.tsx deleted file mode 100644 index 7375954f4..000000000 --- a/src/components/IconBackup.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBackup: React.FC = (props) => ( - - - - -) - -export { IconBackup } diff --git a/src/components/IconBackupTable.tsx b/src/components/IconBackupTable.tsx deleted file mode 100644 index 23a85dc94..000000000 --- a/src/components/IconBackupTable.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBackupTable: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconBackupTable } diff --git a/src/components/IconBallot.tsx b/src/components/IconBallot.tsx deleted file mode 100644 index 55e657370..000000000 --- a/src/components/IconBallot.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBallot: React.FC = (props) => ( - - - - -) - -export { IconBallot } diff --git a/src/components/IconBarChart.tsx b/src/components/IconBarChart.tsx deleted file mode 100644 index 2acf1469b..000000000 --- a/src/components/IconBarChart.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBarChart: React.FC = (props) => ( - - - - -) - -export { IconBarChart } diff --git a/src/components/IconBatchPrediction.tsx b/src/components/IconBatchPrediction.tsx deleted file mode 100644 index acf283ada..000000000 --- a/src/components/IconBatchPrediction.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBatchPrediction: React.FC = (props) => ( - - - - - - -) - -export { IconBatchPrediction } diff --git a/src/components/IconBathtub.tsx b/src/components/IconBathtub.tsx deleted file mode 100644 index ee0df2501..000000000 --- a/src/components/IconBathtub.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBathtub: React.FC = (props) => ( - - - - - - - - - - - - - - - -) - -export { IconBathtub } diff --git a/src/components/IconBatteryAlert.tsx b/src/components/IconBatteryAlert.tsx deleted file mode 100644 index a7c216749..000000000 --- a/src/components/IconBatteryAlert.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBatteryAlert: React.FC = (props) => ( - - - - -) - -export { IconBatteryAlert } diff --git a/src/components/IconBatteryChargingFull.tsx b/src/components/IconBatteryChargingFull.tsx deleted file mode 100644 index cff02c713..000000000 --- a/src/components/IconBatteryChargingFull.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBatteryChargingFull: React.FC = (props) => ( - - - - -) - -export { IconBatteryChargingFull } diff --git a/src/components/IconBatteryFull.tsx b/src/components/IconBatteryFull.tsx deleted file mode 100644 index 40b414133..000000000 --- a/src/components/IconBatteryFull.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBatteryFull: React.FC = (props) => ( - - - - -) - -export { IconBatteryFull } diff --git a/src/components/IconBatteryStd.tsx b/src/components/IconBatteryStd.tsx deleted file mode 100644 index d7db89800..000000000 --- a/src/components/IconBatteryStd.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBatteryStd: React.FC = (props) => ( - - - - -) - -export { IconBatteryStd } diff --git a/src/components/IconBatteryUnknown.tsx b/src/components/IconBatteryUnknown.tsx deleted file mode 100644 index 069ca1f5b..000000000 --- a/src/components/IconBatteryUnknown.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBatteryUnknown: React.FC = (props) => ( - - - - -) - -export { IconBatteryUnknown } diff --git a/src/components/IconBeachAccess.tsx b/src/components/IconBeachAccess.tsx deleted file mode 100644 index d4011ce2c..000000000 --- a/src/components/IconBeachAccess.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBeachAccess: React.FC = (props) => ( - - - - -) - -export { IconBeachAccess } diff --git a/src/components/IconBedtime.tsx b/src/components/IconBedtime.tsx deleted file mode 100644 index cd12ec598..000000000 --- a/src/components/IconBedtime.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBedtime: React.FC = (props) => ( - - - - - - - - - - -) - -export { IconBedtime } diff --git a/src/components/IconBeenhere.tsx b/src/components/IconBeenhere.tsx deleted file mode 100644 index 93372c29f..000000000 --- a/src/components/IconBeenhere.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBeenhere: React.FC = (props) => ( - - - - -) - -export { IconBeenhere } diff --git a/src/components/IconBento.tsx b/src/components/IconBento.tsx deleted file mode 100644 index 681ea49d9..000000000 --- a/src/components/IconBento.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBento: React.FC = (props) => ( - - - - - - -) - -export { IconBento } diff --git a/src/components/IconBikeScooter.tsx b/src/components/IconBikeScooter.tsx deleted file mode 100644 index 8b356492d..000000000 --- a/src/components/IconBikeScooter.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBikeScooter: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconBikeScooter } diff --git a/src/components/IconBiotech.tsx b/src/components/IconBiotech.tsx deleted file mode 100644 index c54dc68bf..000000000 --- a/src/components/IconBiotech.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBiotech: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconBiotech } diff --git a/src/components/IconBlock.tsx b/src/components/IconBlock.tsx deleted file mode 100644 index d59665e67..000000000 --- a/src/components/IconBlock.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBlock: React.FC = (props) => ( - - - - -) - -export { IconBlock } diff --git a/src/components/IconBluetooth.tsx b/src/components/IconBluetooth.tsx deleted file mode 100644 index b59939299..000000000 --- a/src/components/IconBluetooth.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBluetooth: React.FC = (props) => ( - - - - -) - -export { IconBluetooth } diff --git a/src/components/IconBluetoothAudio.tsx b/src/components/IconBluetoothAudio.tsx deleted file mode 100644 index f99db08fb..000000000 --- a/src/components/IconBluetoothAudio.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBluetoothAudio: React.FC = (props) => ( - - - - -) - -export { IconBluetoothAudio } diff --git a/src/components/IconBluetoothConnected.tsx b/src/components/IconBluetoothConnected.tsx deleted file mode 100644 index cef9be5d1..000000000 --- a/src/components/IconBluetoothConnected.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBluetoothConnected: React.FC = (props) => ( - - - - -) - -export { IconBluetoothConnected } diff --git a/src/components/IconBluetoothDisabled.tsx b/src/components/IconBluetoothDisabled.tsx deleted file mode 100644 index 3e277474f..000000000 --- a/src/components/IconBluetoothDisabled.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBluetoothDisabled: React.FC = (props) => ( - - - - -) - -export { IconBluetoothDisabled } diff --git a/src/components/IconBluetoothSearching.tsx b/src/components/IconBluetoothSearching.tsx deleted file mode 100644 index 9084743db..000000000 --- a/src/components/IconBluetoothSearching.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBluetoothSearching: React.FC = (props) => ( - - - - -) - -export { IconBluetoothSearching } diff --git a/src/components/IconBlurCircular.tsx b/src/components/IconBlurCircular.tsx deleted file mode 100644 index 3c4f490fe..000000000 --- a/src/components/IconBlurCircular.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBlurCircular: React.FC = (props) => ( - - - - -) - -export { IconBlurCircular } diff --git a/src/components/IconBlurLinear.tsx b/src/components/IconBlurLinear.tsx deleted file mode 100644 index bef7faf09..000000000 --- a/src/components/IconBlurLinear.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBlurLinear: React.FC = (props) => ( - - - - -) - -export { IconBlurLinear } diff --git a/src/components/IconBlurOff.tsx b/src/components/IconBlurOff.tsx deleted file mode 100644 index f1ada3668..000000000 --- a/src/components/IconBlurOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBlurOff: React.FC = (props) => ( - - - - -) - -export { IconBlurOff } diff --git a/src/components/IconBlurOn.tsx b/src/components/IconBlurOn.tsx deleted file mode 100644 index af1e3f580..000000000 --- a/src/components/IconBlurOn.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBlurOn: React.FC = (props) => ( - - - - -) - -export { IconBlurOn } diff --git a/src/components/IconBook.tsx b/src/components/IconBook.tsx deleted file mode 100644 index 75eb11c03..000000000 --- a/src/components/IconBook.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBook: React.FC = (props) => ( - - - - -) - -export { IconBook } diff --git a/src/components/IconBookOnline.tsx b/src/components/IconBookOnline.tsx deleted file mode 100644 index 07f06128a..000000000 --- a/src/components/IconBookOnline.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBookOnline: React.FC = (props) => ( - - - - - - -) - -export { IconBookOnline } diff --git a/src/components/IconBookmark.tsx b/src/components/IconBookmark.tsx deleted file mode 100644 index bae8acc5a..000000000 --- a/src/components/IconBookmark.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBookmark: React.FC = (props) => ( - - - - -) - -export { IconBookmark } diff --git a/src/components/IconBookmarkBorder.tsx b/src/components/IconBookmarkBorder.tsx deleted file mode 100644 index 282403da0..000000000 --- a/src/components/IconBookmarkBorder.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBookmarkBorder: React.FC = (props) => ( - - - - -) - -export { IconBookmarkBorder } diff --git a/src/components/IconBookmarks.tsx b/src/components/IconBookmarks.tsx deleted file mode 100644 index aa036032d..000000000 --- a/src/components/IconBookmarks.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBookmarks: React.FC = (props) => ( - - - - -) - -export { IconBookmarks } diff --git a/src/components/IconBorderAll.tsx b/src/components/IconBorderAll.tsx deleted file mode 100644 index 41354c563..000000000 --- a/src/components/IconBorderAll.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBorderAll: React.FC = (props) => ( - - - - -) - -export { IconBorderAll } diff --git a/src/components/IconBorderBottom.tsx b/src/components/IconBorderBottom.tsx deleted file mode 100644 index ebf89f81e..000000000 --- a/src/components/IconBorderBottom.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBorderBottom: React.FC = (props) => ( - - - - -) - -export { IconBorderBottom } diff --git a/src/components/IconBorderClear.tsx b/src/components/IconBorderClear.tsx deleted file mode 100644 index 0f25169ea..000000000 --- a/src/components/IconBorderClear.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBorderClear: React.FC = (props) => ( - - - - -) - -export { IconBorderClear } diff --git a/src/components/IconBorderHorizontal.tsx b/src/components/IconBorderHorizontal.tsx deleted file mode 100644 index 46a1bab72..000000000 --- a/src/components/IconBorderHorizontal.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBorderHorizontal: React.FC = (props) => ( - - - - -) - -export { IconBorderHorizontal } diff --git a/src/components/IconBorderInner.tsx b/src/components/IconBorderInner.tsx deleted file mode 100644 index 8b6818a34..000000000 --- a/src/components/IconBorderInner.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBorderInner: React.FC = (props) => ( - - - - -) - -export { IconBorderInner } diff --git a/src/components/IconBorderLeft.tsx b/src/components/IconBorderLeft.tsx deleted file mode 100644 index 1f7f2bc47..000000000 --- a/src/components/IconBorderLeft.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBorderLeft: React.FC = (props) => ( - - - - -) - -export { IconBorderLeft } diff --git a/src/components/IconBorderOuter.tsx b/src/components/IconBorderOuter.tsx deleted file mode 100644 index 55c1370ea..000000000 --- a/src/components/IconBorderOuter.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBorderOuter: React.FC = (props) => ( - - - - -) - -export { IconBorderOuter } diff --git a/src/components/IconBorderRight.tsx b/src/components/IconBorderRight.tsx deleted file mode 100644 index 2576323bd..000000000 --- a/src/components/IconBorderRight.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBorderRight: React.FC = (props) => ( - - - - -) - -export { IconBorderRight } diff --git a/src/components/IconBorderStyle.tsx b/src/components/IconBorderStyle.tsx deleted file mode 100644 index d1c31e467..000000000 --- a/src/components/IconBorderStyle.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBorderStyle: React.FC = (props) => ( - - - - -) - -export { IconBorderStyle } diff --git a/src/components/IconBorderTop.tsx b/src/components/IconBorderTop.tsx deleted file mode 100644 index 95b56e1fb..000000000 --- a/src/components/IconBorderTop.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBorderTop: React.FC = (props) => ( - - - - -) - -export { IconBorderTop } diff --git a/src/components/IconBorderVertical.tsx b/src/components/IconBorderVertical.tsx deleted file mode 100644 index dcf6d9636..000000000 --- a/src/components/IconBorderVertical.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBorderVertical: React.FC = (props) => ( - - - - -) - -export { IconBorderVertical } diff --git a/src/components/IconBrandingWatermark.tsx b/src/components/IconBrandingWatermark.tsx deleted file mode 100644 index a424bd4cf..000000000 --- a/src/components/IconBrandingWatermark.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBrandingWatermark: React.FC = (props) => ( - - - - -) - -export { IconBrandingWatermark } diff --git a/src/components/IconBrightness1.tsx b/src/components/IconBrightness1.tsx deleted file mode 100644 index 55b370fe5..000000000 --- a/src/components/IconBrightness1.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBrightness1: React.FC = (props) => ( - - - - -) - -export { IconBrightness1 } diff --git a/src/components/IconBrightness2.tsx b/src/components/IconBrightness2.tsx deleted file mode 100644 index 45ffccc11..000000000 --- a/src/components/IconBrightness2.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBrightness2: React.FC = (props) => ( - - - - -) - -export { IconBrightness2 } diff --git a/src/components/IconBrightness3.tsx b/src/components/IconBrightness3.tsx deleted file mode 100644 index 17ed1149b..000000000 --- a/src/components/IconBrightness3.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBrightness3: React.FC = (props) => ( - - - - -) - -export { IconBrightness3 } diff --git a/src/components/IconBrightness4.tsx b/src/components/IconBrightness4.tsx deleted file mode 100644 index 108e2e94d..000000000 --- a/src/components/IconBrightness4.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBrightness4: React.FC = (props) => ( - - - - -) - -export { IconBrightness4 } diff --git a/src/components/IconBrightness5.tsx b/src/components/IconBrightness5.tsx deleted file mode 100644 index fde007d88..000000000 --- a/src/components/IconBrightness5.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBrightness5: React.FC = (props) => ( - - - - -) - -export { IconBrightness5 } diff --git a/src/components/IconBrightness6.tsx b/src/components/IconBrightness6.tsx deleted file mode 100644 index 038cc3e7a..000000000 --- a/src/components/IconBrightness6.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBrightness6: React.FC = (props) => ( - - - - -) - -export { IconBrightness6 } diff --git a/src/components/IconBrightness7.tsx b/src/components/IconBrightness7.tsx deleted file mode 100644 index c16532d43..000000000 --- a/src/components/IconBrightness7.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBrightness7: React.FC = (props) => ( - - - - -) - -export { IconBrightness7 } diff --git a/src/components/IconBrightnessAuto.tsx b/src/components/IconBrightnessAuto.tsx deleted file mode 100644 index 9ccc5d7d3..000000000 --- a/src/components/IconBrightnessAuto.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBrightnessAuto: React.FC = (props) => ( - - - - -) - -export { IconBrightnessAuto } diff --git a/src/components/IconBrightnessHigh.tsx b/src/components/IconBrightnessHigh.tsx deleted file mode 100644 index 65343480f..000000000 --- a/src/components/IconBrightnessHigh.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBrightnessHigh: React.FC = (props) => ( - - - - -) - -export { IconBrightnessHigh } diff --git a/src/components/IconBrightnessLow.tsx b/src/components/IconBrightnessLow.tsx deleted file mode 100644 index 1fa34f8b6..000000000 --- a/src/components/IconBrightnessLow.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBrightnessLow: React.FC = (props) => ( - - - - -) - -export { IconBrightnessLow } diff --git a/src/components/IconBrightnessMedium.tsx b/src/components/IconBrightnessMedium.tsx deleted file mode 100644 index 96479c7fe..000000000 --- a/src/components/IconBrightnessMedium.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBrightnessMedium: React.FC = (props) => ( - - - - -) - -export { IconBrightnessMedium } diff --git a/src/components/IconBrokenImage.tsx b/src/components/IconBrokenImage.tsx deleted file mode 100644 index cabb63384..000000000 --- a/src/components/IconBrokenImage.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBrokenImage: React.FC = (props) => ( - - - - - -) - -export { IconBrokenImage } diff --git a/src/components/IconBrowserNotSupported.tsx b/src/components/IconBrowserNotSupported.tsx deleted file mode 100644 index 4dc9e41e7..000000000 --- a/src/components/IconBrowserNotSupported.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBrowserNotSupported: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconBrowserNotSupported } diff --git a/src/components/IconBrush.tsx b/src/components/IconBrush.tsx deleted file mode 100644 index 522193230..000000000 --- a/src/components/IconBrush.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBrush: React.FC = (props) => ( - - - - -) - -export { IconBrush } diff --git a/src/components/IconBubbleChart.tsx b/src/components/IconBubbleChart.tsx deleted file mode 100644 index d83c6ea97..000000000 --- a/src/components/IconBubbleChart.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBubbleChart: React.FC = (props) => ( - - - - - - -) - -export { IconBubbleChart } diff --git a/src/components/IconBugReport.tsx b/src/components/IconBugReport.tsx deleted file mode 100644 index da9713682..000000000 --- a/src/components/IconBugReport.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBugReport: React.FC = (props) => ( - - - - -) - -export { IconBugReport } diff --git a/src/components/IconBuild.tsx b/src/components/IconBuild.tsx deleted file mode 100644 index 670360e49..000000000 --- a/src/components/IconBuild.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBuild: React.FC = (props) => ( - - - - -) - -export { IconBuild } diff --git a/src/components/IconBuildCircle.tsx b/src/components/IconBuildCircle.tsx deleted file mode 100644 index 742aa466a..000000000 --- a/src/components/IconBuildCircle.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBuildCircle: React.FC = (props) => ( - - - - - - - - - - -) - -export { IconBuildCircle } diff --git a/src/components/IconBurstMode.tsx b/src/components/IconBurstMode.tsx deleted file mode 100644 index 40288ce84..000000000 --- a/src/components/IconBurstMode.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBurstMode: React.FC = (props) => ( - - - - -) - -export { IconBurstMode } diff --git a/src/components/IconBusiness.tsx b/src/components/IconBusiness.tsx deleted file mode 100644 index 24d02cb22..000000000 --- a/src/components/IconBusiness.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBusiness: React.FC = (props) => ( - - - - -) - -export { IconBusiness } diff --git a/src/components/IconBusinessCenter.tsx b/src/components/IconBusinessCenter.tsx deleted file mode 100644 index ce3e57137..000000000 --- a/src/components/IconBusinessCenter.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconBusinessCenter: React.FC = (props) => ( - - - - -) - -export { IconBusinessCenter } diff --git a/src/components/IconCached.tsx b/src/components/IconCached.tsx deleted file mode 100644 index 6cc435115..000000000 --- a/src/components/IconCached.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCached: React.FC = (props) => ( - - - - -) - -export { IconCached } diff --git a/src/components/IconCake.tsx b/src/components/IconCake.tsx deleted file mode 100644 index 8d689c8e0..000000000 --- a/src/components/IconCake.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCake: React.FC = (props) => ( - - - - -) - -export { IconCake } diff --git a/src/components/IconCalculate.tsx b/src/components/IconCalculate.tsx deleted file mode 100644 index de66ef033..000000000 --- a/src/components/IconCalculate.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCalculate: React.FC = (props) => ( - - - - - - - - -) - -export { IconCalculate } diff --git a/src/components/IconCalendarToday.tsx b/src/components/IconCalendarToday.tsx deleted file mode 100644 index 856e41101..000000000 --- a/src/components/IconCalendarToday.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCalendarToday: React.FC = (props) => ( - - - - -) - -export { IconCalendarToday } diff --git a/src/components/IconCalendarViewDay.tsx b/src/components/IconCalendarViewDay.tsx deleted file mode 100644 index ea74b60a4..000000000 --- a/src/components/IconCalendarViewDay.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCalendarViewDay: React.FC = (props) => ( - - - - -) - -export { IconCalendarViewDay } diff --git a/src/components/IconCall.tsx b/src/components/IconCall.tsx deleted file mode 100644 index e3b7434ec..000000000 --- a/src/components/IconCall.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCall: React.FC = (props) => ( - - - - -) - -export { IconCall } diff --git a/src/components/IconCallEnd.tsx b/src/components/IconCallEnd.tsx deleted file mode 100644 index 4ec40f33d..000000000 --- a/src/components/IconCallEnd.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCallEnd: React.FC = (props) => ( - - - - -) - -export { IconCallEnd } diff --git a/src/components/IconCallMade.tsx b/src/components/IconCallMade.tsx deleted file mode 100644 index af2b89614..000000000 --- a/src/components/IconCallMade.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCallMade: React.FC = (props) => ( - - - - -) - -export { IconCallMade } diff --git a/src/components/IconCallMerge.tsx b/src/components/IconCallMerge.tsx deleted file mode 100644 index 749e59e4e..000000000 --- a/src/components/IconCallMerge.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCallMerge: React.FC = (props) => ( - - - - -) - -export { IconCallMerge } diff --git a/src/components/IconCallMissed.tsx b/src/components/IconCallMissed.tsx deleted file mode 100644 index ad9b243b6..000000000 --- a/src/components/IconCallMissed.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCallMissed: React.FC = (props) => ( - - - - -) - -export { IconCallMissed } diff --git a/src/components/IconCallMissedOutgoing.tsx b/src/components/IconCallMissedOutgoing.tsx deleted file mode 100644 index 9e222e110..000000000 --- a/src/components/IconCallMissedOutgoing.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCallMissedOutgoing: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconCallMissedOutgoing } diff --git a/src/components/IconCallReceived.tsx b/src/components/IconCallReceived.tsx deleted file mode 100644 index cce23c6d2..000000000 --- a/src/components/IconCallReceived.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCallReceived: React.FC = (props) => ( - - - - -) - -export { IconCallReceived } diff --git a/src/components/IconCallSplit.tsx b/src/components/IconCallSplit.tsx deleted file mode 100644 index df6aad8a0..000000000 --- a/src/components/IconCallSplit.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCallSplit: React.FC = (props) => ( - - - - -) - -export { IconCallSplit } diff --git a/src/components/IconCallToAction.tsx b/src/components/IconCallToAction.tsx deleted file mode 100644 index 39e0a3097..000000000 --- a/src/components/IconCallToAction.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCallToAction: React.FC = (props) => ( - - - - -) - -export { IconCallToAction } diff --git a/src/components/IconCamera.tsx b/src/components/IconCamera.tsx deleted file mode 100644 index 090a15048..000000000 --- a/src/components/IconCamera.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCamera: React.FC = (props) => ( - - - - -) - -export { IconCamera } diff --git a/src/components/IconCameraAlt.tsx b/src/components/IconCameraAlt.tsx deleted file mode 100644 index bdc11aff8..000000000 --- a/src/components/IconCameraAlt.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCameraAlt: React.FC = (props) => ( - - - - - -) - -export { IconCameraAlt } diff --git a/src/components/IconCameraEnhance.tsx b/src/components/IconCameraEnhance.tsx deleted file mode 100644 index afcf4c274..000000000 --- a/src/components/IconCameraEnhance.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCameraEnhance: React.FC = (props) => ( - - - - - -) - -export { IconCameraEnhance } diff --git a/src/components/IconCameraFront.tsx b/src/components/IconCameraFront.tsx deleted file mode 100644 index 639748750..000000000 --- a/src/components/IconCameraFront.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCameraFront: React.FC = (props) => ( - - - - -) - -export { IconCameraFront } diff --git a/src/components/IconCameraRear.tsx b/src/components/IconCameraRear.tsx deleted file mode 100644 index 82354ecd3..000000000 --- a/src/components/IconCameraRear.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCameraRear: React.FC = (props) => ( - - - - -) - -export { IconCameraRear } diff --git a/src/components/IconCameraRoll.tsx b/src/components/IconCameraRoll.tsx deleted file mode 100644 index 04e76f3cf..000000000 --- a/src/components/IconCameraRoll.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCameraRoll: React.FC = (props) => ( - - - - -) - -export { IconCameraRoll } diff --git a/src/components/IconCampaign.tsx b/src/components/IconCampaign.tsx deleted file mode 100644 index 7c317ef41..000000000 --- a/src/components/IconCampaign.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCampaign: React.FC = (props) => ( - - - - -) - -export { IconCampaign } diff --git a/src/components/IconCancel.tsx b/src/components/IconCancel.tsx deleted file mode 100644 index 24eee30c3..000000000 --- a/src/components/IconCancel.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCancel: React.FC = (props) => ( - - - - -) - -export { IconCancel } diff --git a/src/components/IconCancelPresentation.tsx b/src/components/IconCancelPresentation.tsx deleted file mode 100644 index 0abdc30dd..000000000 --- a/src/components/IconCancelPresentation.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCancelPresentation: React.FC = (props) => ( - - - - - - -) - -export { IconCancelPresentation } diff --git a/src/components/IconCancelScheduleSend.tsx b/src/components/IconCancelScheduleSend.tsx deleted file mode 100644 index 7a9fc5326..000000000 --- a/src/components/IconCancelScheduleSend.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCancelScheduleSend: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconCancelScheduleSend } diff --git a/src/components/IconCardGiftcard.tsx b/src/components/IconCardGiftcard.tsx deleted file mode 100644 index fa36e6b59..000000000 --- a/src/components/IconCardGiftcard.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCardGiftcard: React.FC = (props) => ( - - - - -) - -export { IconCardGiftcard } diff --git a/src/components/IconCardMembership.tsx b/src/components/IconCardMembership.tsx deleted file mode 100644 index ad3f16dff..000000000 --- a/src/components/IconCardMembership.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCardMembership: React.FC = (props) => ( - - - - -) - -export { IconCardMembership } diff --git a/src/components/IconCardTravel.tsx b/src/components/IconCardTravel.tsx deleted file mode 100644 index e4a8959a3..000000000 --- a/src/components/IconCardTravel.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCardTravel: React.FC = (props) => ( - - - - -) - -export { IconCardTravel } diff --git a/src/components/IconCarpenter.tsx b/src/components/IconCarpenter.tsx deleted file mode 100644 index 72f7368a1..000000000 --- a/src/components/IconCarpenter.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCarpenter: React.FC = (props) => ( - - - - -) - -export { IconCarpenter } diff --git a/src/components/IconCasino.tsx b/src/components/IconCasino.tsx deleted file mode 100644 index 48a6d701e..000000000 --- a/src/components/IconCasino.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCasino: React.FC = (props) => ( - - - - -) - -export { IconCasino } diff --git a/src/components/IconCast.tsx b/src/components/IconCast.tsx deleted file mode 100644 index 936f697b2..000000000 --- a/src/components/IconCast.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCast: React.FC = (props) => ( - - - - - -) - -export { IconCast } diff --git a/src/components/IconCastConnected.tsx b/src/components/IconCastConnected.tsx deleted file mode 100644 index 8da641949..000000000 --- a/src/components/IconCastConnected.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCastConnected: React.FC = (props) => ( - - - - - -) - -export { IconCastConnected } diff --git a/src/components/IconCastForEducation.tsx b/src/components/IconCastForEducation.tsx deleted file mode 100644 index 5e8eecb32..000000000 --- a/src/components/IconCastForEducation.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCastForEducation: React.FC = (props) => ( - - - - - - -) - -export { IconCastForEducation } diff --git a/src/components/IconCategory.tsx b/src/components/IconCategory.tsx deleted file mode 100644 index 8b7106ccd..000000000 --- a/src/components/IconCategory.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCategory: React.FC = (props) => ( - - - - - - -) - -export { IconCategory } diff --git a/src/components/IconCenterFocusStrong.tsx b/src/components/IconCenterFocusStrong.tsx deleted file mode 100644 index e1caf9f1a..000000000 --- a/src/components/IconCenterFocusStrong.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCenterFocusStrong: React.FC = (props) => ( - - - - -) - -export { IconCenterFocusStrong } diff --git a/src/components/IconCenterFocusWeak.tsx b/src/components/IconCenterFocusWeak.tsx deleted file mode 100644 index 1c70f3c20..000000000 --- a/src/components/IconCenterFocusWeak.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCenterFocusWeak: React.FC = (props) => ( - - - - -) - -export { IconCenterFocusWeak } diff --git a/src/components/IconChangeHistory.tsx b/src/components/IconChangeHistory.tsx deleted file mode 100644 index 73afcdb5e..000000000 --- a/src/components/IconChangeHistory.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconChangeHistory: React.FC = (props) => ( - - - - -) - -export { IconChangeHistory } diff --git a/src/components/IconChargingStation.tsx b/src/components/IconChargingStation.tsx deleted file mode 100644 index d927e714c..000000000 --- a/src/components/IconChargingStation.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconChargingStation: React.FC = (props) => ( - - - - - - -) - -export { IconChargingStation } diff --git a/src/components/IconChat.tsx b/src/components/IconChat.tsx deleted file mode 100644 index d7cbe0ed0..000000000 --- a/src/components/IconChat.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconChat: React.FC = (props) => ( - - - - -) - -export { IconChat } diff --git a/src/components/IconChatBubble.tsx b/src/components/IconChatBubble.tsx deleted file mode 100644 index a028640bc..000000000 --- a/src/components/IconChatBubble.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconChatBubble: React.FC = (props) => ( - - - - -) - -export { IconChatBubble } diff --git a/src/components/IconChatBubbleOutline.tsx b/src/components/IconChatBubbleOutline.tsx deleted file mode 100644 index 91cb745d7..000000000 --- a/src/components/IconChatBubbleOutline.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconChatBubbleOutline: React.FC = (props) => ( - - - - -) - -export { IconChatBubbleOutline } diff --git a/src/components/IconCheck.tsx b/src/components/IconCheck.tsx deleted file mode 100644 index 9456948c3..000000000 --- a/src/components/IconCheck.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCheck: React.FC = (props) => ( - - - - -) - -export { IconCheck } diff --git a/src/components/IconCheckBox.tsx b/src/components/IconCheckBox.tsx deleted file mode 100644 index 3ea35a4f6..000000000 --- a/src/components/IconCheckBox.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCheckBox: React.FC = (props) => ( - - - - -) - -export { IconCheckBox } diff --git a/src/components/IconCheckBoxOutlineBlank.tsx b/src/components/IconCheckBoxOutlineBlank.tsx deleted file mode 100644 index d33e9d137..000000000 --- a/src/components/IconCheckBoxOutlineBlank.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCheckBoxOutlineBlank: React.FC = (props) => ( - - - - -) - -export { IconCheckBoxOutlineBlank } diff --git a/src/components/IconCheckCircle.tsx b/src/components/IconCheckCircle.tsx deleted file mode 100644 index 76c53325f..000000000 --- a/src/components/IconCheckCircle.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCheckCircle: React.FC = (props) => ( - - - - -) - -export { IconCheckCircle } diff --git a/src/components/IconCheckCircleOutline.tsx b/src/components/IconCheckCircleOutline.tsx deleted file mode 100644 index c485c03a6..000000000 --- a/src/components/IconCheckCircleOutline.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCheckCircleOutline: React.FC = (props) => ( - - - - -) - -export { IconCheckCircleOutline } diff --git a/src/components/IconCheckroom.tsx b/src/components/IconCheckroom.tsx deleted file mode 100644 index e99884b63..000000000 --- a/src/components/IconCheckroom.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCheckroom: React.FC = (props) => ( - - - - - - -) - -export { IconCheckroom } diff --git a/src/components/IconChevronLeft.tsx b/src/components/IconChevronLeft.tsx deleted file mode 100644 index 6d386ee85..000000000 --- a/src/components/IconChevronLeft.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconChevronLeft: React.FC = (props) => ( - - - - -) - -export { IconChevronLeft } diff --git a/src/components/IconChevronRight.tsx b/src/components/IconChevronRight.tsx deleted file mode 100644 index e1d8713c1..000000000 --- a/src/components/IconChevronRight.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconChevronRight: React.FC = (props) => ( - - - - -) - -export { IconChevronRight } diff --git a/src/components/IconChildCare.tsx b/src/components/IconChildCare.tsx deleted file mode 100644 index bcfe23dc5..000000000 --- a/src/components/IconChildCare.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconChildCare: React.FC = (props) => ( - - - - - - -) - -export { IconChildCare } diff --git a/src/components/IconChildFriendly.tsx b/src/components/IconChildFriendly.tsx deleted file mode 100644 index 324dff27b..000000000 --- a/src/components/IconChildFriendly.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconChildFriendly: React.FC = (props) => ( - - - - -) - -export { IconChildFriendly } diff --git a/src/components/IconChromeReaderMode.tsx b/src/components/IconChromeReaderMode.tsx deleted file mode 100644 index 9fb08f5d0..000000000 --- a/src/components/IconChromeReaderMode.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconChromeReaderMode: React.FC = (props) => ( - - - - -) - -export { IconChromeReaderMode } diff --git a/src/components/IconClass.tsx b/src/components/IconClass.tsx deleted file mode 100644 index e35f7567f..000000000 --- a/src/components/IconClass.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconClass: React.FC = (props) => ( - - - - -) - -export { IconClass } diff --git a/src/components/IconCleanHands.tsx b/src/components/IconCleanHands.tsx deleted file mode 100644 index 1ff731cd4..000000000 --- a/src/components/IconCleanHands.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCleanHands: React.FC = (props) => ( - - - - -) - -export { IconCleanHands } diff --git a/src/components/IconCleaningServices.tsx b/src/components/IconCleaningServices.tsx deleted file mode 100644 index 4ae2b8c03..000000000 --- a/src/components/IconCleaningServices.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCleaningServices: React.FC = (props) => ( - - - - - - - - -) - -export { IconCleaningServices } diff --git a/src/components/IconClear.tsx b/src/components/IconClear.tsx deleted file mode 100644 index 4522790cd..000000000 --- a/src/components/IconClear.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconClear: React.FC = (props) => ( - - - - -) - -export { IconClear } diff --git a/src/components/IconClearAll.tsx b/src/components/IconClearAll.tsx deleted file mode 100644 index 8c1f5e869..000000000 --- a/src/components/IconClearAll.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconClearAll: React.FC = (props) => ( - - - - -) - -export { IconClearAll } diff --git a/src/components/IconClose.tsx b/src/components/IconClose.tsx deleted file mode 100644 index 65a9897f3..000000000 --- a/src/components/IconClose.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconClose: React.FC = (props) => ( - - - - -) - -export { IconClose } diff --git a/src/components/IconCloseFullscreen.tsx b/src/components/IconCloseFullscreen.tsx deleted file mode 100644 index 72a0e0c61..000000000 --- a/src/components/IconCloseFullscreen.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCloseFullscreen: React.FC = (props) => ( - - - - -) - -export { IconCloseFullscreen } diff --git a/src/components/IconClosedCaption.tsx b/src/components/IconClosedCaption.tsx deleted file mode 100644 index d66c85e97..000000000 --- a/src/components/IconClosedCaption.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconClosedCaption: React.FC = (props) => ( - - - - -) - -export { IconClosedCaption } diff --git a/src/components/IconClosedCaptionDisabled.tsx b/src/components/IconClosedCaptionDisabled.tsx deleted file mode 100644 index 04cf82539..000000000 --- a/src/components/IconClosedCaptionDisabled.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconClosedCaptionDisabled: React.FC = (props) => ( - - - - -) - -export { IconClosedCaptionDisabled } diff --git a/src/components/IconCloud.tsx b/src/components/IconCloud.tsx deleted file mode 100644 index 54f9da662..000000000 --- a/src/components/IconCloud.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCloud: React.FC = (props) => ( - - - - -) - -export { IconCloud } diff --git a/src/components/IconCloudCircle.tsx b/src/components/IconCloudCircle.tsx deleted file mode 100644 index c74c20b76..000000000 --- a/src/components/IconCloudCircle.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCloudCircle: React.FC = (props) => ( - - - - -) - -export { IconCloudCircle } diff --git a/src/components/IconCloudDone.tsx b/src/components/IconCloudDone.tsx deleted file mode 100644 index 469e6552f..000000000 --- a/src/components/IconCloudDone.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCloudDone: React.FC = (props) => ( - - - - -) - -export { IconCloudDone } diff --git a/src/components/IconCloudDownload.tsx b/src/components/IconCloudDownload.tsx deleted file mode 100644 index acd57a297..000000000 --- a/src/components/IconCloudDownload.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCloudDownload: React.FC = (props) => ( - - - - -) - -export { IconCloudDownload } diff --git a/src/components/IconCloudOff.tsx b/src/components/IconCloudOff.tsx deleted file mode 100644 index 49fc8e2cd..000000000 --- a/src/components/IconCloudOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCloudOff: React.FC = (props) => ( - - - - -) - -export { IconCloudOff } diff --git a/src/components/IconCloudQueue.tsx b/src/components/IconCloudQueue.tsx deleted file mode 100644 index 4d2e1facf..000000000 --- a/src/components/IconCloudQueue.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCloudQueue: React.FC = (props) => ( - - - - -) - -export { IconCloudQueue } diff --git a/src/components/IconCloudUpload.tsx b/src/components/IconCloudUpload.tsx deleted file mode 100644 index df766da9f..000000000 --- a/src/components/IconCloudUpload.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCloudUpload: React.FC = (props) => ( - - - - -) - -export { IconCloudUpload } diff --git a/src/components/IconCode.tsx b/src/components/IconCode.tsx deleted file mode 100644 index 5473e962c..000000000 --- a/src/components/IconCode.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCode: React.FC = (props) => ( - - - - -) - -export { IconCode } diff --git a/src/components/IconCollections.tsx b/src/components/IconCollections.tsx deleted file mode 100644 index 4d96c4044..000000000 --- a/src/components/IconCollections.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCollections: React.FC = (props) => ( - - - - -) - -export { IconCollections } diff --git a/src/components/IconCollectionsBookmark.tsx b/src/components/IconCollectionsBookmark.tsx deleted file mode 100644 index 0a1eccfb6..000000000 --- a/src/components/IconCollectionsBookmark.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCollectionsBookmark: React.FC = (props) => ( - - - - - - -) - -export { IconCollectionsBookmark } diff --git a/src/components/IconColorLens.tsx b/src/components/IconColorLens.tsx deleted file mode 100644 index 54c9b6b96..000000000 --- a/src/components/IconColorLens.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconColorLens: React.FC = (props) => ( - - - - -) - -export { IconColorLens } diff --git a/src/components/IconColorize.tsx b/src/components/IconColorize.tsx deleted file mode 100644 index 881a823f2..000000000 --- a/src/components/IconColorize.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconColorize: React.FC = (props) => ( - - - - -) - -export { IconColorize } diff --git a/src/components/IconComment.tsx b/src/components/IconComment.tsx deleted file mode 100644 index 95c0c318c..000000000 --- a/src/components/IconComment.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconComment: React.FC = (props) => ( - - - - -) - -export { IconComment } diff --git a/src/components/IconCommentBank.tsx b/src/components/IconCommentBank.tsx deleted file mode 100644 index e521188bd..000000000 --- a/src/components/IconCommentBank.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCommentBank: React.FC = (props) => ( - - - - - - - - -) - -export { IconCommentBank } diff --git a/src/components/IconCommute.tsx b/src/components/IconCommute.tsx deleted file mode 100644 index 46c7e267a..000000000 --- a/src/components/IconCommute.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCommute: React.FC = (props) => ( - - - - -) - -export { IconCommute } diff --git a/src/components/IconCompare.tsx b/src/components/IconCompare.tsx deleted file mode 100644 index 862c08e9d..000000000 --- a/src/components/IconCompare.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCompare: React.FC = (props) => ( - - - - -) - -export { IconCompare } diff --git a/src/components/IconCompareArrows.tsx b/src/components/IconCompareArrows.tsx deleted file mode 100644 index c0de741f6..000000000 --- a/src/components/IconCompareArrows.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCompareArrows: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconCompareArrows } diff --git a/src/components/IconCompassCalibration.tsx b/src/components/IconCompassCalibration.tsx deleted file mode 100644 index 4c9e11e58..000000000 --- a/src/components/IconCompassCalibration.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCompassCalibration: React.FC = (props) => ( - - - - - -) - -export { IconCompassCalibration } diff --git a/src/components/IconComputer.tsx b/src/components/IconComputer.tsx deleted file mode 100644 index b0f0104ea..000000000 --- a/src/components/IconComputer.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconComputer: React.FC = (props) => ( - - - - -) - -export { IconComputer } diff --git a/src/components/IconConfirmationNumber.tsx b/src/components/IconConfirmationNumber.tsx deleted file mode 100644 index 6f02c77d1..000000000 --- a/src/components/IconConfirmationNumber.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconConfirmationNumber: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconConfirmationNumber } diff --git a/src/components/IconConnectWithoutContact.tsx b/src/components/IconConnectWithoutContact.tsx deleted file mode 100644 index ba8e0384a..000000000 --- a/src/components/IconConnectWithoutContact.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconConnectWithoutContact: React.FC = (props) => ( - - - - -) - -export { IconConnectWithoutContact } diff --git a/src/components/IconConstruction.tsx b/src/components/IconConstruction.tsx deleted file mode 100644 index a5c3bf7e8..000000000 --- a/src/components/IconConstruction.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconConstruction: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconConstruction } diff --git a/src/components/IconContactMail.tsx b/src/components/IconContactMail.tsx deleted file mode 100644 index 1a16cc7d4..000000000 --- a/src/components/IconContactMail.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconContactMail: React.FC = (props) => ( - - - - - -) - -export { IconContactMail } diff --git a/src/components/IconContactPage.tsx b/src/components/IconContactPage.tsx deleted file mode 100644 index d92aac5bf..000000000 --- a/src/components/IconContactPage.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconContactPage: React.FC = (props) => ( - - - - -) - -export { IconContactPage } diff --git a/src/components/IconContactPhone.tsx b/src/components/IconContactPhone.tsx deleted file mode 100644 index a5b9f47b4..000000000 --- a/src/components/IconContactPhone.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconContactPhone: React.FC = (props) => ( - - - - -) - -export { IconContactPhone } diff --git a/src/components/IconContactSupport.tsx b/src/components/IconContactSupport.tsx deleted file mode 100644 index 9c64b64e9..000000000 --- a/src/components/IconContactSupport.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconContactSupport: React.FC = (props) => ( - - - - -) - -export { IconContactSupport } diff --git a/src/components/IconContactless.tsx b/src/components/IconContactless.tsx deleted file mode 100644 index 0632c1108..000000000 --- a/src/components/IconContactless.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconContactless: React.FC = (props) => ( - - - - - - - - -) - -export { IconContactless } diff --git a/src/components/IconContacts.tsx b/src/components/IconContacts.tsx deleted file mode 100644 index ff972b760..000000000 --- a/src/components/IconContacts.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconContacts: React.FC = (props) => ( - - - - -) - -export { IconContacts } diff --git a/src/components/IconContentCopy.tsx b/src/components/IconContentCopy.tsx deleted file mode 100644 index ab9f38981..000000000 --- a/src/components/IconContentCopy.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconContentCopy: React.FC = (props) => ( - - - - -) - -export { IconContentCopy } diff --git a/src/components/IconContentCut.tsx b/src/components/IconContentCut.tsx deleted file mode 100644 index 3c9c881e9..000000000 --- a/src/components/IconContentCut.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconContentCut: React.FC = (props) => ( - - - - - - - -) - -export { IconContentCut } diff --git a/src/components/IconContentPaste.tsx b/src/components/IconContentPaste.tsx deleted file mode 100644 index b8bff4e79..000000000 --- a/src/components/IconContentPaste.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconContentPaste: React.FC = (props) => ( - - - - -) - -export { IconContentPaste } diff --git a/src/components/IconControlCamera.tsx b/src/components/IconControlCamera.tsx deleted file mode 100644 index 7abe14171..000000000 --- a/src/components/IconControlCamera.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconControlCamera: React.FC = (props) => ( - - - - - -) - -export { IconControlCamera } diff --git a/src/components/IconControlPoint.tsx b/src/components/IconControlPoint.tsx deleted file mode 100644 index 6ad46f26a..000000000 --- a/src/components/IconControlPoint.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconControlPoint: React.FC = (props) => ( - - - - -) - -export { IconControlPoint } diff --git a/src/components/IconControlPointDuplicate.tsx b/src/components/IconControlPointDuplicate.tsx deleted file mode 100644 index 3bbbada2f..000000000 --- a/src/components/IconControlPointDuplicate.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconControlPointDuplicate: React.FC = (props) => ( - - - - -) - -export { IconControlPointDuplicate } diff --git a/src/components/IconCopyright.tsx b/src/components/IconCopyright.tsx deleted file mode 100644 index d8a19efe2..000000000 --- a/src/components/IconCopyright.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCopyright: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconCopyright } diff --git a/src/components/IconCoronavirus.tsx b/src/components/IconCoronavirus.tsx deleted file mode 100644 index 7aa1ec1c7..000000000 --- a/src/components/IconCoronavirus.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCoronavirus: React.FC = (props) => ( - - - - -) - -export { IconCoronavirus } diff --git a/src/components/IconCorporateFare.tsx b/src/components/IconCorporateFare.tsx deleted file mode 100644 index 6c548f70d..000000000 --- a/src/components/IconCorporateFare.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCorporateFare: React.FC = (props) => ( - - - - -) - -export { IconCorporateFare } diff --git a/src/components/IconCountertops.tsx b/src/components/IconCountertops.tsx deleted file mode 100644 index 5ae61bbf3..000000000 --- a/src/components/IconCountertops.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCountertops: React.FC = (props) => ( - - - - -) - -export { IconCountertops } diff --git a/src/components/IconCreate.tsx b/src/components/IconCreate.tsx deleted file mode 100644 index b66f90de9..000000000 --- a/src/components/IconCreate.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCreate: React.FC = (props) => ( - - - - -) - -export { IconCreate } diff --git a/src/components/IconCreateNewFolder.tsx b/src/components/IconCreateNewFolder.tsx deleted file mode 100644 index b45a70465..000000000 --- a/src/components/IconCreateNewFolder.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCreateNewFolder: React.FC = (props) => ( - - - - -) - -export { IconCreateNewFolder } diff --git a/src/components/IconCreditCard.tsx b/src/components/IconCreditCard.tsx deleted file mode 100644 index 196202366..000000000 --- a/src/components/IconCreditCard.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCreditCard: React.FC = (props) => ( - - - - -) - -export { IconCreditCard } diff --git a/src/components/IconCrop.tsx b/src/components/IconCrop.tsx deleted file mode 100644 index bf5206ae5..000000000 --- a/src/components/IconCrop.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCrop: React.FC = (props) => ( - - - - -) - -export { IconCrop } diff --git a/src/components/IconCrop169.tsx b/src/components/IconCrop169.tsx deleted file mode 100644 index d2fdf871c..000000000 --- a/src/components/IconCrop169.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCrop169: React.FC = (props) => ( - - - - -) - -export { IconCrop169 } diff --git a/src/components/IconCrop32.tsx b/src/components/IconCrop32.tsx deleted file mode 100644 index b7425609c..000000000 --- a/src/components/IconCrop32.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCrop32: React.FC = (props) => ( - - - - -) - -export { IconCrop32 } diff --git a/src/components/IconCrop54.tsx b/src/components/IconCrop54.tsx deleted file mode 100644 index f149b9c42..000000000 --- a/src/components/IconCrop54.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCrop54: React.FC = (props) => ( - - - - -) - -export { IconCrop54 } diff --git a/src/components/IconCrop75.tsx b/src/components/IconCrop75.tsx deleted file mode 100644 index 2550b9e95..000000000 --- a/src/components/IconCrop75.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCrop75: React.FC = (props) => ( - - - - -) - -export { IconCrop75 } diff --git a/src/components/IconCropDin.tsx b/src/components/IconCropDin.tsx deleted file mode 100644 index ce044b22b..000000000 --- a/src/components/IconCropDin.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCropDin: React.FC = (props) => ( - - - - -) - -export { IconCropDin } diff --git a/src/components/IconCropFree.tsx b/src/components/IconCropFree.tsx deleted file mode 100644 index 65a8d58ca..000000000 --- a/src/components/IconCropFree.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCropFree: React.FC = (props) => ( - - - - -) - -export { IconCropFree } diff --git a/src/components/IconCropLandscape.tsx b/src/components/IconCropLandscape.tsx deleted file mode 100644 index 0351624b1..000000000 --- a/src/components/IconCropLandscape.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCropLandscape: React.FC = (props) => ( - - - - -) - -export { IconCropLandscape } diff --git a/src/components/IconCropOriginal.tsx b/src/components/IconCropOriginal.tsx deleted file mode 100644 index 49d355440..000000000 --- a/src/components/IconCropOriginal.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCropOriginal: React.FC = (props) => ( - - - - -) - -export { IconCropOriginal } diff --git a/src/components/IconCropPortrait.tsx b/src/components/IconCropPortrait.tsx deleted file mode 100644 index 031dd8e85..000000000 --- a/src/components/IconCropPortrait.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCropPortrait: React.FC = (props) => ( - - - - -) - -export { IconCropPortrait } diff --git a/src/components/IconCropRotate.tsx b/src/components/IconCropRotate.tsx deleted file mode 100644 index a1d5d1b44..000000000 --- a/src/components/IconCropRotate.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCropRotate: React.FC = (props) => ( - - - - -) - -export { IconCropRotate } diff --git a/src/components/IconCropSquare.tsx b/src/components/IconCropSquare.tsx deleted file mode 100644 index f6366e6a7..000000000 --- a/src/components/IconCropSquare.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconCropSquare: React.FC = (props) => ( - - - - -) - -export { IconCropSquare } diff --git a/src/components/IconDashboard.tsx b/src/components/IconDashboard.tsx deleted file mode 100644 index a17799541..000000000 --- a/src/components/IconDashboard.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDashboard: React.FC = (props) => ( - - - - -) - -export { IconDashboard } diff --git a/src/components/IconDataUsage.tsx b/src/components/IconDataUsage.tsx deleted file mode 100644 index 43aef88cb..000000000 --- a/src/components/IconDataUsage.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDataUsage: React.FC = (props) => ( - - - - -) - -export { IconDataUsage } diff --git a/src/components/IconDateRange.tsx b/src/components/IconDateRange.tsx deleted file mode 100644 index e7330ea63..000000000 --- a/src/components/IconDateRange.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDateRange: React.FC = (props) => ( - - - - -) - -export { IconDateRange } diff --git a/src/components/IconDeck.tsx b/src/components/IconDeck.tsx deleted file mode 100644 index 784fc56ba..000000000 --- a/src/components/IconDeck.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDeck: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconDeck } diff --git a/src/components/IconDehaze.tsx b/src/components/IconDehaze.tsx deleted file mode 100644 index 8b2220303..000000000 --- a/src/components/IconDehaze.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDehaze: React.FC = (props) => ( - - - - -) - -export { IconDehaze } diff --git a/src/components/IconDelete.tsx b/src/components/IconDelete.tsx deleted file mode 100644 index f1156cc14..000000000 --- a/src/components/IconDelete.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDelete: React.FC = (props) => ( - - - - -) - -export { IconDelete } diff --git a/src/components/IconDeleteForever.tsx b/src/components/IconDeleteForever.tsx deleted file mode 100644 index 3b026bddd..000000000 --- a/src/components/IconDeleteForever.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDeleteForever: React.FC = (props) => ( - - - - - -) - -export { IconDeleteForever } diff --git a/src/components/IconDeleteOutline.tsx b/src/components/IconDeleteOutline.tsx deleted file mode 100644 index d0cfe36e2..000000000 --- a/src/components/IconDeleteOutline.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDeleteOutline: React.FC = (props) => ( - - - - -) - -export { IconDeleteOutline } diff --git a/src/components/IconDeleteSweep.tsx b/src/components/IconDeleteSweep.tsx deleted file mode 100644 index fe44c6cb6..000000000 --- a/src/components/IconDeleteSweep.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDeleteSweep: React.FC = (props) => ( - - - - -) - -export { IconDeleteSweep } diff --git a/src/components/IconDepartureBoard.tsx b/src/components/IconDepartureBoard.tsx deleted file mode 100644 index 7e7189488..000000000 --- a/src/components/IconDepartureBoard.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDepartureBoard: React.FC = (props) => ( - - - - -) - -export { IconDepartureBoard } diff --git a/src/components/IconDescription.tsx b/src/components/IconDescription.tsx deleted file mode 100644 index 15877a002..000000000 --- a/src/components/IconDescription.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDescription: React.FC = (props) => ( - - - - -) - -export { IconDescription } diff --git a/src/components/IconDesignServices.tsx b/src/components/IconDesignServices.tsx deleted file mode 100644 index b1d160dd2..000000000 --- a/src/components/IconDesignServices.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDesignServices: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconDesignServices } diff --git a/src/components/IconDesktopAccessDisabled.tsx b/src/components/IconDesktopAccessDisabled.tsx deleted file mode 100644 index 7d4f3981a..000000000 --- a/src/components/IconDesktopAccessDisabled.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDesktopAccessDisabled: React.FC = (props) => ( - - - - -) - -export { IconDesktopAccessDisabled } diff --git a/src/components/IconDesktopMac.tsx b/src/components/IconDesktopMac.tsx deleted file mode 100644 index 8914cdac1..000000000 --- a/src/components/IconDesktopMac.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDesktopMac: React.FC = (props) => ( - - - - -) - -export { IconDesktopMac } diff --git a/src/components/IconDesktopWindows.tsx b/src/components/IconDesktopWindows.tsx deleted file mode 100644 index 01ba014ba..000000000 --- a/src/components/IconDesktopWindows.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDesktopWindows: React.FC = (props) => ( - - - - -) - -export { IconDesktopWindows } diff --git a/src/components/IconDetails.tsx b/src/components/IconDetails.tsx deleted file mode 100644 index c86a7905b..000000000 --- a/src/components/IconDetails.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDetails: React.FC = (props) => ( - - - - -) - -export { IconDetails } diff --git a/src/components/IconDeveloperBoard.tsx b/src/components/IconDeveloperBoard.tsx deleted file mode 100644 index 6ff860122..000000000 --- a/src/components/IconDeveloperBoard.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDeveloperBoard: React.FC = (props) => ( - - - - -) - -export { IconDeveloperBoard } diff --git a/src/components/IconDeveloperMode.tsx b/src/components/IconDeveloperMode.tsx deleted file mode 100644 index 5d2c4bb9c..000000000 --- a/src/components/IconDeveloperMode.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDeveloperMode: React.FC = (props) => ( - - - - -) - -export { IconDeveloperMode } diff --git a/src/components/IconDeviceHub.tsx b/src/components/IconDeviceHub.tsx deleted file mode 100644 index a5abc59b2..000000000 --- a/src/components/IconDeviceHub.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDeviceHub: React.FC = (props) => ( - - - - - -) - -export { IconDeviceHub } diff --git a/src/components/IconDeviceUnknown.tsx b/src/components/IconDeviceUnknown.tsx deleted file mode 100644 index a3a2be174..000000000 --- a/src/components/IconDeviceUnknown.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDeviceUnknown: React.FC = (props) => ( - - - - -) - -export { IconDeviceUnknown } diff --git a/src/components/IconDevices.tsx b/src/components/IconDevices.tsx deleted file mode 100644 index 45051d468..000000000 --- a/src/components/IconDevices.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDevices: React.FC = (props) => ( - - - - -) - -export { IconDevices } diff --git a/src/components/IconDevicesOther.tsx b/src/components/IconDevicesOther.tsx deleted file mode 100644 index 1730dfbe9..000000000 --- a/src/components/IconDevicesOther.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDevicesOther: React.FC = (props) => ( - - - - -) - -export { IconDevicesOther } diff --git a/src/components/IconDialerSip.tsx b/src/components/IconDialerSip.tsx deleted file mode 100644 index 1d5be037b..000000000 --- a/src/components/IconDialerSip.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDialerSip: React.FC = (props) => ( - - - - -) - -export { IconDialerSip } diff --git a/src/components/IconDialpad.tsx b/src/components/IconDialpad.tsx deleted file mode 100644 index 54c826da6..000000000 --- a/src/components/IconDialpad.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDialpad: React.FC = (props) => ( - - - - -) - -export { IconDialpad } diff --git a/src/components/IconDirections.tsx b/src/components/IconDirections.tsx deleted file mode 100644 index 6c0633ab1..000000000 --- a/src/components/IconDirections.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDirections: React.FC = (props) => ( - - - - -) - -export { IconDirections } diff --git a/src/components/IconDirectionsBike.tsx b/src/components/IconDirectionsBike.tsx deleted file mode 100644 index d8b255ab2..000000000 --- a/src/components/IconDirectionsBike.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDirectionsBike: React.FC = (props) => ( - - - - -) - -export { IconDirectionsBike } diff --git a/src/components/IconDirectionsBoat.tsx b/src/components/IconDirectionsBoat.tsx deleted file mode 100644 index 4e3acdc90..000000000 --- a/src/components/IconDirectionsBoat.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDirectionsBoat: React.FC = (props) => ( - - - - -) - -export { IconDirectionsBoat } diff --git a/src/components/IconDirectionsBus.tsx b/src/components/IconDirectionsBus.tsx deleted file mode 100644 index b6ba1ebab..000000000 --- a/src/components/IconDirectionsBus.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDirectionsBus: React.FC = (props) => ( - - - - -) - -export { IconDirectionsBus } diff --git a/src/components/IconDirectionsCar.tsx b/src/components/IconDirectionsCar.tsx deleted file mode 100644 index 389c540bf..000000000 --- a/src/components/IconDirectionsCar.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDirectionsCar: React.FC = (props) => ( - - - - -) - -export { IconDirectionsCar } diff --git a/src/components/IconDirectionsOff.tsx b/src/components/IconDirectionsOff.tsx deleted file mode 100644 index c2d703e02..000000000 --- a/src/components/IconDirectionsOff.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDirectionsOff: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconDirectionsOff } diff --git a/src/components/IconDirectionsRailway.tsx b/src/components/IconDirectionsRailway.tsx deleted file mode 100644 index 805c88814..000000000 --- a/src/components/IconDirectionsRailway.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDirectionsRailway: React.FC = (props) => ( - - - - -) - -export { IconDirectionsRailway } diff --git a/src/components/IconDirectionsRun.tsx b/src/components/IconDirectionsRun.tsx deleted file mode 100644 index 49044257a..000000000 --- a/src/components/IconDirectionsRun.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDirectionsRun: React.FC = (props) => ( - - - - -) - -export { IconDirectionsRun } diff --git a/src/components/IconDirectionsSubway.tsx b/src/components/IconDirectionsSubway.tsx deleted file mode 100644 index 57b8032ca..000000000 --- a/src/components/IconDirectionsSubway.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDirectionsSubway: React.FC = (props) => ( - - - - -) - -export { IconDirectionsSubway } diff --git a/src/components/IconDirectionsTransit.tsx b/src/components/IconDirectionsTransit.tsx deleted file mode 100644 index 3bf44576c..000000000 --- a/src/components/IconDirectionsTransit.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDirectionsTransit: React.FC = (props) => ( - - - - -) - -export { IconDirectionsTransit } diff --git a/src/components/IconDirectionsWalk.tsx b/src/components/IconDirectionsWalk.tsx deleted file mode 100644 index 0e92334b3..000000000 --- a/src/components/IconDirectionsWalk.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDirectionsWalk: React.FC = (props) => ( - - - - -) - -export { IconDirectionsWalk } diff --git a/src/components/IconDisabledByDefault.tsx b/src/components/IconDisabledByDefault.tsx deleted file mode 100644 index 4a22cb6c8..000000000 --- a/src/components/IconDisabledByDefault.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDisabledByDefault: React.FC = (props) => ( - - - - -) - -export { IconDisabledByDefault } diff --git a/src/components/IconDiscFull.tsx b/src/components/IconDiscFull.tsx deleted file mode 100644 index 17d0c1c07..000000000 --- a/src/components/IconDiscFull.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDiscFull: React.FC = (props) => ( - - - - -) - -export { IconDiscFull } diff --git a/src/components/IconDns.tsx b/src/components/IconDns.tsx deleted file mode 100644 index c7226dfa9..000000000 --- a/src/components/IconDns.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDns: React.FC = (props) => ( - - - - -) - -export { IconDns } diff --git a/src/components/IconDoNotStep.tsx b/src/components/IconDoNotStep.tsx deleted file mode 100644 index c6ed4c5f2..000000000 --- a/src/components/IconDoNotStep.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDoNotStep: React.FC = (props) => ( - - - - - - -) - -export { IconDoNotStep } diff --git a/src/components/IconDoNotTouch.tsx b/src/components/IconDoNotTouch.tsx deleted file mode 100644 index 16bba8eec..000000000 --- a/src/components/IconDoNotTouch.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDoNotTouch: React.FC = (props) => ( - - - - - - -) - -export { IconDoNotTouch } diff --git a/src/components/IconDock.tsx b/src/components/IconDock.tsx deleted file mode 100644 index 98fd37e4c..000000000 --- a/src/components/IconDock.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDock: React.FC = (props) => ( - - - - -) - -export { IconDock } diff --git a/src/components/IconDomain.tsx b/src/components/IconDomain.tsx deleted file mode 100644 index d78a58b14..000000000 --- a/src/components/IconDomain.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDomain: React.FC = (props) => ( - - - - - - -) - -export { IconDomain } diff --git a/src/components/IconDomainDisabled.tsx b/src/components/IconDomainDisabled.tsx deleted file mode 100644 index 8da797814..000000000 --- a/src/components/IconDomainDisabled.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDomainDisabled: React.FC = (props) => ( - - - - -) - -export { IconDomainDisabled } diff --git a/src/components/IconDomainVerification.tsx b/src/components/IconDomainVerification.tsx deleted file mode 100644 index f153d5596..000000000 --- a/src/components/IconDomainVerification.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDomainVerification: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconDomainVerification } diff --git a/src/components/IconDone.tsx b/src/components/IconDone.tsx deleted file mode 100644 index 9b65e9b3d..000000000 --- a/src/components/IconDone.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDone: React.FC = (props) => ( - - - - -) - -export { IconDone } diff --git a/src/components/IconDoneAll.tsx b/src/components/IconDoneAll.tsx deleted file mode 100644 index 63c40658e..000000000 --- a/src/components/IconDoneAll.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDoneAll: React.FC = (props) => ( - - - - -) - -export { IconDoneAll } diff --git a/src/components/IconDoneOutline.tsx b/src/components/IconDoneOutline.tsx deleted file mode 100644 index 0f220b56b..000000000 --- a/src/components/IconDoneOutline.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDoneOutline: React.FC = (props) => ( - - - - -) - -export { IconDoneOutline } diff --git a/src/components/IconDonutLarge.tsx b/src/components/IconDonutLarge.tsx deleted file mode 100644 index be3bce19f..000000000 --- a/src/components/IconDonutLarge.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDonutLarge: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconDonutLarge } diff --git a/src/components/IconDonutSmall.tsx b/src/components/IconDonutSmall.tsx deleted file mode 100644 index 69a541e52..000000000 --- a/src/components/IconDonutSmall.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDonutSmall: React.FC = (props) => ( - - - - -) - -export { IconDonutSmall } diff --git a/src/components/IconDoubleArrow.tsx b/src/components/IconDoubleArrow.tsx deleted file mode 100644 index 1850bc670..000000000 --- a/src/components/IconDoubleArrow.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDoubleArrow: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconDoubleArrow } diff --git a/src/components/IconDrafts.tsx b/src/components/IconDrafts.tsx deleted file mode 100644 index 50c14ef59..000000000 --- a/src/components/IconDrafts.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDrafts: React.FC = (props) => ( - - - - -) - -export { IconDrafts } diff --git a/src/components/IconDragHandle.tsx b/src/components/IconDragHandle.tsx deleted file mode 100644 index 7b21e0a42..000000000 --- a/src/components/IconDragHandle.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDragHandle: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconDragHandle } diff --git a/src/components/IconDragIndicator.tsx b/src/components/IconDragIndicator.tsx deleted file mode 100644 index e011041c3..000000000 --- a/src/components/IconDragIndicator.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDragIndicator: React.FC = (props) => ( - - - - -) - -export { IconDragIndicator } diff --git a/src/components/IconDriveEta.tsx b/src/components/IconDriveEta.tsx deleted file mode 100644 index c89e9440c..000000000 --- a/src/components/IconDriveEta.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDriveEta: React.FC = (props) => ( - - - - -) - -export { IconDriveEta } diff --git a/src/components/IconDry.tsx b/src/components/IconDry.tsx deleted file mode 100644 index a788e8466..000000000 --- a/src/components/IconDry.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDry: React.FC = (props) => ( - - - - - - -) - -export { IconDry } diff --git a/src/components/IconDuo.tsx b/src/components/IconDuo.tsx deleted file mode 100644 index a8e3a8d9a..000000000 --- a/src/components/IconDuo.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDuo: React.FC = (props) => ( - - - - -) - -export { IconDuo } diff --git a/src/components/IconDvr.tsx b/src/components/IconDvr.tsx deleted file mode 100644 index d3faf4886..000000000 --- a/src/components/IconDvr.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDvr: React.FC = (props) => ( - - - - -) - -export { IconDvr } diff --git a/src/components/IconDynamicFeed.tsx b/src/components/IconDynamicFeed.tsx deleted file mode 100644 index 925c372a9..000000000 --- a/src/components/IconDynamicFeed.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDynamicFeed: React.FC = (props) => ( - - - - - - - - - - - - - - - - - - - - - -) - -export { IconDynamicFeed } diff --git a/src/components/IconDynamicForm.tsx b/src/components/IconDynamicForm.tsx deleted file mode 100644 index cc4cb8c77..000000000 --- a/src/components/IconDynamicForm.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconDynamicForm: React.FC = (props) => ( - - - - - - -) - -export { IconDynamicForm } diff --git a/src/components/IconEast.tsx b/src/components/IconEast.tsx deleted file mode 100644 index 8b9494115..000000000 --- a/src/components/IconEast.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEast: React.FC = (props) => ( - - - - -) - -export { IconEast } diff --git a/src/components/IconEco.tsx b/src/components/IconEco.tsx deleted file mode 100644 index 0536e7d14..000000000 --- a/src/components/IconEco.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEco: React.FC = (props) => ( - - - - - - - - - - -) - -export { IconEco } diff --git a/src/components/IconEdit.tsx b/src/components/IconEdit.tsx deleted file mode 100644 index 79909b9c9..000000000 --- a/src/components/IconEdit.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEdit: React.FC = (props) => ( - - - - -) - -export { IconEdit } diff --git a/src/components/IconEditAttributes.tsx b/src/components/IconEditAttributes.tsx deleted file mode 100644 index 4a5873cfa..000000000 --- a/src/components/IconEditAttributes.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEditAttributes: React.FC = (props) => ( - - - - -) - -export { IconEditAttributes } diff --git a/src/components/IconEditLocation.tsx b/src/components/IconEditLocation.tsx deleted file mode 100644 index 43267a4ae..000000000 --- a/src/components/IconEditLocation.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEditLocation: React.FC = (props) => ( - - - - -) - -export { IconEditLocation } diff --git a/src/components/IconEditRoad.tsx b/src/components/IconEditRoad.tsx deleted file mode 100644 index 091caa11a..000000000 --- a/src/components/IconEditRoad.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEditRoad: React.FC = (props) => ( - - - - - - - - - - - - - - - -) - -export { IconEditRoad } diff --git a/src/components/IconEject.tsx b/src/components/IconEject.tsx deleted file mode 100644 index 6ec5e93bd..000000000 --- a/src/components/IconEject.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEject: React.FC = (props) => ( - - - - -) - -export { IconEject } diff --git a/src/components/IconElderly.tsx b/src/components/IconElderly.tsx deleted file mode 100644 index 16c1dcc90..000000000 --- a/src/components/IconElderly.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconElderly: React.FC = (props) => ( - - - - -) - -export { IconElderly } diff --git a/src/components/IconElectricBike.tsx b/src/components/IconElectricBike.tsx deleted file mode 100644 index 61ae8dc5e..000000000 --- a/src/components/IconElectricBike.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconElectricBike: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconElectricBike } diff --git a/src/components/IconElectricCar.tsx b/src/components/IconElectricCar.tsx deleted file mode 100644 index 85331a882..000000000 --- a/src/components/IconElectricCar.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconElectricCar: React.FC = (props) => ( - - - - - - - - - -) - -export { IconElectricCar } diff --git a/src/components/IconElectricMoped.tsx b/src/components/IconElectricMoped.tsx deleted file mode 100644 index f5efb2980..000000000 --- a/src/components/IconElectricMoped.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconElectricMoped: React.FC = (props) => ( - - - - - - - - - - - - - -) - -export { IconElectricMoped } diff --git a/src/components/IconElectricScooter.tsx b/src/components/IconElectricScooter.tsx deleted file mode 100644 index 8fae58102..000000000 --- a/src/components/IconElectricScooter.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconElectricScooter: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconElectricScooter } diff --git a/src/components/IconElectricalServices.tsx b/src/components/IconElectricalServices.tsx deleted file mode 100644 index 367ad7387..000000000 --- a/src/components/IconElectricalServices.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconElectricalServices: React.FC = (props) => ( - - - - - - - - - - - - - -) - -export { IconElectricalServices } diff --git a/src/components/IconElevator.tsx b/src/components/IconElevator.tsx deleted file mode 100644 index 257ae0919..000000000 --- a/src/components/IconElevator.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconElevator: React.FC = (props) => ( - - - - - - -) - -export { IconElevator } diff --git a/src/components/IconEmail.tsx b/src/components/IconEmail.tsx deleted file mode 100644 index e8cbfc96a..000000000 --- a/src/components/IconEmail.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEmail: React.FC = (props) => ( - - - - -) - -export { IconEmail } diff --git a/src/components/IconEmojiEmotions.tsx b/src/components/IconEmojiEmotions.tsx deleted file mode 100644 index dea0707d3..000000000 --- a/src/components/IconEmojiEmotions.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEmojiEmotions: React.FC = (props) => ( - - - - - - - - - -) - -export { IconEmojiEmotions } diff --git a/src/components/IconEmojiEvents.tsx b/src/components/IconEmojiEvents.tsx deleted file mode 100644 index 30ff61000..000000000 --- a/src/components/IconEmojiEvents.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEmojiEvents: React.FC = (props) => ( - - - - -) - -export { IconEmojiEvents } diff --git a/src/components/IconEmojiFlags.tsx b/src/components/IconEmojiFlags.tsx deleted file mode 100644 index c2cc15a22..000000000 --- a/src/components/IconEmojiFlags.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEmojiFlags: React.FC = (props) => ( - - - - - - - - - -) - -export { IconEmojiFlags } diff --git a/src/components/IconEmojiFoodBeverage.tsx b/src/components/IconEmojiFoodBeverage.tsx deleted file mode 100644 index c16c4950b..000000000 --- a/src/components/IconEmojiFoodBeverage.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEmojiFoodBeverage: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconEmojiFoodBeverage } diff --git a/src/components/IconEmojiNature.tsx b/src/components/IconEmojiNature.tsx deleted file mode 100644 index 9e8d5dcc5..000000000 --- a/src/components/IconEmojiNature.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEmojiNature: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconEmojiNature } diff --git a/src/components/IconEmojiObjects.tsx b/src/components/IconEmojiObjects.tsx deleted file mode 100644 index 3e3d2880e..000000000 --- a/src/components/IconEmojiObjects.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEmojiObjects: React.FC = (props) => ( - - - - - - - - - -) - -export { IconEmojiObjects } diff --git a/src/components/IconEmojiPeople.tsx b/src/components/IconEmojiPeople.tsx deleted file mode 100644 index e0f95c67e..000000000 --- a/src/components/IconEmojiPeople.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEmojiPeople: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconEmojiPeople } diff --git a/src/components/IconEmojiSymbols.tsx b/src/components/IconEmojiSymbols.tsx deleted file mode 100644 index 5a8bec2ab..000000000 --- a/src/components/IconEmojiSymbols.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEmojiSymbols: React.FC = (props) => ( - - - - - - - - - - - - - - - - - -) - -export { IconEmojiSymbols } diff --git a/src/components/IconEmojiTransportation.tsx b/src/components/IconEmojiTransportation.tsx deleted file mode 100644 index 05479ffb3..000000000 --- a/src/components/IconEmojiTransportation.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEmojiTransportation: React.FC = (props) => ( - - - - - - - - - - - - - - - - -) - -export { IconEmojiTransportation } diff --git a/src/components/IconEngineering.tsx b/src/components/IconEngineering.tsx deleted file mode 100644 index 7363832aa..000000000 --- a/src/components/IconEngineering.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEngineering: React.FC = (props) => ( - - - - - - - - - - - - - - -) - -export { IconEngineering } diff --git a/src/components/IconEnhancedEncryption.tsx b/src/components/IconEnhancedEncryption.tsx deleted file mode 100644 index 2935f3b5d..000000000 --- a/src/components/IconEnhancedEncryption.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEnhancedEncryption: React.FC = (props) => ( - - - - - -) - -export { IconEnhancedEncryption } diff --git a/src/components/IconEqualizer.tsx b/src/components/IconEqualizer.tsx deleted file mode 100644 index c04ce05e9..000000000 --- a/src/components/IconEqualizer.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEqualizer: React.FC = (props) => ( - - - - -) - -export { IconEqualizer } diff --git a/src/components/IconError.tsx b/src/components/IconError.tsx deleted file mode 100644 index c2f5919d0..000000000 --- a/src/components/IconError.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconError: React.FC = (props) => ( - - - - -) - -export { IconError } diff --git a/src/components/IconErrorOutline.tsx b/src/components/IconErrorOutline.tsx deleted file mode 100644 index 755c8429a..000000000 --- a/src/components/IconErrorOutline.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconErrorOutline: React.FC = (props) => ( - - - - -) - -export { IconErrorOutline } diff --git a/src/components/IconEscalator.tsx b/src/components/IconEscalator.tsx deleted file mode 100644 index 75b2354d8..000000000 --- a/src/components/IconEscalator.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEscalator: React.FC = (props) => ( - - - - - - - - -) - -export { IconEscalator } diff --git a/src/components/IconEscalatorWarning.tsx b/src/components/IconEscalatorWarning.tsx deleted file mode 100644 index 48fc69aba..000000000 --- a/src/components/IconEscalatorWarning.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEscalatorWarning: React.FC = (props) => ( - - - - - - -) - -export { IconEscalatorWarning } diff --git a/src/components/IconEuro.tsx b/src/components/IconEuro.tsx deleted file mode 100644 index 8dbf487e4..000000000 --- a/src/components/IconEuro.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEuro: React.FC = (props) => ( - - - - - - - - - -) - -export { IconEuro } diff --git a/src/components/IconEuroSymbol.tsx b/src/components/IconEuroSymbol.tsx deleted file mode 100644 index 393f928de..000000000 --- a/src/components/IconEuroSymbol.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEuroSymbol: React.FC = (props) => ( - - - - -) - -export { IconEuroSymbol } diff --git a/src/components/IconEvStation.tsx b/src/components/IconEvStation.tsx deleted file mode 100644 index ea960200a..000000000 --- a/src/components/IconEvStation.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEvStation: React.FC = (props) => ( - - - - -) - -export { IconEvStation } diff --git a/src/components/IconEvent.tsx b/src/components/IconEvent.tsx deleted file mode 100644 index 634086e7b..000000000 --- a/src/components/IconEvent.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEvent: React.FC = (props) => ( - - - - -) - -export { IconEvent } diff --git a/src/components/IconEventAvailable.tsx b/src/components/IconEventAvailable.tsx deleted file mode 100644 index 074dd3ba5..000000000 --- a/src/components/IconEventAvailable.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEventAvailable: React.FC = (props) => ( - - - - -) - -export { IconEventAvailable } diff --git a/src/components/IconEventBusy.tsx b/src/components/IconEventBusy.tsx deleted file mode 100644 index b833dcc6e..000000000 --- a/src/components/IconEventBusy.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEventBusy: React.FC = (props) => ( - - - - -) - -export { IconEventBusy } diff --git a/src/components/IconEventNote.tsx b/src/components/IconEventNote.tsx deleted file mode 100644 index 1fe069b3c..000000000 --- a/src/components/IconEventNote.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEventNote: React.FC = (props) => ( - - - - -) - -export { IconEventNote } diff --git a/src/components/IconEventSeat.tsx b/src/components/IconEventSeat.tsx deleted file mode 100644 index b108ef439..000000000 --- a/src/components/IconEventSeat.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconEventSeat: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconEventSeat } diff --git a/src/components/IconExitToApp.tsx b/src/components/IconExitToApp.tsx deleted file mode 100644 index 52f2c3887..000000000 --- a/src/components/IconExitToApp.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconExitToApp: React.FC = (props) => ( - - - - -) - -export { IconExitToApp } diff --git a/src/components/IconExpandLess.tsx b/src/components/IconExpandLess.tsx deleted file mode 100644 index 65bb4c0ce..000000000 --- a/src/components/IconExpandLess.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconExpandLess: React.FC = (props) => ( - - - - -) - -export { IconExpandLess } diff --git a/src/components/IconExpandMore.tsx b/src/components/IconExpandMore.tsx deleted file mode 100644 index fc533173d..000000000 --- a/src/components/IconExpandMore.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconExpandMore: React.FC = (props) => ( - - - - -) - -export { IconExpandMore } diff --git a/src/components/IconExplicit.tsx b/src/components/IconExplicit.tsx deleted file mode 100644 index 965bbc49d..000000000 --- a/src/components/IconExplicit.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconExplicit: React.FC = (props) => ( - - - - -) - -export { IconExplicit } diff --git a/src/components/IconExplore.tsx b/src/components/IconExplore.tsx deleted file mode 100644 index df706e5c0..000000000 --- a/src/components/IconExplore.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconExplore: React.FC = (props) => ( - - - - -) - -export { IconExplore } diff --git a/src/components/IconExploreOff.tsx b/src/components/IconExploreOff.tsx deleted file mode 100644 index 7b254a88d..000000000 --- a/src/components/IconExploreOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconExploreOff: React.FC = (props) => ( - - - - -) - -export { IconExploreOff } diff --git a/src/components/IconExposure.tsx b/src/components/IconExposure.tsx deleted file mode 100644 index 4ce1d329b..000000000 --- a/src/components/IconExposure.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconExposure: React.FC = (props) => ( - - - - -) - -export { IconExposure } diff --git a/src/components/IconExposureNeg1.tsx b/src/components/IconExposureNeg1.tsx deleted file mode 100644 index 768b14106..000000000 --- a/src/components/IconExposureNeg1.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconExposureNeg1: React.FC = (props) => ( - - - - -) - -export { IconExposureNeg1 } diff --git a/src/components/IconExposureNeg2.tsx b/src/components/IconExposureNeg2.tsx deleted file mode 100644 index f8c8a64bb..000000000 --- a/src/components/IconExposureNeg2.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconExposureNeg2: React.FC = (props) => ( - - - - -) - -export { IconExposureNeg2 } diff --git a/src/components/IconExposurePlus1.tsx b/src/components/IconExposurePlus1.tsx deleted file mode 100644 index 23ad0dc3e..000000000 --- a/src/components/IconExposurePlus1.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconExposurePlus1: React.FC = (props) => ( - - - - -) - -export { IconExposurePlus1 } diff --git a/src/components/IconExposurePlus2.tsx b/src/components/IconExposurePlus2.tsx deleted file mode 100644 index 0864771a6..000000000 --- a/src/components/IconExposurePlus2.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconExposurePlus2: React.FC = (props) => ( - - - - -) - -export { IconExposurePlus2 } diff --git a/src/components/IconExposureZero.tsx b/src/components/IconExposureZero.tsx deleted file mode 100644 index b85010e6e..000000000 --- a/src/components/IconExposureZero.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconExposureZero: React.FC = (props) => ( - - - - -) - -export { IconExposureZero } diff --git a/src/components/IconExtension.tsx b/src/components/IconExtension.tsx deleted file mode 100644 index 2485eedd2..000000000 --- a/src/components/IconExtension.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconExtension: React.FC = (props) => ( - - - - -) - -export { IconExtension } diff --git a/src/components/IconFace.tsx b/src/components/IconFace.tsx deleted file mode 100644 index d6a91c9f0..000000000 --- a/src/components/IconFace.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFace: React.FC = (props) => ( - - - - -) - -export { IconFace } diff --git a/src/components/IconFacebook.tsx b/src/components/IconFacebook.tsx deleted file mode 100644 index 176e9395a..000000000 --- a/src/components/IconFacebook.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFacebook: React.FC = (props) => ( - - - - -) - -export { IconFacebook } diff --git a/src/components/IconFactCheck.tsx b/src/components/IconFactCheck.tsx deleted file mode 100644 index bc8e9fc5f..000000000 --- a/src/components/IconFactCheck.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFactCheck: React.FC = (props) => ( - - - - - - - - - - -) - -export { IconFactCheck } diff --git a/src/components/IconFamilyRestroom.tsx b/src/components/IconFamilyRestroom.tsx deleted file mode 100644 index a1fe271d4..000000000 --- a/src/components/IconFamilyRestroom.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFamilyRestroom: React.FC = (props) => ( - - - - - - -) - -export { IconFamilyRestroom } diff --git a/src/components/IconFastForward.tsx b/src/components/IconFastForward.tsx deleted file mode 100644 index 7db06f03a..000000000 --- a/src/components/IconFastForward.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFastForward: React.FC = (props) => ( - - - - -) - -export { IconFastForward } diff --git a/src/components/IconFastRewind.tsx b/src/components/IconFastRewind.tsx deleted file mode 100644 index b910f32e9..000000000 --- a/src/components/IconFastRewind.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFastRewind: React.FC = (props) => ( - - - - -) - -export { IconFastRewind } diff --git a/src/components/IconFastfood.tsx b/src/components/IconFastfood.tsx deleted file mode 100644 index 42de7a4b6..000000000 --- a/src/components/IconFastfood.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFastfood: React.FC = (props) => ( - - - - -) - -export { IconFastfood } diff --git a/src/components/IconFavorite.tsx b/src/components/IconFavorite.tsx deleted file mode 100644 index b26cc7810..000000000 --- a/src/components/IconFavorite.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFavorite: React.FC = (props) => ( - - - - -) - -export { IconFavorite } diff --git a/src/components/IconFavoriteBorder.tsx b/src/components/IconFavoriteBorder.tsx deleted file mode 100644 index 3b143ae19..000000000 --- a/src/components/IconFavoriteBorder.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFavoriteBorder: React.FC = (props) => ( - - - - -) - -export { IconFavoriteBorder } diff --git a/src/components/IconFeaturedPlayList.tsx b/src/components/IconFeaturedPlayList.tsx deleted file mode 100644 index effbe6cb1..000000000 --- a/src/components/IconFeaturedPlayList.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFeaturedPlayList: React.FC = (props) => ( - - - - -) - -export { IconFeaturedPlayList } diff --git a/src/components/IconFeaturedVideo.tsx b/src/components/IconFeaturedVideo.tsx deleted file mode 100644 index aba12f9ac..000000000 --- a/src/components/IconFeaturedVideo.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFeaturedVideo: React.FC = (props) => ( - - - - -) - -export { IconFeaturedVideo } diff --git a/src/components/IconFeedback.tsx b/src/components/IconFeedback.tsx deleted file mode 100644 index 3d2410d20..000000000 --- a/src/components/IconFeedback.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFeedback: React.FC = (props) => ( - - - - -) - -export { IconFeedback } diff --git a/src/components/IconFence.tsx b/src/components/IconFence.tsx deleted file mode 100644 index d65f710e9..000000000 --- a/src/components/IconFence.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFence: React.FC = (props) => ( - - - - - - - - -) - -export { IconFence } diff --git a/src/components/IconFiberDvr.tsx b/src/components/IconFiberDvr.tsx deleted file mode 100644 index 73e8c79cc..000000000 --- a/src/components/IconFiberDvr.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFiberDvr: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconFiberDvr } diff --git a/src/components/IconFiberManualRecord.tsx b/src/components/IconFiberManualRecord.tsx deleted file mode 100644 index c6e82fc80..000000000 --- a/src/components/IconFiberManualRecord.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFiberManualRecord: React.FC = (props) => ( - - - - -) - -export { IconFiberManualRecord } diff --git a/src/components/IconFiberNew.tsx b/src/components/IconFiberNew.tsx deleted file mode 100644 index 1f9bcbffd..000000000 --- a/src/components/IconFiberNew.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFiberNew: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconFiberNew } diff --git a/src/components/IconFiberPin.tsx b/src/components/IconFiberPin.tsx deleted file mode 100644 index 1681e37fe..000000000 --- a/src/components/IconFiberPin.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFiberPin: React.FC = (props) => ( - - - - -) - -export { IconFiberPin } diff --git a/src/components/IconFiberSmartRecord.tsx b/src/components/IconFiberSmartRecord.tsx deleted file mode 100644 index f902bbeb2..000000000 --- a/src/components/IconFiberSmartRecord.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFiberSmartRecord: React.FC = (props) => ( - - - - - - - -) - -export { IconFiberSmartRecord } diff --git a/src/components/IconFileCopy.tsx b/src/components/IconFileCopy.tsx deleted file mode 100644 index 058606a27..000000000 --- a/src/components/IconFileCopy.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFileCopy: React.FC = (props) => ( - - - - -) - -export { IconFileCopy } diff --git a/src/components/IconFilter.tsx b/src/components/IconFilter.tsx deleted file mode 100644 index f31b74147..000000000 --- a/src/components/IconFilter.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilter: React.FC = (props) => ( - - - - -) - -export { IconFilter } diff --git a/src/components/IconFilter1.tsx b/src/components/IconFilter1.tsx deleted file mode 100644 index 835251a82..000000000 --- a/src/components/IconFilter1.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilter1: React.FC = (props) => ( - - - - -) - -export { IconFilter1 } diff --git a/src/components/IconFilter2.tsx b/src/components/IconFilter2.tsx deleted file mode 100644 index ade9457a7..000000000 --- a/src/components/IconFilter2.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilter2: React.FC = (props) => ( - - - - -) - -export { IconFilter2 } diff --git a/src/components/IconFilter3.tsx b/src/components/IconFilter3.tsx deleted file mode 100644 index 70de994bc..000000000 --- a/src/components/IconFilter3.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilter3: React.FC = (props) => ( - - - - -) - -export { IconFilter3 } diff --git a/src/components/IconFilter4.tsx b/src/components/IconFilter4.tsx deleted file mode 100644 index b7140411e..000000000 --- a/src/components/IconFilter4.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilter4: React.FC = (props) => ( - - - - -) - -export { IconFilter4 } diff --git a/src/components/IconFilter5.tsx b/src/components/IconFilter5.tsx deleted file mode 100644 index f655cfd51..000000000 --- a/src/components/IconFilter5.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilter5: React.FC = (props) => ( - - - - -) - -export { IconFilter5 } diff --git a/src/components/IconFilter6.tsx b/src/components/IconFilter6.tsx deleted file mode 100644 index f1aefeb1a..000000000 --- a/src/components/IconFilter6.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilter6: React.FC = (props) => ( - - - - -) - -export { IconFilter6 } diff --git a/src/components/IconFilter7.tsx b/src/components/IconFilter7.tsx deleted file mode 100644 index 46e7c3834..000000000 --- a/src/components/IconFilter7.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilter7: React.FC = (props) => ( - - - - -) - -export { IconFilter7 } diff --git a/src/components/IconFilter8.tsx b/src/components/IconFilter8.tsx deleted file mode 100644 index ecb8c7417..000000000 --- a/src/components/IconFilter8.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilter8: React.FC = (props) => ( - - - - -) - -export { IconFilter8 } diff --git a/src/components/IconFilter9.tsx b/src/components/IconFilter9.tsx deleted file mode 100644 index 64a02811e..000000000 --- a/src/components/IconFilter9.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilter9: React.FC = (props) => ( - - - - -) - -export { IconFilter9 } diff --git a/src/components/IconFilter9Plus.tsx b/src/components/IconFilter9Plus.tsx deleted file mode 100644 index 54c5321f2..000000000 --- a/src/components/IconFilter9Plus.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilter9Plus: React.FC = (props) => ( - - - - -) - -export { IconFilter9Plus } diff --git a/src/components/IconFilterAlt.tsx b/src/components/IconFilterAlt.tsx deleted file mode 100644 index 2910b201f..000000000 --- a/src/components/IconFilterAlt.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilterAlt: React.FC = (props) => ( - - - - - - - -) - -export { IconFilterAlt } diff --git a/src/components/IconFilterBAndW.tsx b/src/components/IconFilterBAndW.tsx deleted file mode 100644 index d83d6939f..000000000 --- a/src/components/IconFilterBAndW.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilterBAndW: React.FC = (props) => ( - - - - -) - -export { IconFilterBAndW } diff --git a/src/components/IconFilterCenterFocus.tsx b/src/components/IconFilterCenterFocus.tsx deleted file mode 100644 index 194db7364..000000000 --- a/src/components/IconFilterCenterFocus.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilterCenterFocus: React.FC = (props) => ( - - - - -) - -export { IconFilterCenterFocus } diff --git a/src/components/IconFilterDrama.tsx b/src/components/IconFilterDrama.tsx deleted file mode 100644 index 60f74de70..000000000 --- a/src/components/IconFilterDrama.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilterDrama: React.FC = (props) => ( - - - - -) - -export { IconFilterDrama } diff --git a/src/components/IconFilterFrames.tsx b/src/components/IconFilterFrames.tsx deleted file mode 100644 index 8685bae5d..000000000 --- a/src/components/IconFilterFrames.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilterFrames: React.FC = (props) => ( - - - - -) - -export { IconFilterFrames } diff --git a/src/components/IconFilterHdr.tsx b/src/components/IconFilterHdr.tsx deleted file mode 100644 index 28cc07aec..000000000 --- a/src/components/IconFilterHdr.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilterHdr: React.FC = (props) => ( - - - - -) - -export { IconFilterHdr } diff --git a/src/components/IconFilterList.tsx b/src/components/IconFilterList.tsx deleted file mode 100644 index b25f8b2bc..000000000 --- a/src/components/IconFilterList.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilterList: React.FC = (props) => ( - - - - -) - -export { IconFilterList } diff --git a/src/components/IconFilterNone.tsx b/src/components/IconFilterNone.tsx deleted file mode 100644 index 246796de5..000000000 --- a/src/components/IconFilterNone.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilterNone: React.FC = (props) => ( - - - - -) - -export { IconFilterNone } diff --git a/src/components/IconFilterTiltShift.tsx b/src/components/IconFilterTiltShift.tsx deleted file mode 100644 index 3d75084d0..000000000 --- a/src/components/IconFilterTiltShift.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilterTiltShift: React.FC = (props) => ( - - - - -) - -export { IconFilterTiltShift } diff --git a/src/components/IconFilterVintage.tsx b/src/components/IconFilterVintage.tsx deleted file mode 100644 index 981a1fcae..000000000 --- a/src/components/IconFilterVintage.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFilterVintage: React.FC = (props) => ( - - - - -) - -export { IconFilterVintage } diff --git a/src/components/IconFindInPage.tsx b/src/components/IconFindInPage.tsx deleted file mode 100644 index 37ff9817f..000000000 --- a/src/components/IconFindInPage.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFindInPage: React.FC = (props) => ( - - - - -) - -export { IconFindInPage } diff --git a/src/components/IconFindReplace.tsx b/src/components/IconFindReplace.tsx deleted file mode 100644 index 9788dc6b1..000000000 --- a/src/components/IconFindReplace.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFindReplace: React.FC = (props) => ( - - - - -) - -export { IconFindReplace } diff --git a/src/components/IconFingerprint.tsx b/src/components/IconFingerprint.tsx deleted file mode 100644 index 8a4fba4a2..000000000 --- a/src/components/IconFingerprint.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFingerprint: React.FC = (props) => ( - - - - -) - -export { IconFingerprint } diff --git a/src/components/IconFireExtinguisher.tsx b/src/components/IconFireExtinguisher.tsx deleted file mode 100644 index 14b574ccb..000000000 --- a/src/components/IconFireExtinguisher.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFireExtinguisher: React.FC = (props) => ( - - - - - - -) - -export { IconFireExtinguisher } diff --git a/src/components/IconFireplace.tsx b/src/components/IconFireplace.tsx deleted file mode 100644 index 4386021a3..000000000 --- a/src/components/IconFireplace.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFireplace: React.FC = (props) => ( - - - - - - - - -) - -export { IconFireplace } diff --git a/src/components/IconFirstPage.tsx b/src/components/IconFirstPage.tsx deleted file mode 100644 index c019bdf94..000000000 --- a/src/components/IconFirstPage.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFirstPage: React.FC = (props) => ( - - - - -) - -export { IconFirstPage } diff --git a/src/components/IconFitnessCenter.tsx b/src/components/IconFitnessCenter.tsx deleted file mode 100644 index b0fa6c3cf..000000000 --- a/src/components/IconFitnessCenter.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFitnessCenter: React.FC = (props) => ( - - - - -) - -export { IconFitnessCenter } diff --git a/src/components/IconFlag.tsx b/src/components/IconFlag.tsx deleted file mode 100644 index 92759bcb7..000000000 --- a/src/components/IconFlag.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFlag: React.FC = (props) => ( - - - - -) - -export { IconFlag } diff --git a/src/components/IconFlaky.tsx b/src/components/IconFlaky.tsx deleted file mode 100644 index 083ca23ff..000000000 --- a/src/components/IconFlaky.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFlaky: React.FC = (props) => ( - - - - - - - - -) - -export { IconFlaky } diff --git a/src/components/IconFlare.tsx b/src/components/IconFlare.tsx deleted file mode 100644 index 2454fae2d..000000000 --- a/src/components/IconFlare.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFlare: React.FC = (props) => ( - - - - -) - -export { IconFlare } diff --git a/src/components/IconFlashAuto.tsx b/src/components/IconFlashAuto.tsx deleted file mode 100644 index ce1b15adb..000000000 --- a/src/components/IconFlashAuto.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFlashAuto: React.FC = (props) => ( - - - - -) - -export { IconFlashAuto } diff --git a/src/components/IconFlashOff.tsx b/src/components/IconFlashOff.tsx deleted file mode 100644 index 6f3b734e6..000000000 --- a/src/components/IconFlashOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFlashOff: React.FC = (props) => ( - - - - -) - -export { IconFlashOff } diff --git a/src/components/IconFlashOn.tsx b/src/components/IconFlashOn.tsx deleted file mode 100644 index 291145be7..000000000 --- a/src/components/IconFlashOn.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFlashOn: React.FC = (props) => ( - - - - -) - -export { IconFlashOn } diff --git a/src/components/IconFlight.tsx b/src/components/IconFlight.tsx deleted file mode 100644 index 66bac3c0b..000000000 --- a/src/components/IconFlight.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFlight: React.FC = (props) => ( - - - - -) - -export { IconFlight } diff --git a/src/components/IconFlightLand.tsx b/src/components/IconFlightLand.tsx deleted file mode 100644 index f533282eb..000000000 --- a/src/components/IconFlightLand.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFlightLand: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconFlightLand } diff --git a/src/components/IconFlightTakeoff.tsx b/src/components/IconFlightTakeoff.tsx deleted file mode 100644 index 128a2d6b9..000000000 --- a/src/components/IconFlightTakeoff.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFlightTakeoff: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconFlightTakeoff } diff --git a/src/components/IconFlip.tsx b/src/components/IconFlip.tsx deleted file mode 100644 index 86b1cd95f..000000000 --- a/src/components/IconFlip.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFlip: React.FC = (props) => ( - - - - -) - -export { IconFlip } diff --git a/src/components/IconFlipCameraAndroid.tsx b/src/components/IconFlipCameraAndroid.tsx deleted file mode 100644 index 0580a486b..000000000 --- a/src/components/IconFlipCameraAndroid.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFlipCameraAndroid: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconFlipCameraAndroid } diff --git a/src/components/IconFlipCameraIos.tsx b/src/components/IconFlipCameraIos.tsx deleted file mode 100644 index ed72fb168..000000000 --- a/src/components/IconFlipCameraIos.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFlipCameraIos: React.FC = (props) => ( - - - - - - - - - - -) - -export { IconFlipCameraIos } diff --git a/src/components/IconFlipToBack.tsx b/src/components/IconFlipToBack.tsx deleted file mode 100644 index 81dcf2550..000000000 --- a/src/components/IconFlipToBack.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFlipToBack: React.FC = (props) => ( - - - - -) - -export { IconFlipToBack } diff --git a/src/components/IconFlipToFront.tsx b/src/components/IconFlipToFront.tsx deleted file mode 100644 index e0ea844fc..000000000 --- a/src/components/IconFlipToFront.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFlipToFront: React.FC = (props) => ( - - - - -) - -export { IconFlipToFront } diff --git a/src/components/IconFolder.tsx b/src/components/IconFolder.tsx deleted file mode 100644 index eede167a9..000000000 --- a/src/components/IconFolder.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFolder: React.FC = (props) => ( - - - - -) - -export { IconFolder } diff --git a/src/components/IconFolderOpen.tsx b/src/components/IconFolderOpen.tsx deleted file mode 100644 index a3d8cb9f6..000000000 --- a/src/components/IconFolderOpen.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFolderOpen: React.FC = (props) => ( - - - - -) - -export { IconFolderOpen } diff --git a/src/components/IconFolderShared.tsx b/src/components/IconFolderShared.tsx deleted file mode 100644 index a9bcca617..000000000 --- a/src/components/IconFolderShared.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFolderShared: React.FC = (props) => ( - - - - -) - -export { IconFolderShared } diff --git a/src/components/IconFolderSpecial.tsx b/src/components/IconFolderSpecial.tsx deleted file mode 100644 index 9deb0bfd2..000000000 --- a/src/components/IconFolderSpecial.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFolderSpecial: React.FC = (props) => ( - - - - -) - -export { IconFolderSpecial } diff --git a/src/components/IconFollowTheSigns.tsx b/src/components/IconFollowTheSigns.tsx deleted file mode 100644 index 36a7432bf..000000000 --- a/src/components/IconFollowTheSigns.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFollowTheSigns: React.FC = (props) => ( - - - - -) - -export { IconFollowTheSigns } diff --git a/src/components/IconFontDownload.tsx b/src/components/IconFontDownload.tsx deleted file mode 100644 index b88b1f9f7..000000000 --- a/src/components/IconFontDownload.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFontDownload: React.FC = (props) => ( - - - - -) - -export { IconFontDownload } diff --git a/src/components/IconFoodBank.tsx b/src/components/IconFoodBank.tsx deleted file mode 100644 index 723364147..000000000 --- a/src/components/IconFoodBank.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFoodBank: React.FC = (props) => ( - - - - -) - -export { IconFoodBank } diff --git a/src/components/IconFormatAlignCenter.tsx b/src/components/IconFormatAlignCenter.tsx deleted file mode 100644 index 71fd6c3bb..000000000 --- a/src/components/IconFormatAlignCenter.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatAlignCenter: React.FC = (props) => ( - - - - -) - -export { IconFormatAlignCenter } diff --git a/src/components/IconFormatAlignJustify.tsx b/src/components/IconFormatAlignJustify.tsx deleted file mode 100644 index 317ba717d..000000000 --- a/src/components/IconFormatAlignJustify.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatAlignJustify: React.FC = (props) => ( - - - - -) - -export { IconFormatAlignJustify } diff --git a/src/components/IconFormatAlignLeft.tsx b/src/components/IconFormatAlignLeft.tsx deleted file mode 100644 index ec1b05e85..000000000 --- a/src/components/IconFormatAlignLeft.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatAlignLeft: React.FC = (props) => ( - - - - -) - -export { IconFormatAlignLeft } diff --git a/src/components/IconFormatAlignRight.tsx b/src/components/IconFormatAlignRight.tsx deleted file mode 100644 index 0430a4f36..000000000 --- a/src/components/IconFormatAlignRight.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatAlignRight: React.FC = (props) => ( - - - - -) - -export { IconFormatAlignRight } diff --git a/src/components/IconFormatBold.tsx b/src/components/IconFormatBold.tsx deleted file mode 100644 index e131fcea7..000000000 --- a/src/components/IconFormatBold.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatBold: React.FC = (props) => ( - - - - -) - -export { IconFormatBold } diff --git a/src/components/IconFormatClear.tsx b/src/components/IconFormatClear.tsx deleted file mode 100644 index 488976fe3..000000000 --- a/src/components/IconFormatClear.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatClear: React.FC = (props) => ( - - - - -) - -export { IconFormatClear } diff --git a/src/components/IconFormatColorReset.tsx b/src/components/IconFormatColorReset.tsx deleted file mode 100644 index 2da6b8fb6..000000000 --- a/src/components/IconFormatColorReset.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatColorReset: React.FC = (props) => ( - - - - -) - -export { IconFormatColorReset } diff --git a/src/components/IconFormatIndentDecrease.tsx b/src/components/IconFormatIndentDecrease.tsx deleted file mode 100644 index a39c6b946..000000000 --- a/src/components/IconFormatIndentDecrease.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatIndentDecrease: React.FC = (props) => ( - - - - -) - -export { IconFormatIndentDecrease } diff --git a/src/components/IconFormatIndentIncrease.tsx b/src/components/IconFormatIndentIncrease.tsx deleted file mode 100644 index 7f8c68263..000000000 --- a/src/components/IconFormatIndentIncrease.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatIndentIncrease: React.FC = (props) => ( - - - - -) - -export { IconFormatIndentIncrease } diff --git a/src/components/IconFormatItalic.tsx b/src/components/IconFormatItalic.tsx deleted file mode 100644 index 0b311d381..000000000 --- a/src/components/IconFormatItalic.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatItalic: React.FC = (props) => ( - - - - -) - -export { IconFormatItalic } diff --git a/src/components/IconFormatLineSpacing.tsx b/src/components/IconFormatLineSpacing.tsx deleted file mode 100644 index eb51bc9a8..000000000 --- a/src/components/IconFormatLineSpacing.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatLineSpacing: React.FC = (props) => ( - - - - -) - -export { IconFormatLineSpacing } diff --git a/src/components/IconFormatListBulleted.tsx b/src/components/IconFormatListBulleted.tsx deleted file mode 100644 index 46e4dcbaa..000000000 --- a/src/components/IconFormatListBulleted.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatListBulleted: React.FC = (props) => ( - - - - -) - -export { IconFormatListBulleted } diff --git a/src/components/IconFormatListNumbered.tsx b/src/components/IconFormatListNumbered.tsx deleted file mode 100644 index 10bc48cc7..000000000 --- a/src/components/IconFormatListNumbered.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatListNumbered: React.FC = (props) => ( - - - - -) - -export { IconFormatListNumbered } diff --git a/src/components/IconFormatListNumberedRtl.tsx b/src/components/IconFormatListNumberedRtl.tsx deleted file mode 100644 index 4939db07c..000000000 --- a/src/components/IconFormatListNumberedRtl.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatListNumberedRtl: React.FC = (props) => ( - - - - -) - -export { IconFormatListNumberedRtl } diff --git a/src/components/IconFormatPaint.tsx b/src/components/IconFormatPaint.tsx deleted file mode 100644 index 2644cf0e6..000000000 --- a/src/components/IconFormatPaint.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatPaint: React.FC = (props) => ( - - - - -) - -export { IconFormatPaint } diff --git a/src/components/IconFormatQuote.tsx b/src/components/IconFormatQuote.tsx deleted file mode 100644 index 80cc83273..000000000 --- a/src/components/IconFormatQuote.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatQuote: React.FC = (props) => ( - - - - -) - -export { IconFormatQuote } diff --git a/src/components/IconFormatShapes.tsx b/src/components/IconFormatShapes.tsx deleted file mode 100644 index 543f143db..000000000 --- a/src/components/IconFormatShapes.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatShapes: React.FC = (props) => ( - - - - -) - -export { IconFormatShapes } diff --git a/src/components/IconFormatSize.tsx b/src/components/IconFormatSize.tsx deleted file mode 100644 index 8f023db32..000000000 --- a/src/components/IconFormatSize.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatSize: React.FC = (props) => ( - - - - -) - -export { IconFormatSize } diff --git a/src/components/IconFormatStrikethrough.tsx b/src/components/IconFormatStrikethrough.tsx deleted file mode 100644 index 60d9e13e9..000000000 --- a/src/components/IconFormatStrikethrough.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatStrikethrough: React.FC = (props) => ( - - - - -) - -export { IconFormatStrikethrough } diff --git a/src/components/IconFormatTextdirectionLToR.tsx b/src/components/IconFormatTextdirectionLToR.tsx deleted file mode 100644 index 157389473..000000000 --- a/src/components/IconFormatTextdirectionLToR.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatTextdirectionLToR: React.FC = (props) => ( - - - - -) - -export { IconFormatTextdirectionLToR } diff --git a/src/components/IconFormatTextdirectionRToL.tsx b/src/components/IconFormatTextdirectionRToL.tsx deleted file mode 100644 index 589704ae5..000000000 --- a/src/components/IconFormatTextdirectionRToL.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatTextdirectionRToL: React.FC = (props) => ( - - - - -) - -export { IconFormatTextdirectionRToL } diff --git a/src/components/IconFormatUnderlined.tsx b/src/components/IconFormatUnderlined.tsx deleted file mode 100644 index 7dc2cb426..000000000 --- a/src/components/IconFormatUnderlined.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFormatUnderlined: React.FC = (props) => ( - - - - -) - -export { IconFormatUnderlined } diff --git a/src/components/IconForum.tsx b/src/components/IconForum.tsx deleted file mode 100644 index 79bc0a5e3..000000000 --- a/src/components/IconForum.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconForum: React.FC = (props) => ( - - - - -) - -export { IconForum } diff --git a/src/components/IconForward.tsx b/src/components/IconForward.tsx deleted file mode 100644 index b987e1994..000000000 --- a/src/components/IconForward.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconForward: React.FC = (props) => ( - - - - -) - -export { IconForward } diff --git a/src/components/IconForward10.tsx b/src/components/IconForward10.tsx deleted file mode 100644 index 12eb4a43d..000000000 --- a/src/components/IconForward10.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconForward10: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconForward10 } diff --git a/src/components/IconForward30.tsx b/src/components/IconForward30.tsx deleted file mode 100644 index a7970a137..000000000 --- a/src/components/IconForward30.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconForward30: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconForward30 } diff --git a/src/components/IconForward5.tsx b/src/components/IconForward5.tsx deleted file mode 100644 index a72a11585..000000000 --- a/src/components/IconForward5.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconForward5: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconForward5 } diff --git a/src/components/IconForwardToInbox.tsx b/src/components/IconForwardToInbox.tsx deleted file mode 100644 index 010c98e42..000000000 --- a/src/components/IconForwardToInbox.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconForwardToInbox: React.FC = (props) => ( - - - - - - -) - -export { IconForwardToInbox } diff --git a/src/components/IconFoundation.tsx b/src/components/IconFoundation.tsx deleted file mode 100644 index eb9cdd7bb..000000000 --- a/src/components/IconFoundation.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFoundation: React.FC = (props) => ( - - - - -) - -export { IconFoundation } diff --git a/src/components/IconFreeBreakfast.tsx b/src/components/IconFreeBreakfast.tsx deleted file mode 100644 index acb3119b8..000000000 --- a/src/components/IconFreeBreakfast.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFreeBreakfast: React.FC = (props) => ( - - - - -) - -export { IconFreeBreakfast } diff --git a/src/components/IconFullscreen.tsx b/src/components/IconFullscreen.tsx deleted file mode 100644 index 92e78370a..000000000 --- a/src/components/IconFullscreen.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFullscreen: React.FC = (props) => ( - - - - -) - -export { IconFullscreen } diff --git a/src/components/IconFullscreenExit.tsx b/src/components/IconFullscreenExit.tsx deleted file mode 100644 index 9690758ff..000000000 --- a/src/components/IconFullscreenExit.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFullscreenExit: React.FC = (props) => ( - - - - -) - -export { IconFullscreenExit } diff --git a/src/components/IconFunctions.tsx b/src/components/IconFunctions.tsx deleted file mode 100644 index 04331b36c..000000000 --- a/src/components/IconFunctions.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconFunctions: React.FC = (props) => ( - - - - -) - -export { IconFunctions } diff --git a/src/components/IconGTranslate.tsx b/src/components/IconGTranslate.tsx deleted file mode 100644 index e2808ff08..000000000 --- a/src/components/IconGTranslate.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGTranslate: React.FC = (props) => ( - - - - -) - -export { IconGTranslate } diff --git a/src/components/IconGamepad.tsx b/src/components/IconGamepad.tsx deleted file mode 100644 index 36fd1ca5c..000000000 --- a/src/components/IconGamepad.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGamepad: React.FC = (props) => ( - - - - -) - -export { IconGamepad } diff --git a/src/components/IconGames.tsx b/src/components/IconGames.tsx deleted file mode 100644 index 1e942a19d..000000000 --- a/src/components/IconGames.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGames: React.FC = (props) => ( - - - - -) - -export { IconGames } diff --git a/src/components/IconGavel.tsx b/src/components/IconGavel.tsx deleted file mode 100644 index 6c0e8a2c3..000000000 --- a/src/components/IconGavel.tsx +++ /dev/null @@ -1,42 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGavel: React.FC = (props) => ( - - - - - - - - - - - - - -) - -export { IconGavel } diff --git a/src/components/IconGesture.tsx b/src/components/IconGesture.tsx deleted file mode 100644 index 7a5622f4b..000000000 --- a/src/components/IconGesture.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGesture: React.FC = (props) => ( - - - - -) - -export { IconGesture } diff --git a/src/components/IconGetApp.tsx b/src/components/IconGetApp.tsx deleted file mode 100644 index 64cc28209..000000000 --- a/src/components/IconGetApp.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGetApp: React.FC = (props) => ( - - - - -) - -export { IconGetApp } diff --git a/src/components/IconGif.tsx b/src/components/IconGif.tsx deleted file mode 100644 index 4e1a204db..000000000 --- a/src/components/IconGif.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGif: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconGif } diff --git a/src/components/IconGolfCourse.tsx b/src/components/IconGolfCourse.tsx deleted file mode 100644 index 3667cecef..000000000 --- a/src/components/IconGolfCourse.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGolfCourse: React.FC = (props) => ( - - - - - -) - -export { IconGolfCourse } diff --git a/src/components/IconGpsFixed.tsx b/src/components/IconGpsFixed.tsx deleted file mode 100644 index af3ba0c44..000000000 --- a/src/components/IconGpsFixed.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGpsFixed: React.FC = (props) => ( - - - - -) - -export { IconGpsFixed } diff --git a/src/components/IconGpsNotFixed.tsx b/src/components/IconGpsNotFixed.tsx deleted file mode 100644 index 9a6fb9d9d..000000000 --- a/src/components/IconGpsNotFixed.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGpsNotFixed: React.FC = (props) => ( - - - - -) - -export { IconGpsNotFixed } diff --git a/src/components/IconGpsOff.tsx b/src/components/IconGpsOff.tsx deleted file mode 100644 index 558f7f1f5..000000000 --- a/src/components/IconGpsOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGpsOff: React.FC = (props) => ( - - - - -) - -export { IconGpsOff } diff --git a/src/components/IconGrade.tsx b/src/components/IconGrade.tsx deleted file mode 100644 index 66702953f..000000000 --- a/src/components/IconGrade.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGrade: React.FC = (props) => ( - - - - -) - -export { IconGrade } diff --git a/src/components/IconGradient.tsx b/src/components/IconGradient.tsx deleted file mode 100644 index a0b709c9c..000000000 --- a/src/components/IconGradient.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGradient: React.FC = (props) => ( - - - - -) - -export { IconGradient } diff --git a/src/components/IconGrading.tsx b/src/components/IconGrading.tsx deleted file mode 100644 index ad09fdfb3..000000000 --- a/src/components/IconGrading.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGrading: React.FC = (props) => ( - - - - - - - - -) - -export { IconGrading } diff --git a/src/components/IconGrain.tsx b/src/components/IconGrain.tsx deleted file mode 100644 index aa54a7f21..000000000 --- a/src/components/IconGrain.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGrain: React.FC = (props) => ( - - - - -) - -export { IconGrain } diff --git a/src/components/IconGraphicEq.tsx b/src/components/IconGraphicEq.tsx deleted file mode 100644 index e833cf392..000000000 --- a/src/components/IconGraphicEq.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGraphicEq: React.FC = (props) => ( - - - - -) - -export { IconGraphicEq } diff --git a/src/components/IconGrass.tsx b/src/components/IconGrass.tsx deleted file mode 100644 index 2e934d49b..000000000 --- a/src/components/IconGrass.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGrass: React.FC = (props) => ( - - - - -) - -export { IconGrass } diff --git a/src/components/IconGridOff.tsx b/src/components/IconGridOff.tsx deleted file mode 100644 index ad3fdc368..000000000 --- a/src/components/IconGridOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGridOff: React.FC = (props) => ( - - - - -) - -export { IconGridOff } diff --git a/src/components/IconGridOn.tsx b/src/components/IconGridOn.tsx deleted file mode 100644 index d5b1b76c8..000000000 --- a/src/components/IconGridOn.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGridOn: React.FC = (props) => ( - - - - -) - -export { IconGridOn } diff --git a/src/components/IconGroup.tsx b/src/components/IconGroup.tsx deleted file mode 100644 index fe4e75a4e..000000000 --- a/src/components/IconGroup.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGroup: React.FC = (props) => ( - - - - -) - -export { IconGroup } diff --git a/src/components/IconGroupAdd.tsx b/src/components/IconGroupAdd.tsx deleted file mode 100644 index 84c2fd032..000000000 --- a/src/components/IconGroupAdd.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGroupAdd: React.FC = (props) => ( - - - - -) - -export { IconGroupAdd } diff --git a/src/components/IconGroupWork.tsx b/src/components/IconGroupWork.tsx deleted file mode 100644 index 0c4762856..000000000 --- a/src/components/IconGroupWork.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGroupWork: React.FC = (props) => ( - - - - -) - -export { IconGroupWork } diff --git a/src/components/IconGroups.tsx b/src/components/IconGroups.tsx deleted file mode 100644 index c9d1b2e73..000000000 --- a/src/components/IconGroups.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconGroups: React.FC = (props) => ( - - - - - - -) - -export { IconGroups } diff --git a/src/components/IconHandyman.tsx b/src/components/IconHandyman.tsx deleted file mode 100644 index 831e9fab3..000000000 --- a/src/components/IconHandyman.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHandyman: React.FC = (props) => ( - - - - - - - - - - - - - - - -) - -export { IconHandyman } diff --git a/src/components/IconHd.tsx b/src/components/IconHd.tsx deleted file mode 100644 index 39ea057cb..000000000 --- a/src/components/IconHd.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHd: React.FC = (props) => ( - - - - -) - -export { IconHd } diff --git a/src/components/IconHdrOff.tsx b/src/components/IconHdrOff.tsx deleted file mode 100644 index 1a6f24944..000000000 --- a/src/components/IconHdrOff.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHdrOff: React.FC = (props) => ( - - - -) - -export { IconHdrOff } diff --git a/src/components/IconHdrOn.tsx b/src/components/IconHdrOn.tsx deleted file mode 100644 index 22000a22d..000000000 --- a/src/components/IconHdrOn.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHdrOn: React.FC = (props) => ( - - - - -) - -export { IconHdrOn } diff --git a/src/components/IconHdrStrong.tsx b/src/components/IconHdrStrong.tsx deleted file mode 100644 index f8f037e0e..000000000 --- a/src/components/IconHdrStrong.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHdrStrong: React.FC = (props) => ( - - - - -) - -export { IconHdrStrong } diff --git a/src/components/IconHdrWeak.tsx b/src/components/IconHdrWeak.tsx deleted file mode 100644 index e2bbf1ede..000000000 --- a/src/components/IconHdrWeak.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHdrWeak: React.FC = (props) => ( - - - - -) - -export { IconHdrWeak } diff --git a/src/components/IconHeadset.tsx b/src/components/IconHeadset.tsx deleted file mode 100644 index 702e7b7dd..000000000 --- a/src/components/IconHeadset.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHeadset: React.FC = (props) => ( - - - - -) - -export { IconHeadset } diff --git a/src/components/IconHeadsetMic.tsx b/src/components/IconHeadsetMic.tsx deleted file mode 100644 index 337398259..000000000 --- a/src/components/IconHeadsetMic.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHeadsetMic: React.FC = (props) => ( - - - - -) - -export { IconHeadsetMic } diff --git a/src/components/IconHealing.tsx b/src/components/IconHealing.tsx deleted file mode 100644 index 73be60b9e..000000000 --- a/src/components/IconHealing.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHealing: React.FC = (props) => ( - - - - -) - -export { IconHealing } diff --git a/src/components/IconHearing.tsx b/src/components/IconHearing.tsx deleted file mode 100644 index eaceeea52..000000000 --- a/src/components/IconHearing.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHearing: React.FC = (props) => ( - - - - -) - -export { IconHearing } diff --git a/src/components/IconHearingDisabled.tsx b/src/components/IconHearingDisabled.tsx deleted file mode 100644 index 3d17ed60c..000000000 --- a/src/components/IconHearingDisabled.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHearingDisabled: React.FC = (props) => ( - - - - - - -) - -export { IconHearingDisabled } diff --git a/src/components/IconHeight.tsx b/src/components/IconHeight.tsx deleted file mode 100644 index c6ec6b213..000000000 --- a/src/components/IconHeight.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHeight: React.FC = (props) => ( - - - - - - - - - -) - -export { IconHeight } diff --git a/src/components/IconHelp.tsx b/src/components/IconHelp.tsx deleted file mode 100644 index 51f6b783d..000000000 --- a/src/components/IconHelp.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHelp: React.FC = (props) => ( - - - - -) - -export { IconHelp } diff --git a/src/components/IconHelpCenter.tsx b/src/components/IconHelpCenter.tsx deleted file mode 100644 index 355119d7e..000000000 --- a/src/components/IconHelpCenter.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHelpCenter: React.FC = (props) => ( - - - - - - -) - -export { IconHelpCenter } diff --git a/src/components/IconHelpOutline.tsx b/src/components/IconHelpOutline.tsx deleted file mode 100644 index cd9275656..000000000 --- a/src/components/IconHelpOutline.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHelpOutline: React.FC = (props) => ( - - - - -) - -export { IconHelpOutline } diff --git a/src/components/IconHighQuality.tsx b/src/components/IconHighQuality.tsx deleted file mode 100644 index 92c31f713..000000000 --- a/src/components/IconHighQuality.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHighQuality: React.FC = (props) => ( - - - - -) - -export { IconHighQuality } diff --git a/src/components/IconHighlight.tsx b/src/components/IconHighlight.tsx deleted file mode 100644 index 96bcc6b33..000000000 --- a/src/components/IconHighlight.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHighlight: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconHighlight } diff --git a/src/components/IconHighlightAlt.tsx b/src/components/IconHighlightAlt.tsx deleted file mode 100644 index b02956e77..000000000 --- a/src/components/IconHighlightAlt.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHighlightAlt: React.FC = (props) => ( - - - - -) - -export { IconHighlightAlt } diff --git a/src/components/IconHighlightOff.tsx b/src/components/IconHighlightOff.tsx deleted file mode 100644 index c50e913cd..000000000 --- a/src/components/IconHighlightOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHighlightOff: React.FC = (props) => ( - - - - -) - -export { IconHighlightOff } diff --git a/src/components/IconHistory.tsx b/src/components/IconHistory.tsx deleted file mode 100644 index 31941687c..000000000 --- a/src/components/IconHistory.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHistory: React.FC = (props) => ( - - - - -) - -export { IconHistory } diff --git a/src/components/IconHistoryEdu.tsx b/src/components/IconHistoryEdu.tsx deleted file mode 100644 index 6305e375a..000000000 --- a/src/components/IconHistoryEdu.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHistoryEdu: React.FC = (props) => ( - - - - - - - - - - -) - -export { IconHistoryEdu } diff --git a/src/components/IconHistoryToggleOff.tsx b/src/components/IconHistoryToggleOff.tsx deleted file mode 100644 index f462a1163..000000000 --- a/src/components/IconHistoryToggleOff.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHistoryToggleOff: React.FC = (props) => ( - - - - - - -) - -export { IconHistoryToggleOff } diff --git a/src/components/IconHome.tsx b/src/components/IconHome.tsx deleted file mode 100644 index f57e937bc..000000000 --- a/src/components/IconHome.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHome: React.FC = (props) => ( - - - - -) - -export { IconHome } diff --git a/src/components/IconHomeRepairService.tsx b/src/components/IconHomeRepairService.tsx deleted file mode 100644 index 050d0c7ac..000000000 --- a/src/components/IconHomeRepairService.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHomeRepairService: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconHomeRepairService } diff --git a/src/components/IconHomeWork.tsx b/src/components/IconHomeWork.tsx deleted file mode 100644 index 4c9670a85..000000000 --- a/src/components/IconHomeWork.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHomeWork: React.FC = (props) => ( - - - - - - -) - -export { IconHomeWork } diff --git a/src/components/IconHorizontalDistribute.tsx b/src/components/IconHorizontalDistribute.tsx deleted file mode 100644 index 1c66e08bd..000000000 --- a/src/components/IconHorizontalDistribute.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHorizontalDistribute: React.FC = (props) => ( - - - - -) - -export { IconHorizontalDistribute } diff --git a/src/components/IconHorizontalRule.tsx b/src/components/IconHorizontalRule.tsx deleted file mode 100644 index d680d9a00..000000000 --- a/src/components/IconHorizontalRule.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHorizontalRule: React.FC = (props) => ( - - - - - - -) - -export { IconHorizontalRule } diff --git a/src/components/IconHorizontalSplit.tsx b/src/components/IconHorizontalSplit.tsx deleted file mode 100644 index eaa6061ca..000000000 --- a/src/components/IconHorizontalSplit.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHorizontalSplit: React.FC = (props) => ( - - - - -) - -export { IconHorizontalSplit } diff --git a/src/components/IconHotTub.tsx b/src/components/IconHotTub.tsx deleted file mode 100644 index 1edc080ca..000000000 --- a/src/components/IconHotTub.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHotTub: React.FC = (props) => ( - - - - - -) - -export { IconHotTub } diff --git a/src/components/IconHotel.tsx b/src/components/IconHotel.tsx deleted file mode 100644 index 1b4144adb..000000000 --- a/src/components/IconHotel.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHotel: React.FC = (props) => ( - - - - -) - -export { IconHotel } diff --git a/src/components/IconHourglassBottom.tsx b/src/components/IconHourglassBottom.tsx deleted file mode 100644 index 24aa5d228..000000000 --- a/src/components/IconHourglassBottom.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHourglassBottom: React.FC = (props) => ( - - - - - - - - -) - -export { IconHourglassBottom } diff --git a/src/components/IconHourglassDisabled.tsx b/src/components/IconHourglassDisabled.tsx deleted file mode 100644 index f0f394b6a..000000000 --- a/src/components/IconHourglassDisabled.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHourglassDisabled: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconHourglassDisabled } diff --git a/src/components/IconHourglassEmpty.tsx b/src/components/IconHourglassEmpty.tsx deleted file mode 100644 index 77d3e2107..000000000 --- a/src/components/IconHourglassEmpty.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHourglassEmpty: React.FC = (props) => ( - - - - -) - -export { IconHourglassEmpty } diff --git a/src/components/IconHourglassFull.tsx b/src/components/IconHourglassFull.tsx deleted file mode 100644 index 84021506e..000000000 --- a/src/components/IconHourglassFull.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHourglassFull: React.FC = (props) => ( - - - - -) - -export { IconHourglassFull } diff --git a/src/components/IconHourglassTop.tsx b/src/components/IconHourglassTop.tsx deleted file mode 100644 index 6b128137c..000000000 --- a/src/components/IconHourglassTop.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHourglassTop: React.FC = (props) => ( - - - - - - - - -) - -export { IconHourglassTop } diff --git a/src/components/IconHouse.tsx b/src/components/IconHouse.tsx deleted file mode 100644 index 59334419f..000000000 --- a/src/components/IconHouse.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHouse: React.FC = (props) => ( - - - - - - - - -) - -export { IconHouse } diff --git a/src/components/IconHouseSiding.tsx b/src/components/IconHouseSiding.tsx deleted file mode 100644 index fe85998bf..000000000 --- a/src/components/IconHouseSiding.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHouseSiding: React.FC = (props) => ( - - - - -) - -export { IconHouseSiding } diff --git a/src/components/IconHowToReg.tsx b/src/components/IconHowToReg.tsx deleted file mode 100644 index b18b7e613..000000000 --- a/src/components/IconHowToReg.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHowToReg: React.FC = (props) => ( - - - - - - - -) - -export { IconHowToReg } diff --git a/src/components/IconHowToVote.tsx b/src/components/IconHowToVote.tsx deleted file mode 100644 index 924bf6b61..000000000 --- a/src/components/IconHowToVote.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHowToVote: React.FC = (props) => ( - - - - -) - -export { IconHowToVote } diff --git a/src/components/IconHttp.tsx b/src/components/IconHttp.tsx deleted file mode 100644 index 2fb6fb459..000000000 --- a/src/components/IconHttp.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHttp: React.FC = (props) => ( - - - - -) - -export { IconHttp } diff --git a/src/components/IconHttps.tsx b/src/components/IconHttps.tsx deleted file mode 100644 index 762c1c667..000000000 --- a/src/components/IconHttps.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHttps: React.FC = (props) => ( - - - - -) - -export { IconHttps } diff --git a/src/components/IconHvac.tsx b/src/components/IconHvac.tsx deleted file mode 100644 index 136ff5493..000000000 --- a/src/components/IconHvac.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconHvac: React.FC = (props) => ( - - - - - - - - - - - - - - - - - - - - - - - - -) - -export { IconHvac } diff --git a/src/components/IconImage.tsx b/src/components/IconImage.tsx deleted file mode 100644 index 9de1d2f16..000000000 --- a/src/components/IconImage.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconImage: React.FC = (props) => ( - - - - -) - -export { IconImage } diff --git a/src/components/IconImageAspectRatio.tsx b/src/components/IconImageAspectRatio.tsx deleted file mode 100644 index 08e3dfddb..000000000 --- a/src/components/IconImageAspectRatio.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconImageAspectRatio: React.FC = (props) => ( - - - - -) - -export { IconImageAspectRatio } diff --git a/src/components/IconImageNotSupported.tsx b/src/components/IconImageNotSupported.tsx deleted file mode 100644 index 1c541ba53..000000000 --- a/src/components/IconImageNotSupported.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconImageNotSupported: React.FC = (props) => ( - - - - - - -) - -export { IconImageNotSupported } diff --git a/src/components/IconImageSearch.tsx b/src/components/IconImageSearch.tsx deleted file mode 100644 index dc91fd90d..000000000 --- a/src/components/IconImageSearch.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconImageSearch: React.FC = (props) => ( - - - - - -) - -export { IconImageSearch } diff --git a/src/components/IconImportContacts.tsx b/src/components/IconImportContacts.tsx deleted file mode 100644 index bb8eeddb0..000000000 --- a/src/components/IconImportContacts.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconImportContacts: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconImportContacts } diff --git a/src/components/IconImportExport.tsx b/src/components/IconImportExport.tsx deleted file mode 100644 index fa82aded5..000000000 --- a/src/components/IconImportExport.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconImportExport: React.FC = (props) => ( - - - - -) - -export { IconImportExport } diff --git a/src/components/IconImportantDevices.tsx b/src/components/IconImportantDevices.tsx deleted file mode 100644 index b1feaba62..000000000 --- a/src/components/IconImportantDevices.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconImportantDevices: React.FC = (props) => ( - - - - -) - -export { IconImportantDevices } diff --git a/src/components/IconInbox.tsx b/src/components/IconInbox.tsx deleted file mode 100644 index 60d8bfa05..000000000 --- a/src/components/IconInbox.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconInbox: React.FC = (props) => ( - - - - -) - -export { IconInbox } diff --git a/src/components/IconIndeterminateCheckBox.tsx b/src/components/IconIndeterminateCheckBox.tsx deleted file mode 100644 index 3cec2e45d..000000000 --- a/src/components/IconIndeterminateCheckBox.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconIndeterminateCheckBox: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconIndeterminateCheckBox } diff --git a/src/components/IconInfo.tsx b/src/components/IconInfo.tsx deleted file mode 100644 index d7898cabd..000000000 --- a/src/components/IconInfo.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconInfo: React.FC = (props) => ( - - - - -) - -export { IconInfo } diff --git a/src/components/IconInput.tsx b/src/components/IconInput.tsx deleted file mode 100644 index f96a01c9e..000000000 --- a/src/components/IconInput.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconInput: React.FC = (props) => ( - - - - -) - -export { IconInput } diff --git a/src/components/IconInsertChart.tsx b/src/components/IconInsertChart.tsx deleted file mode 100644 index 1ea02956c..000000000 --- a/src/components/IconInsertChart.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconInsertChart: React.FC = (props) => ( - - - - -) - -export { IconInsertChart } diff --git a/src/components/IconInsertChartOutlined.tsx b/src/components/IconInsertChartOutlined.tsx deleted file mode 100644 index 1a7012bd1..000000000 --- a/src/components/IconInsertChartOutlined.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconInsertChartOutlined: React.FC = (props) => ( - - - - -) - -export { IconInsertChartOutlined } diff --git a/src/components/IconInsertComment.tsx b/src/components/IconInsertComment.tsx deleted file mode 100644 index 4368ef2d3..000000000 --- a/src/components/IconInsertComment.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconInsertComment: React.FC = (props) => ( - - - - -) - -export { IconInsertComment } diff --git a/src/components/IconInsertDriveFile.tsx b/src/components/IconInsertDriveFile.tsx deleted file mode 100644 index 4efa1d0d9..000000000 --- a/src/components/IconInsertDriveFile.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconInsertDriveFile: React.FC = (props) => ( - - - - -) - -export { IconInsertDriveFile } diff --git a/src/components/IconInsertEmoticon.tsx b/src/components/IconInsertEmoticon.tsx deleted file mode 100644 index 351abe88d..000000000 --- a/src/components/IconInsertEmoticon.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconInsertEmoticon: React.FC = (props) => ( - - - - -) - -export { IconInsertEmoticon } diff --git a/src/components/IconInsertInvitation.tsx b/src/components/IconInsertInvitation.tsx deleted file mode 100644 index dd45a839d..000000000 --- a/src/components/IconInsertInvitation.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconInsertInvitation: React.FC = (props) => ( - - - - -) - -export { IconInsertInvitation } diff --git a/src/components/IconInsertLink.tsx b/src/components/IconInsertLink.tsx deleted file mode 100644 index 5531e143b..000000000 --- a/src/components/IconInsertLink.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconInsertLink: React.FC = (props) => ( - - - - -) - -export { IconInsertLink } diff --git a/src/components/IconInsertPhoto.tsx b/src/components/IconInsertPhoto.tsx deleted file mode 100644 index 95427bd0b..000000000 --- a/src/components/IconInsertPhoto.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconInsertPhoto: React.FC = (props) => ( - - - - -) - -export { IconInsertPhoto } diff --git a/src/components/IconInsights.tsx b/src/components/IconInsights.tsx deleted file mode 100644 index f71d55951..000000000 --- a/src/components/IconInsights.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconInsights: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconInsights } diff --git a/src/components/IconIntegrationInstructions.tsx b/src/components/IconIntegrationInstructions.tsx deleted file mode 100644 index 5fb9bb4a1..000000000 --- a/src/components/IconIntegrationInstructions.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconIntegrationInstructions: React.FC = (props) => ( - - - - - - - - - -) - -export { IconIntegrationInstructions } diff --git a/src/components/IconInvertColors.tsx b/src/components/IconInvertColors.tsx deleted file mode 100644 index 9c08d5665..000000000 --- a/src/components/IconInvertColors.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconInvertColors: React.FC = (props) => ( - - - - -) - -export { IconInvertColors } diff --git a/src/components/IconInvertColorsOff.tsx b/src/components/IconInvertColorsOff.tsx deleted file mode 100644 index 6de3308c1..000000000 --- a/src/components/IconInvertColorsOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconInvertColorsOff: React.FC = (props) => ( - - - - -) - -export { IconInvertColorsOff } diff --git a/src/components/IconIso.tsx b/src/components/IconIso.tsx deleted file mode 100644 index cf87616c4..000000000 --- a/src/components/IconIso.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconIso: React.FC = (props) => ( - - - - -) - -export { IconIso } diff --git a/src/components/IconKeyboard.tsx b/src/components/IconKeyboard.tsx deleted file mode 100644 index 73195b6fe..000000000 --- a/src/components/IconKeyboard.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconKeyboard: React.FC = (props) => ( - - - - -) - -export { IconKeyboard } diff --git a/src/components/IconKeyboardArrowDown.tsx b/src/components/IconKeyboardArrowDown.tsx deleted file mode 100644 index bf1d43bd9..000000000 --- a/src/components/IconKeyboardArrowDown.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconKeyboardArrowDown: React.FC = (props) => ( - - - - -) - -export { IconKeyboardArrowDown } diff --git a/src/components/IconKeyboardArrowLeft.tsx b/src/components/IconKeyboardArrowLeft.tsx deleted file mode 100644 index 123936023..000000000 --- a/src/components/IconKeyboardArrowLeft.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconKeyboardArrowLeft: React.FC = (props) => ( - - - - -) - -export { IconKeyboardArrowLeft } diff --git a/src/components/IconKeyboardArrowRight.tsx b/src/components/IconKeyboardArrowRight.tsx deleted file mode 100644 index afc6474f7..000000000 --- a/src/components/IconKeyboardArrowRight.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconKeyboardArrowRight: React.FC = (props) => ( - - - - -) - -export { IconKeyboardArrowRight } diff --git a/src/components/IconKeyboardArrowUp.tsx b/src/components/IconKeyboardArrowUp.tsx deleted file mode 100644 index 2fada9df6..000000000 --- a/src/components/IconKeyboardArrowUp.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconKeyboardArrowUp: React.FC = (props) => ( - - - - -) - -export { IconKeyboardArrowUp } diff --git a/src/components/IconKeyboardBackspace.tsx b/src/components/IconKeyboardBackspace.tsx deleted file mode 100644 index d6cd0d6b0..000000000 --- a/src/components/IconKeyboardBackspace.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconKeyboardBackspace: React.FC = (props) => ( - - - - -) - -export { IconKeyboardBackspace } diff --git a/src/components/IconKeyboardCapslock.tsx b/src/components/IconKeyboardCapslock.tsx deleted file mode 100644 index 96603e15e..000000000 --- a/src/components/IconKeyboardCapslock.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconKeyboardCapslock: React.FC = (props) => ( - - - - -) - -export { IconKeyboardCapslock } diff --git a/src/components/IconKeyboardHide.tsx b/src/components/IconKeyboardHide.tsx deleted file mode 100644 index bb9eb097f..000000000 --- a/src/components/IconKeyboardHide.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconKeyboardHide: React.FC = (props) => ( - - - - -) - -export { IconKeyboardHide } diff --git a/src/components/IconKeyboardReturn.tsx b/src/components/IconKeyboardReturn.tsx deleted file mode 100644 index 54928596d..000000000 --- a/src/components/IconKeyboardReturn.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconKeyboardReturn: React.FC = (props) => ( - - - - -) - -export { IconKeyboardReturn } diff --git a/src/components/IconKeyboardTab.tsx b/src/components/IconKeyboardTab.tsx deleted file mode 100644 index 51716d1c6..000000000 --- a/src/components/IconKeyboardTab.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconKeyboardTab: React.FC = (props) => ( - - - - -) - -export { IconKeyboardTab } diff --git a/src/components/IconKeyboardVoice.tsx b/src/components/IconKeyboardVoice.tsx deleted file mode 100644 index 6840d88eb..000000000 --- a/src/components/IconKeyboardVoice.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconKeyboardVoice: React.FC = (props) => ( - - - - -) - -export { IconKeyboardVoice } diff --git a/src/components/IconKingBed.tsx b/src/components/IconKingBed.tsx deleted file mode 100644 index ceff842da..000000000 --- a/src/components/IconKingBed.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconKingBed: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconKingBed } diff --git a/src/components/IconKitchen.tsx b/src/components/IconKitchen.tsx deleted file mode 100644 index b3c8d992c..000000000 --- a/src/components/IconKitchen.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconKitchen: React.FC = (props) => ( - - - - -) - -export { IconKitchen } diff --git a/src/components/IconLabel.tsx b/src/components/IconLabel.tsx deleted file mode 100644 index da674bd04..000000000 --- a/src/components/IconLabel.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLabel: React.FC = (props) => ( - - - - -) - -export { IconLabel } diff --git a/src/components/IconLabelImportant.tsx b/src/components/IconLabelImportant.tsx deleted file mode 100644 index 5297528c5..000000000 --- a/src/components/IconLabelImportant.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLabelImportant: React.FC = (props) => ( - - - - -) - -export { IconLabelImportant } diff --git a/src/components/IconLabelOff.tsx b/src/components/IconLabelOff.tsx deleted file mode 100644 index 468416685..000000000 --- a/src/components/IconLabelOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLabelOff: React.FC = (props) => ( - - - - -) - -export { IconLabelOff } diff --git a/src/components/IconLandscape.tsx b/src/components/IconLandscape.tsx deleted file mode 100644 index d9a16c07f..000000000 --- a/src/components/IconLandscape.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLandscape: React.FC = (props) => ( - - - - -) - -export { IconLandscape } diff --git a/src/components/IconLanguage.tsx b/src/components/IconLanguage.tsx deleted file mode 100644 index b35293bc6..000000000 --- a/src/components/IconLanguage.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLanguage: React.FC = (props) => ( - - - - -) - -export { IconLanguage } diff --git a/src/components/IconLaptop.tsx b/src/components/IconLaptop.tsx deleted file mode 100644 index 0a5842d37..000000000 --- a/src/components/IconLaptop.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLaptop: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconLaptop } diff --git a/src/components/IconLaptopChromebook.tsx b/src/components/IconLaptopChromebook.tsx deleted file mode 100644 index a1f618c7f..000000000 --- a/src/components/IconLaptopChromebook.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLaptopChromebook: React.FC = (props) => ( - - - - -) - -export { IconLaptopChromebook } diff --git a/src/components/IconLaptopMac.tsx b/src/components/IconLaptopMac.tsx deleted file mode 100644 index 8244daab3..000000000 --- a/src/components/IconLaptopMac.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLaptopMac: React.FC = (props) => ( - - - - -) - -export { IconLaptopMac } diff --git a/src/components/IconLaptopWindows.tsx b/src/components/IconLaptopWindows.tsx deleted file mode 100644 index 26d95f5e3..000000000 --- a/src/components/IconLaptopWindows.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLaptopWindows: React.FC = (props) => ( - - - - -) - -export { IconLaptopWindows } diff --git a/src/components/IconLastPage.tsx b/src/components/IconLastPage.tsx deleted file mode 100644 index 46d893daa..000000000 --- a/src/components/IconLastPage.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLastPage: React.FC = (props) => ( - - - - -) - -export { IconLastPage } diff --git a/src/components/IconLaunch.tsx b/src/components/IconLaunch.tsx deleted file mode 100644 index a6f862e34..000000000 --- a/src/components/IconLaunch.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLaunch: React.FC = (props) => ( - - - - -) - -export { IconLaunch } diff --git a/src/components/IconLayers.tsx b/src/components/IconLayers.tsx deleted file mode 100644 index dd5780089..000000000 --- a/src/components/IconLayers.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLayers: React.FC = (props) => ( - - - - -) - -export { IconLayers } diff --git a/src/components/IconLayersClear.tsx b/src/components/IconLayersClear.tsx deleted file mode 100644 index 702b972f6..000000000 --- a/src/components/IconLayersClear.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLayersClear: React.FC = (props) => ( - - - - -) - -export { IconLayersClear } diff --git a/src/components/IconLeaderboard.tsx b/src/components/IconLeaderboard.tsx deleted file mode 100644 index 5fe661f79..000000000 --- a/src/components/IconLeaderboard.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLeaderboard: React.FC = (props) => ( - - - - - - -) - -export { IconLeaderboard } diff --git a/src/components/IconLeakAdd.tsx b/src/components/IconLeakAdd.tsx deleted file mode 100644 index 54e3dd7d0..000000000 --- a/src/components/IconLeakAdd.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLeakAdd: React.FC = (props) => ( - - - - -) - -export { IconLeakAdd } diff --git a/src/components/IconLeakRemove.tsx b/src/components/IconLeakRemove.tsx deleted file mode 100644 index 721ba3a68..000000000 --- a/src/components/IconLeakRemove.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLeakRemove: React.FC = (props) => ( - - - - -) - -export { IconLeakRemove } diff --git a/src/components/IconLegendToggle.tsx b/src/components/IconLegendToggle.tsx deleted file mode 100644 index 11460b2bc..000000000 --- a/src/components/IconLegendToggle.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLegendToggle: React.FC = (props) => ( - - - - - - -) - -export { IconLegendToggle } diff --git a/src/components/IconLens.tsx b/src/components/IconLens.tsx deleted file mode 100644 index 846c1094a..000000000 --- a/src/components/IconLens.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLens: React.FC = (props) => ( - - - - -) - -export { IconLens } diff --git a/src/components/IconLibraryAdd.tsx b/src/components/IconLibraryAdd.tsx deleted file mode 100644 index a003d69d1..000000000 --- a/src/components/IconLibraryAdd.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLibraryAdd: React.FC = (props) => ( - - - - -) - -export { IconLibraryAdd } diff --git a/src/components/IconLibraryAddCheck.tsx b/src/components/IconLibraryAddCheck.tsx deleted file mode 100644 index 2fd5da6c8..000000000 --- a/src/components/IconLibraryAddCheck.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLibraryAddCheck: React.FC = (props) => ( - - - - -) - -export { IconLibraryAddCheck } diff --git a/src/components/IconLibraryBooks.tsx b/src/components/IconLibraryBooks.tsx deleted file mode 100644 index d0de724d3..000000000 --- a/src/components/IconLibraryBooks.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLibraryBooks: React.FC = (props) => ( - - - - -) - -export { IconLibraryBooks } diff --git a/src/components/IconLibraryMusic.tsx b/src/components/IconLibraryMusic.tsx deleted file mode 100644 index e773ba037..000000000 --- a/src/components/IconLibraryMusic.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLibraryMusic: React.FC = (props) => ( - - - - -) - -export { IconLibraryMusic } diff --git a/src/components/IconLineStyle.tsx b/src/components/IconLineStyle.tsx deleted file mode 100644 index 0bf31a652..000000000 --- a/src/components/IconLineStyle.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLineStyle: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconLineStyle } diff --git a/src/components/IconLineWeight.tsx b/src/components/IconLineWeight.tsx deleted file mode 100644 index 2dcae3490..000000000 --- a/src/components/IconLineWeight.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLineWeight: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconLineWeight } diff --git a/src/components/IconLinearScale.tsx b/src/components/IconLinearScale.tsx deleted file mode 100644 index f43ed3b7f..000000000 --- a/src/components/IconLinearScale.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLinearScale: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconLinearScale } diff --git a/src/components/IconLink.tsx b/src/components/IconLink.tsx deleted file mode 100644 index 3aeddd065..000000000 --- a/src/components/IconLink.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLink: React.FC = (props) => ( - - - - -) - -export { IconLink } diff --git a/src/components/IconLinkOff.tsx b/src/components/IconLinkOff.tsx deleted file mode 100644 index 7be0c270d..000000000 --- a/src/components/IconLinkOff.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLinkOff: React.FC = (props) => ( - - - - - -) - -export { IconLinkOff } diff --git a/src/components/IconLinkedCamera.tsx b/src/components/IconLinkedCamera.tsx deleted file mode 100644 index 215c0984d..000000000 --- a/src/components/IconLinkedCamera.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLinkedCamera: React.FC = (props) => ( - - - - - - - -) - -export { IconLinkedCamera } diff --git a/src/components/IconList.tsx b/src/components/IconList.tsx deleted file mode 100644 index 97c449195..000000000 --- a/src/components/IconList.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconList: React.FC = (props) => ( - - - - -) - -export { IconList } diff --git a/src/components/IconListAlt.tsx b/src/components/IconListAlt.tsx deleted file mode 100644 index 82b0774b1..000000000 --- a/src/components/IconListAlt.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconListAlt: React.FC = (props) => ( - - - - -) - -export { IconListAlt } diff --git a/src/components/IconLiveHelp.tsx b/src/components/IconLiveHelp.tsx deleted file mode 100644 index f78fbfeb7..000000000 --- a/src/components/IconLiveHelp.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLiveHelp: React.FC = (props) => ( - - - - -) - -export { IconLiveHelp } diff --git a/src/components/IconLiveTv.tsx b/src/components/IconLiveTv.tsx deleted file mode 100644 index bdef7a645..000000000 --- a/src/components/IconLiveTv.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLiveTv: React.FC = (props) => ( - - - - -) - -export { IconLiveTv } diff --git a/src/components/IconLocalActivity.tsx b/src/components/IconLocalActivity.tsx deleted file mode 100644 index be050304c..000000000 --- a/src/components/IconLocalActivity.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalActivity: React.FC = (props) => ( - - - - -) - -export { IconLocalActivity } diff --git a/src/components/IconLocalAirport.tsx b/src/components/IconLocalAirport.tsx deleted file mode 100644 index e30b7eef1..000000000 --- a/src/components/IconLocalAirport.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalAirport: React.FC = (props) => ( - - - - - - -) - -export { IconLocalAirport } diff --git a/src/components/IconLocalAtm.tsx b/src/components/IconLocalAtm.tsx deleted file mode 100644 index 1d6b13b66..000000000 --- a/src/components/IconLocalAtm.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalAtm: React.FC = (props) => ( - - - - -) - -export { IconLocalAtm } diff --git a/src/components/IconLocalBar.tsx b/src/components/IconLocalBar.tsx deleted file mode 100644 index 376adf07e..000000000 --- a/src/components/IconLocalBar.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalBar: React.FC = (props) => ( - - - - -) - -export { IconLocalBar } diff --git a/src/components/IconLocalCafe.tsx b/src/components/IconLocalCafe.tsx deleted file mode 100644 index d511c2652..000000000 --- a/src/components/IconLocalCafe.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalCafe: React.FC = (props) => ( - - - - -) - -export { IconLocalCafe } diff --git a/src/components/IconLocalCarWash.tsx b/src/components/IconLocalCarWash.tsx deleted file mode 100644 index eba3ea1b5..000000000 --- a/src/components/IconLocalCarWash.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalCarWash: React.FC = (props) => ( - - - - -) - -export { IconLocalCarWash } diff --git a/src/components/IconLocalConvenienceStore.tsx b/src/components/IconLocalConvenienceStore.tsx deleted file mode 100644 index 1d76498a9..000000000 --- a/src/components/IconLocalConvenienceStore.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalConvenienceStore: React.FC = (props) => ( - - - - -) - -export { IconLocalConvenienceStore } diff --git a/src/components/IconLocalDining.tsx b/src/components/IconLocalDining.tsx deleted file mode 100644 index 3dc83f240..000000000 --- a/src/components/IconLocalDining.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalDining: React.FC = (props) => ( - - - - -) - -export { IconLocalDining } diff --git a/src/components/IconLocalDrink.tsx b/src/components/IconLocalDrink.tsx deleted file mode 100644 index 30b57c88d..000000000 --- a/src/components/IconLocalDrink.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalDrink: React.FC = (props) => ( - - - - -) - -export { IconLocalDrink } diff --git a/src/components/IconLocalFireDepartment.tsx b/src/components/IconLocalFireDepartment.tsx deleted file mode 100644 index df801fa8d..000000000 --- a/src/components/IconLocalFireDepartment.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalFireDepartment: React.FC = (props) => ( - - - - - - - - -) - -export { IconLocalFireDepartment } diff --git a/src/components/IconLocalFlorist.tsx b/src/components/IconLocalFlorist.tsx deleted file mode 100644 index f1dd5e98d..000000000 --- a/src/components/IconLocalFlorist.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalFlorist: React.FC = (props) => ( - - - - -) - -export { IconLocalFlorist } diff --git a/src/components/IconLocalGasStation.tsx b/src/components/IconLocalGasStation.tsx deleted file mode 100644 index 2ae1eab69..000000000 --- a/src/components/IconLocalGasStation.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalGasStation: React.FC = (props) => ( - - - - -) - -export { IconLocalGasStation } diff --git a/src/components/IconLocalGroceryStore.tsx b/src/components/IconLocalGroceryStore.tsx deleted file mode 100644 index 81899d5c0..000000000 --- a/src/components/IconLocalGroceryStore.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalGroceryStore: React.FC = (props) => ( - - - - -) - -export { IconLocalGroceryStore } diff --git a/src/components/IconLocalHospital.tsx b/src/components/IconLocalHospital.tsx deleted file mode 100644 index b8914bb89..000000000 --- a/src/components/IconLocalHospital.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalHospital: React.FC = (props) => ( - - - - -) - -export { IconLocalHospital } diff --git a/src/components/IconLocalHotel.tsx b/src/components/IconLocalHotel.tsx deleted file mode 100644 index 4fa9877da..000000000 --- a/src/components/IconLocalHotel.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalHotel: React.FC = (props) => ( - - - - -) - -export { IconLocalHotel } diff --git a/src/components/IconLocalLaundryService.tsx b/src/components/IconLocalLaundryService.tsx deleted file mode 100644 index 2e35f09a7..000000000 --- a/src/components/IconLocalLaundryService.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalLaundryService: React.FC = (props) => ( - - - - -) - -export { IconLocalLaundryService } diff --git a/src/components/IconLocalLibrary.tsx b/src/components/IconLocalLibrary.tsx deleted file mode 100644 index 2b1d43702..000000000 --- a/src/components/IconLocalLibrary.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalLibrary: React.FC = (props) => ( - - - - -) - -export { IconLocalLibrary } diff --git a/src/components/IconLocalMall.tsx b/src/components/IconLocalMall.tsx deleted file mode 100644 index 3b3fbf134..000000000 --- a/src/components/IconLocalMall.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalMall: React.FC = (props) => ( - - - - -) - -export { IconLocalMall } diff --git a/src/components/IconLocalMovies.tsx b/src/components/IconLocalMovies.tsx deleted file mode 100644 index f7442b7f6..000000000 --- a/src/components/IconLocalMovies.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalMovies: React.FC = (props) => ( - - - - -) - -export { IconLocalMovies } diff --git a/src/components/IconLocalOffer.tsx b/src/components/IconLocalOffer.tsx deleted file mode 100644 index 1240564ba..000000000 --- a/src/components/IconLocalOffer.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalOffer: React.FC = (props) => ( - - - - -) - -export { IconLocalOffer } diff --git a/src/components/IconLocalParking.tsx b/src/components/IconLocalParking.tsx deleted file mode 100644 index acf3bfdd3..000000000 --- a/src/components/IconLocalParking.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalParking: React.FC = (props) => ( - - - - -) - -export { IconLocalParking } diff --git a/src/components/IconLocalPharmacy.tsx b/src/components/IconLocalPharmacy.tsx deleted file mode 100644 index 02e06a388..000000000 --- a/src/components/IconLocalPharmacy.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalPharmacy: React.FC = (props) => ( - - - - -) - -export { IconLocalPharmacy } diff --git a/src/components/IconLocalPhone.tsx b/src/components/IconLocalPhone.tsx deleted file mode 100644 index 189cdc309..000000000 --- a/src/components/IconLocalPhone.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalPhone: React.FC = (props) => ( - - - - -) - -export { IconLocalPhone } diff --git a/src/components/IconLocalPizza.tsx b/src/components/IconLocalPizza.tsx deleted file mode 100644 index 6d649b73e..000000000 --- a/src/components/IconLocalPizza.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalPizza: React.FC = (props) => ( - - - - -) - -export { IconLocalPizza } diff --git a/src/components/IconLocalPlay.tsx b/src/components/IconLocalPlay.tsx deleted file mode 100644 index 1edf4c678..000000000 --- a/src/components/IconLocalPlay.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalPlay: React.FC = (props) => ( - - - - -) - -export { IconLocalPlay } diff --git a/src/components/IconLocalPolice.tsx b/src/components/IconLocalPolice.tsx deleted file mode 100644 index d53619f70..000000000 --- a/src/components/IconLocalPolice.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalPolice: React.FC = (props) => ( - - - - -) - -export { IconLocalPolice } diff --git a/src/components/IconLocalPostOffice.tsx b/src/components/IconLocalPostOffice.tsx deleted file mode 100644 index 90aa653c5..000000000 --- a/src/components/IconLocalPostOffice.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalPostOffice: React.FC = (props) => ( - - - - -) - -export { IconLocalPostOffice } diff --git a/src/components/IconLocalPrintshop.tsx b/src/components/IconLocalPrintshop.tsx deleted file mode 100644 index ac0123298..000000000 --- a/src/components/IconLocalPrintshop.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalPrintshop: React.FC = (props) => ( - - - - -) - -export { IconLocalPrintshop } diff --git a/src/components/IconLocalSee.tsx b/src/components/IconLocalSee.tsx deleted file mode 100644 index b706b5d76..000000000 --- a/src/components/IconLocalSee.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalSee: React.FC = (props) => ( - - - - - -) - -export { IconLocalSee } diff --git a/src/components/IconLocalShipping.tsx b/src/components/IconLocalShipping.tsx deleted file mode 100644 index 18081ee31..000000000 --- a/src/components/IconLocalShipping.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalShipping: React.FC = (props) => ( - - - - -) - -export { IconLocalShipping } diff --git a/src/components/IconLocalTaxi.tsx b/src/components/IconLocalTaxi.tsx deleted file mode 100644 index ee1a0fb6e..000000000 --- a/src/components/IconLocalTaxi.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocalTaxi: React.FC = (props) => ( - - - - -) - -export { IconLocalTaxi } diff --git a/src/components/IconLocationCity.tsx b/src/components/IconLocationCity.tsx deleted file mode 100644 index 08fc21b2e..000000000 --- a/src/components/IconLocationCity.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocationCity: React.FC = (props) => ( - - - - -) - -export { IconLocationCity } diff --git a/src/components/IconLocationDisabled.tsx b/src/components/IconLocationDisabled.tsx deleted file mode 100644 index 2601e1cff..000000000 --- a/src/components/IconLocationDisabled.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocationDisabled: React.FC = (props) => ( - - - - -) - -export { IconLocationDisabled } diff --git a/src/components/IconLocationOff.tsx b/src/components/IconLocationOff.tsx deleted file mode 100644 index 6d1463e9e..000000000 --- a/src/components/IconLocationOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocationOff: React.FC = (props) => ( - - - - -) - -export { IconLocationOff } diff --git a/src/components/IconLocationOn.tsx b/src/components/IconLocationOn.tsx deleted file mode 100644 index 04a1d9b57..000000000 --- a/src/components/IconLocationOn.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocationOn: React.FC = (props) => ( - - - - -) - -export { IconLocationOn } diff --git a/src/components/IconLocationSearching.tsx b/src/components/IconLocationSearching.tsx deleted file mode 100644 index f654484a4..000000000 --- a/src/components/IconLocationSearching.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLocationSearching: React.FC = (props) => ( - - - - -) - -export { IconLocationSearching } diff --git a/src/components/IconLock.tsx b/src/components/IconLock.tsx deleted file mode 100644 index d7302e41d..000000000 --- a/src/components/IconLock.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLock: React.FC = (props) => ( - - - - -) - -export { IconLock } diff --git a/src/components/IconLockOpen.tsx b/src/components/IconLockOpen.tsx deleted file mode 100644 index 5fa2a9b0b..000000000 --- a/src/components/IconLockOpen.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLockOpen: React.FC = (props) => ( - - - - -) - -export { IconLockOpen } diff --git a/src/components/IconLogin.tsx b/src/components/IconLogin.tsx deleted file mode 100644 index 867241453..000000000 --- a/src/components/IconLogin.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLogin: React.FC = (props) => ( - - - - - - - - -) - -export { IconLogin } diff --git a/src/components/IconLooks.tsx b/src/components/IconLooks.tsx deleted file mode 100644 index 40082cc20..000000000 --- a/src/components/IconLooks.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLooks: React.FC = (props) => ( - - - - -) - -export { IconLooks } diff --git a/src/components/IconLooks3.tsx b/src/components/IconLooks3.tsx deleted file mode 100644 index 9aa75d3f4..000000000 --- a/src/components/IconLooks3.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLooks3: React.FC = (props) => ( - - - - -) - -export { IconLooks3 } diff --git a/src/components/IconLooks4.tsx b/src/components/IconLooks4.tsx deleted file mode 100644 index f7b4b59e5..000000000 --- a/src/components/IconLooks4.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLooks4: React.FC = (props) => ( - - - - -) - -export { IconLooks4 } diff --git a/src/components/IconLooks5.tsx b/src/components/IconLooks5.tsx deleted file mode 100644 index e6fff4d22..000000000 --- a/src/components/IconLooks5.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLooks5: React.FC = (props) => ( - - - - -) - -export { IconLooks5 } diff --git a/src/components/IconLooks6.tsx b/src/components/IconLooks6.tsx deleted file mode 100644 index 5d0b8dc62..000000000 --- a/src/components/IconLooks6.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLooks6: React.FC = (props) => ( - - - - -) - -export { IconLooks6 } diff --git a/src/components/IconLooksOne.tsx b/src/components/IconLooksOne.tsx deleted file mode 100644 index 0e41ce0e8..000000000 --- a/src/components/IconLooksOne.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLooksOne: React.FC = (props) => ( - - - - -) - -export { IconLooksOne } diff --git a/src/components/IconLooksTwo.tsx b/src/components/IconLooksTwo.tsx deleted file mode 100644 index 068c9c583..000000000 --- a/src/components/IconLooksTwo.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLooksTwo: React.FC = (props) => ( - - - - -) - -export { IconLooksTwo } diff --git a/src/components/IconLoop.tsx b/src/components/IconLoop.tsx deleted file mode 100644 index bb4407d9f..000000000 --- a/src/components/IconLoop.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLoop: React.FC = (props) => ( - - - - -) - -export { IconLoop } diff --git a/src/components/IconLoupe.tsx b/src/components/IconLoupe.tsx deleted file mode 100644 index 66083cda2..000000000 --- a/src/components/IconLoupe.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLoupe: React.FC = (props) => ( - - - - -) - -export { IconLoupe } diff --git a/src/components/IconLowPriority.tsx b/src/components/IconLowPriority.tsx deleted file mode 100644 index 7eb87315b..000000000 --- a/src/components/IconLowPriority.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLowPriority: React.FC = (props) => ( - - - - -) - -export { IconLowPriority } diff --git a/src/components/IconLoyalty.tsx b/src/components/IconLoyalty.tsx deleted file mode 100644 index 29a411536..000000000 --- a/src/components/IconLoyalty.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLoyalty: React.FC = (props) => ( - - - - -) - -export { IconLoyalty } diff --git a/src/components/IconLuggage.tsx b/src/components/IconLuggage.tsx deleted file mode 100644 index 7009c7445..000000000 --- a/src/components/IconLuggage.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconLuggage: React.FC = (props) => ( - - - - - - -) - -export { IconLuggage } diff --git a/src/components/IconMail.tsx b/src/components/IconMail.tsx deleted file mode 100644 index 4044719e6..000000000 --- a/src/components/IconMail.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMail: React.FC = (props) => ( - - - - -) - -export { IconMail } diff --git a/src/components/IconMailOutline.tsx b/src/components/IconMailOutline.tsx deleted file mode 100644 index 32420f523..000000000 --- a/src/components/IconMailOutline.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMailOutline: React.FC = (props) => ( - - - - -) - -export { IconMailOutline } diff --git a/src/components/IconMap.tsx b/src/components/IconMap.tsx deleted file mode 100644 index 3ebf3a899..000000000 --- a/src/components/IconMap.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMap: React.FC = (props) => ( - - - - -) - -export { IconMap } diff --git a/src/components/IconMapsUgc.tsx b/src/components/IconMapsUgc.tsx deleted file mode 100644 index bba09a876..000000000 --- a/src/components/IconMapsUgc.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMapsUgc: React.FC = (props) => ( - - - - -) - -export { IconMapsUgc } diff --git a/src/components/IconMarkChatRead.tsx b/src/components/IconMarkChatRead.tsx deleted file mode 100644 index 46c752df4..000000000 --- a/src/components/IconMarkChatRead.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMarkChatRead: React.FC = (props) => ( - - - - - - -) - -export { IconMarkChatRead } diff --git a/src/components/IconMarkChatUnread.tsx b/src/components/IconMarkChatUnread.tsx deleted file mode 100644 index 0a960c1e3..000000000 --- a/src/components/IconMarkChatUnread.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMarkChatUnread: React.FC = (props) => ( - - - - - - -) - -export { IconMarkChatUnread } diff --git a/src/components/IconMarkEmailRead.tsx b/src/components/IconMarkEmailRead.tsx deleted file mode 100644 index 2bc925722..000000000 --- a/src/components/IconMarkEmailRead.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMarkEmailRead: React.FC = (props) => ( - - - - - - -) - -export { IconMarkEmailRead } diff --git a/src/components/IconMarkEmailUnread.tsx b/src/components/IconMarkEmailUnread.tsx deleted file mode 100644 index 622effc06..000000000 --- a/src/components/IconMarkEmailUnread.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMarkEmailUnread: React.FC = (props) => ( - - - - - - -) - -export { IconMarkEmailUnread } diff --git a/src/components/IconMarkunread.tsx b/src/components/IconMarkunread.tsx deleted file mode 100644 index b3bf454a1..000000000 --- a/src/components/IconMarkunread.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMarkunread: React.FC = (props) => ( - - - - -) - -export { IconMarkunread } diff --git a/src/components/IconMarkunreadMailbox.tsx b/src/components/IconMarkunreadMailbox.tsx deleted file mode 100644 index 26f7558a1..000000000 --- a/src/components/IconMarkunreadMailbox.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMarkunreadMailbox: React.FC = (props) => ( - - - - -) - -export { IconMarkunreadMailbox } diff --git a/src/components/IconMasks.tsx b/src/components/IconMasks.tsx deleted file mode 100644 index cbcb7450b..000000000 --- a/src/components/IconMasks.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMasks: React.FC = (props) => ( - - - - -) - -export { IconMasks } diff --git a/src/components/IconMaximize.tsx b/src/components/IconMaximize.tsx deleted file mode 100644 index 34a2bbdb5..000000000 --- a/src/components/IconMaximize.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMaximize: React.FC = (props) => ( - - - - -) - -export { IconMaximize } diff --git a/src/components/IconMediation.tsx b/src/components/IconMediation.tsx deleted file mode 100644 index 54893a69c..000000000 --- a/src/components/IconMediation.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMediation: React.FC = (props) => ( - - - - -) - -export { IconMediation } diff --git a/src/components/IconMedicalServices.tsx b/src/components/IconMedicalServices.tsx deleted file mode 100644 index 7d66258a5..000000000 --- a/src/components/IconMedicalServices.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMedicalServices: React.FC = (props) => ( - - - - - - - - - - -) - -export { IconMedicalServices } diff --git a/src/components/IconMeetingRoom.tsx b/src/components/IconMeetingRoom.tsx deleted file mode 100644 index 1c1f336ac..000000000 --- a/src/components/IconMeetingRoom.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMeetingRoom: React.FC = (props) => ( - - - -) - -export { IconMeetingRoom } diff --git a/src/components/IconMemory.tsx b/src/components/IconMemory.tsx deleted file mode 100644 index 7bf738b08..000000000 --- a/src/components/IconMemory.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMemory: React.FC = (props) => ( - - - - -) - -export { IconMemory } diff --git a/src/components/IconMenu.tsx b/src/components/IconMenu.tsx deleted file mode 100644 index 7d9caba1a..000000000 --- a/src/components/IconMenu.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMenu: React.FC = (props) => ( - - - - -) - -export { IconMenu } diff --git a/src/components/IconMenuBook.tsx b/src/components/IconMenuBook.tsx deleted file mode 100644 index 55de022f2..000000000 --- a/src/components/IconMenuBook.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMenuBook: React.FC = (props) => ( - - - - - - - - - - - - - - - - -) - -export { IconMenuBook } diff --git a/src/components/IconMenuOpen.tsx b/src/components/IconMenuOpen.tsx deleted file mode 100644 index 36e9acb13..000000000 --- a/src/components/IconMenuOpen.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMenuOpen: React.FC = (props) => ( - - - - -) - -export { IconMenuOpen } diff --git a/src/components/IconMergeType.tsx b/src/components/IconMergeType.tsx deleted file mode 100644 index 851a311a0..000000000 --- a/src/components/IconMergeType.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMergeType: React.FC = (props) => ( - - - - -) - -export { IconMergeType } diff --git a/src/components/IconMessage.tsx b/src/components/IconMessage.tsx deleted file mode 100644 index df6cd209c..000000000 --- a/src/components/IconMessage.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMessage: React.FC = (props) => ( - - - - -) - -export { IconMessage } diff --git a/src/components/IconMic.tsx b/src/components/IconMic.tsx deleted file mode 100644 index 46b1b3f23..000000000 --- a/src/components/IconMic.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMic: React.FC = (props) => ( - - - - -) - -export { IconMic } diff --git a/src/components/IconMicNone.tsx b/src/components/IconMicNone.tsx deleted file mode 100644 index b7c5bf18a..000000000 --- a/src/components/IconMicNone.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMicNone: React.FC = (props) => ( - - - - -) - -export { IconMicNone } diff --git a/src/components/IconMicOff.tsx b/src/components/IconMicOff.tsx deleted file mode 100644 index c6bb1cd70..000000000 --- a/src/components/IconMicOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMicOff: React.FC = (props) => ( - - - - -) - -export { IconMicOff } diff --git a/src/components/IconMicrowave.tsx b/src/components/IconMicrowave.tsx deleted file mode 100644 index 3bd8a25a7..000000000 --- a/src/components/IconMicrowave.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMicrowave: React.FC = (props) => ( - - - - -) - -export { IconMicrowave } diff --git a/src/components/IconMilitaryTech.tsx b/src/components/IconMilitaryTech.tsx deleted file mode 100644 index 59fc8e685..000000000 --- a/src/components/IconMilitaryTech.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMilitaryTech: React.FC = (props) => ( - - - - - - - - -) - -export { IconMilitaryTech } diff --git a/src/components/IconMinimize.tsx b/src/components/IconMinimize.tsx deleted file mode 100644 index cb99b6069..000000000 --- a/src/components/IconMinimize.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMinimize: React.FC = (props) => ( - - - - -) - -export { IconMinimize } diff --git a/src/components/IconMiscellaneousServices.tsx b/src/components/IconMiscellaneousServices.tsx deleted file mode 100644 index fbfb65d0e..000000000 --- a/src/components/IconMiscellaneousServices.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMiscellaneousServices: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconMiscellaneousServices } diff --git a/src/components/IconMissedVideoCall.tsx b/src/components/IconMissedVideoCall.tsx deleted file mode 100644 index 788fd286b..000000000 --- a/src/components/IconMissedVideoCall.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMissedVideoCall: React.FC = (props) => ( - - - - -) - -export { IconMissedVideoCall } diff --git a/src/components/IconMms.tsx b/src/components/IconMms.tsx deleted file mode 100644 index 19fa60b7c..000000000 --- a/src/components/IconMms.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMms: React.FC = (props) => ( - - - - -) - -export { IconMms } diff --git a/src/components/IconMobileFriendly.tsx b/src/components/IconMobileFriendly.tsx deleted file mode 100644 index 8d033909e..000000000 --- a/src/components/IconMobileFriendly.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMobileFriendly: React.FC = (props) => ( - - - - -) - -export { IconMobileFriendly } diff --git a/src/components/IconMobileOff.tsx b/src/components/IconMobileOff.tsx deleted file mode 100644 index 61c1b5fce..000000000 --- a/src/components/IconMobileOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMobileOff: React.FC = (props) => ( - - - - -) - -export { IconMobileOff } diff --git a/src/components/IconMobileScreenShare.tsx b/src/components/IconMobileScreenShare.tsx deleted file mode 100644 index c3084d8e0..000000000 --- a/src/components/IconMobileScreenShare.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMobileScreenShare: React.FC = (props) => ( - - - - -) - -export { IconMobileScreenShare } diff --git a/src/components/IconModeComment.tsx b/src/components/IconModeComment.tsx deleted file mode 100644 index ae5d70ea3..000000000 --- a/src/components/IconModeComment.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconModeComment: React.FC = (props) => ( - - - - -) - -export { IconModeComment } diff --git a/src/components/IconModelTraining.tsx b/src/components/IconModelTraining.tsx deleted file mode 100644 index e0f5b0955..000000000 --- a/src/components/IconModelTraining.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconModelTraining: React.FC = (props) => ( - - - - - - -) - -export { IconModelTraining } diff --git a/src/components/IconMonetizationOn.tsx b/src/components/IconMonetizationOn.tsx deleted file mode 100644 index e73df5c25..000000000 --- a/src/components/IconMonetizationOn.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMonetizationOn: React.FC = (props) => ( - - - - -) - -export { IconMonetizationOn } diff --git a/src/components/IconMoney.tsx b/src/components/IconMoney.tsx deleted file mode 100644 index fecf1e5b8..000000000 --- a/src/components/IconMoney.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMoney: React.FC = (props) => ( - - - - - - -) - -export { IconMoney } diff --git a/src/components/IconMoneyOff.tsx b/src/components/IconMoneyOff.tsx deleted file mode 100644 index 8000bb416..000000000 --- a/src/components/IconMoneyOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMoneyOff: React.FC = (props) => ( - - - - -) - -export { IconMoneyOff } diff --git a/src/components/IconMonochromePhotos.tsx b/src/components/IconMonochromePhotos.tsx deleted file mode 100644 index f1b43b82a..000000000 --- a/src/components/IconMonochromePhotos.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMonochromePhotos: React.FC = (props) => ( - - - - - -) - -export { IconMonochromePhotos } diff --git a/src/components/IconMood.tsx b/src/components/IconMood.tsx deleted file mode 100644 index e49bfe002..000000000 --- a/src/components/IconMood.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMood: React.FC = (props) => ( - - - - -) - -export { IconMood } diff --git a/src/components/IconMoodBad.tsx b/src/components/IconMoodBad.tsx deleted file mode 100644 index d3145c922..000000000 --- a/src/components/IconMoodBad.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMoodBad: React.FC = (props) => ( - - - - -) - -export { IconMoodBad } diff --git a/src/components/IconMoped.tsx b/src/components/IconMoped.tsx deleted file mode 100644 index d7baaad37..000000000 --- a/src/components/IconMoped.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMoped: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconMoped } diff --git a/src/components/IconMore.tsx b/src/components/IconMore.tsx deleted file mode 100644 index 06cc66aeb..000000000 --- a/src/components/IconMore.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMore: React.FC = (props) => ( - - - - -) - -export { IconMore } diff --git a/src/components/IconMoreHoriz.tsx b/src/components/IconMoreHoriz.tsx deleted file mode 100644 index 707b087bd..000000000 --- a/src/components/IconMoreHoriz.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMoreHoriz: React.FC = (props) => ( - - - - -) - -export { IconMoreHoriz } diff --git a/src/components/IconMoreTime.tsx b/src/components/IconMoreTime.tsx deleted file mode 100644 index 768e6ec5c..000000000 --- a/src/components/IconMoreTime.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMoreTime: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconMoreTime } diff --git a/src/components/IconMoreVert.tsx b/src/components/IconMoreVert.tsx deleted file mode 100644 index b6d9bc40f..000000000 --- a/src/components/IconMoreVert.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMoreVert: React.FC = (props) => ( - - - - -) - -export { IconMoreVert } diff --git a/src/components/IconMotionPhotosOn.tsx b/src/components/IconMotionPhotosOn.tsx deleted file mode 100644 index d64c07ae4..000000000 --- a/src/components/IconMotionPhotosOn.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMotionPhotosOn: React.FC = (props) => ( - - - - - - -) - -export { IconMotionPhotosOn } diff --git a/src/components/IconMotionPhotosPause.tsx b/src/components/IconMotionPhotosPause.tsx deleted file mode 100644 index bf08e37e8..000000000 --- a/src/components/IconMotionPhotosPause.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMotionPhotosPause: React.FC = (props) => ( - - - - -) - -export { IconMotionPhotosPause } diff --git a/src/components/IconMotionPhotosPaused.tsx b/src/components/IconMotionPhotosPaused.tsx deleted file mode 100644 index 2ca37555f..000000000 --- a/src/components/IconMotionPhotosPaused.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMotionPhotosPaused: React.FC = (props) => ( - - - - - - -) - -export { IconMotionPhotosPaused } diff --git a/src/components/IconMouse.tsx b/src/components/IconMouse.tsx deleted file mode 100644 index 75df3034b..000000000 --- a/src/components/IconMouse.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMouse: React.FC = (props) => ( - - - - -) - -export { IconMouse } diff --git a/src/components/IconMoveToInbox.tsx b/src/components/IconMoveToInbox.tsx deleted file mode 100644 index edd387f30..000000000 --- a/src/components/IconMoveToInbox.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMoveToInbox: React.FC = (props) => ( - - - - -) - -export { IconMoveToInbox } diff --git a/src/components/IconMovie.tsx b/src/components/IconMovie.tsx deleted file mode 100644 index c9e7408fd..000000000 --- a/src/components/IconMovie.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMovie: React.FC = (props) => ( - - - - -) - -export { IconMovie } diff --git a/src/components/IconMovieCreation.tsx b/src/components/IconMovieCreation.tsx deleted file mode 100644 index 0c730835d..000000000 --- a/src/components/IconMovieCreation.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMovieCreation: React.FC = (props) => ( - - - - -) - -export { IconMovieCreation } diff --git a/src/components/IconMovieFilter.tsx b/src/components/IconMovieFilter.tsx deleted file mode 100644 index 39aa790e4..000000000 --- a/src/components/IconMovieFilter.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMovieFilter: React.FC = (props) => ( - - - - -) - -export { IconMovieFilter } diff --git a/src/components/IconMultilineChart.tsx b/src/components/IconMultilineChart.tsx deleted file mode 100644 index 451fcb8a9..000000000 --- a/src/components/IconMultilineChart.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMultilineChart: React.FC = (props) => ( - - - - -) - -export { IconMultilineChart } diff --git a/src/components/IconMultipleStop.tsx b/src/components/IconMultipleStop.tsx deleted file mode 100644 index d533961b6..000000000 --- a/src/components/IconMultipleStop.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMultipleStop: React.FC = (props) => ( - - - - - - -) - -export { IconMultipleStop } diff --git a/src/components/IconMuseum.tsx b/src/components/IconMuseum.tsx deleted file mode 100644 index 59642ae89..000000000 --- a/src/components/IconMuseum.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMuseum: React.FC = (props) => ( - - - - - - - - -) - -export { IconMuseum } diff --git a/src/components/IconMusicNote.tsx b/src/components/IconMusicNote.tsx deleted file mode 100644 index 29bc1f3a0..000000000 --- a/src/components/IconMusicNote.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMusicNote: React.FC = (props) => ( - - - - -) - -export { IconMusicNote } diff --git a/src/components/IconMusicOff.tsx b/src/components/IconMusicOff.tsx deleted file mode 100644 index 16bbee244..000000000 --- a/src/components/IconMusicOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMusicOff: React.FC = (props) => ( - - - - -) - -export { IconMusicOff } diff --git a/src/components/IconMusicVideo.tsx b/src/components/IconMusicVideo.tsx deleted file mode 100644 index bdf78d4a2..000000000 --- a/src/components/IconMusicVideo.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMusicVideo: React.FC = (props) => ( - - - - -) - -export { IconMusicVideo } diff --git a/src/components/IconMyLocation.tsx b/src/components/IconMyLocation.tsx deleted file mode 100644 index 812ca5225..000000000 --- a/src/components/IconMyLocation.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconMyLocation: React.FC = (props) => ( - - - - -) - -export { IconMyLocation } diff --git a/src/components/IconNat.tsx b/src/components/IconNat.tsx deleted file mode 100644 index 109fed837..000000000 --- a/src/components/IconNat.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNat: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconNat } diff --git a/src/components/IconNature.tsx b/src/components/IconNature.tsx deleted file mode 100644 index 7d263b3b7..000000000 --- a/src/components/IconNature.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNature: React.FC = (props) => ( - - - - -) - -export { IconNature } diff --git a/src/components/IconNaturePeople.tsx b/src/components/IconNaturePeople.tsx deleted file mode 100644 index bb2da7390..000000000 --- a/src/components/IconNaturePeople.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNaturePeople: React.FC = (props) => ( - - - - -) - -export { IconNaturePeople } diff --git a/src/components/IconNavigateBefore.tsx b/src/components/IconNavigateBefore.tsx deleted file mode 100644 index da6d9e716..000000000 --- a/src/components/IconNavigateBefore.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNavigateBefore: React.FC = (props) => ( - - - - -) - -export { IconNavigateBefore } diff --git a/src/components/IconNavigateNext.tsx b/src/components/IconNavigateNext.tsx deleted file mode 100644 index c2b5ef9c6..000000000 --- a/src/components/IconNavigateNext.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNavigateNext: React.FC = (props) => ( - - - - -) - -export { IconNavigateNext } diff --git a/src/components/IconNavigation.tsx b/src/components/IconNavigation.tsx deleted file mode 100644 index ce2e45da1..000000000 --- a/src/components/IconNavigation.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNavigation: React.FC = (props) => ( - - - - -) - -export { IconNavigation } diff --git a/src/components/IconNearMe.tsx b/src/components/IconNearMe.tsx deleted file mode 100644 index b895c9eac..000000000 --- a/src/components/IconNearMe.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNearMe: React.FC = (props) => ( - - - - -) - -export { IconNearMe } diff --git a/src/components/IconNearMeDisabled.tsx b/src/components/IconNearMeDisabled.tsx deleted file mode 100644 index 17d31354c..000000000 --- a/src/components/IconNearMeDisabled.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNearMeDisabled: React.FC = (props) => ( - - - - -) - -export { IconNearMeDisabled } diff --git a/src/components/IconNetworkCheck.tsx b/src/components/IconNetworkCheck.tsx deleted file mode 100644 index cfc5d7a3c..000000000 --- a/src/components/IconNetworkCheck.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNetworkCheck: React.FC = (props) => ( - - - - -) - -export { IconNetworkCheck } diff --git a/src/components/IconNetworkLocked.tsx b/src/components/IconNetworkLocked.tsx deleted file mode 100644 index c50c38a4b..000000000 --- a/src/components/IconNetworkLocked.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNetworkLocked: React.FC = (props) => ( - - - - -) - -export { IconNetworkLocked } diff --git a/src/components/IconNewReleases.tsx b/src/components/IconNewReleases.tsx deleted file mode 100644 index bfb62157b..000000000 --- a/src/components/IconNewReleases.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNewReleases: React.FC = (props) => ( - - - - -) - -export { IconNewReleases } diff --git a/src/components/IconNextPlan.tsx b/src/components/IconNextPlan.tsx deleted file mode 100644 index 68a41e9c9..000000000 --- a/src/components/IconNextPlan.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNextPlan: React.FC = (props) => ( - - - - - - - - -) - -export { IconNextPlan } diff --git a/src/components/IconNextWeek.tsx b/src/components/IconNextWeek.tsx deleted file mode 100644 index 86141f428..000000000 --- a/src/components/IconNextWeek.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNextWeek: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconNextWeek } diff --git a/src/components/IconNfc.tsx b/src/components/IconNfc.tsx deleted file mode 100644 index 412e9dcbb..000000000 --- a/src/components/IconNfc.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNfc: React.FC = (props) => ( - - - - - -) - -export { IconNfc } diff --git a/src/components/IconNightShelter.tsx b/src/components/IconNightShelter.tsx deleted file mode 100644 index 88956f920..000000000 --- a/src/components/IconNightShelter.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNightShelter: React.FC = (props) => ( - - - - -) - -export { IconNightShelter } diff --git a/src/components/IconNightsStay.tsx b/src/components/IconNightsStay.tsx deleted file mode 100644 index 18197daa1..000000000 --- a/src/components/IconNightsStay.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNightsStay: React.FC = (props) => ( - - - - - - - - - - - - - -) - -export { IconNightsStay } diff --git a/src/components/IconNoBackpack.tsx b/src/components/IconNoBackpack.tsx deleted file mode 100644 index deef2ee46..000000000 --- a/src/components/IconNoBackpack.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNoBackpack: React.FC = (props) => ( - - - - -) - -export { IconNoBackpack } diff --git a/src/components/IconNoCell.tsx b/src/components/IconNoCell.tsx deleted file mode 100644 index 11c3b39a8..000000000 --- a/src/components/IconNoCell.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNoCell: React.FC = (props) => ( - - - - - - -) - -export { IconNoCell } diff --git a/src/components/IconNoDrinks.tsx b/src/components/IconNoDrinks.tsx deleted file mode 100644 index f4bd91955..000000000 --- a/src/components/IconNoDrinks.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNoDrinks: React.FC = (props) => ( - - - - - - -) - -export { IconNoDrinks } diff --git a/src/components/IconNoEncryption.tsx b/src/components/IconNoEncryption.tsx deleted file mode 100644 index 035d83ddd..000000000 --- a/src/components/IconNoEncryption.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNoEncryption: React.FC = (props) => ( - - - - -) - -export { IconNoEncryption } diff --git a/src/components/IconNoFlash.tsx b/src/components/IconNoFlash.tsx deleted file mode 100644 index 9f74fec6c..000000000 --- a/src/components/IconNoFlash.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNoFlash: React.FC = (props) => ( - - - - - - -) - -export { IconNoFlash } diff --git a/src/components/IconNoFood.tsx b/src/components/IconNoFood.tsx deleted file mode 100644 index d72b85693..000000000 --- a/src/components/IconNoFood.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNoFood: React.FC = (props) => ( - - - - - - -) - -export { IconNoFood } diff --git a/src/components/IconNoLuggage.tsx b/src/components/IconNoLuggage.tsx deleted file mode 100644 index 74c4b0e90..000000000 --- a/src/components/IconNoLuggage.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNoLuggage: React.FC = (props) => ( - - - - -) - -export { IconNoLuggage } diff --git a/src/components/IconNoMeals.tsx b/src/components/IconNoMeals.tsx deleted file mode 100644 index 1663269fe..000000000 --- a/src/components/IconNoMeals.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNoMeals: React.FC = (props) => ( - - - - -) - -export { IconNoMeals } diff --git a/src/components/IconNoMeetingRoom.tsx b/src/components/IconNoMeetingRoom.tsx deleted file mode 100644 index 301b9d21e..000000000 --- a/src/components/IconNoMeetingRoom.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNoMeetingRoom: React.FC = (props) => ( - - - -) - -export { IconNoMeetingRoom } diff --git a/src/components/IconNoPhotography.tsx b/src/components/IconNoPhotography.tsx deleted file mode 100644 index 60f0725ec..000000000 --- a/src/components/IconNoPhotography.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNoPhotography: React.FC = (props) => ( - - - - - - -) - -export { IconNoPhotography } diff --git a/src/components/IconNoSim.tsx b/src/components/IconNoSim.tsx deleted file mode 100644 index cc8146294..000000000 --- a/src/components/IconNoSim.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNoSim: React.FC = (props) => ( - - - - -) - -export { IconNoSim } diff --git a/src/components/IconNoStroller.tsx b/src/components/IconNoStroller.tsx deleted file mode 100644 index c1a45d147..000000000 --- a/src/components/IconNoStroller.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNoStroller: React.FC = (props) => ( - - - - - - -) - -export { IconNoStroller } diff --git a/src/components/IconNoTransfer.tsx b/src/components/IconNoTransfer.tsx deleted file mode 100644 index 3ea36eb24..000000000 --- a/src/components/IconNoTransfer.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNoTransfer: React.FC = (props) => ( - - - - -) - -export { IconNoTransfer } diff --git a/src/components/IconNorth.tsx b/src/components/IconNorth.tsx deleted file mode 100644 index e619a6452..000000000 --- a/src/components/IconNorth.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNorth: React.FC = (props) => ( - - - - -) - -export { IconNorth } diff --git a/src/components/IconNorthEast.tsx b/src/components/IconNorthEast.tsx deleted file mode 100644 index eabcd4d27..000000000 --- a/src/components/IconNorthEast.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNorthEast: React.FC = (props) => ( - - - - -) - -export { IconNorthEast } diff --git a/src/components/IconNorthWest.tsx b/src/components/IconNorthWest.tsx deleted file mode 100644 index dec1c0309..000000000 --- a/src/components/IconNorthWest.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNorthWest: React.FC = (props) => ( - - - - -) - -export { IconNorthWest } diff --git a/src/components/IconNotAccessible.tsx b/src/components/IconNotAccessible.tsx deleted file mode 100644 index 3eea7975b..000000000 --- a/src/components/IconNotAccessible.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNotAccessible: React.FC = (props) => ( - - - - - - -) - -export { IconNotAccessible } diff --git a/src/components/IconNotInterested.tsx b/src/components/IconNotInterested.tsx deleted file mode 100644 index 8b63141cc..000000000 --- a/src/components/IconNotInterested.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNotInterested: React.FC = (props) => ( - - - - -) - -export { IconNotInterested } diff --git a/src/components/IconNotListedLocation.tsx b/src/components/IconNotListedLocation.tsx deleted file mode 100644 index df4067e1f..000000000 --- a/src/components/IconNotListedLocation.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNotListedLocation: React.FC = (props) => ( - - - - -) - -export { IconNotListedLocation } diff --git a/src/components/IconNotStarted.tsx b/src/components/IconNotStarted.tsx deleted file mode 100644 index 67f9bcc64..000000000 --- a/src/components/IconNotStarted.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNotStarted: React.FC = (props) => ( - - - - - - -) - -export { IconNotStarted } diff --git a/src/components/IconNote.tsx b/src/components/IconNote.tsx deleted file mode 100644 index 7ce7a384d..000000000 --- a/src/components/IconNote.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNote: React.FC = (props) => ( - - - - -) - -export { IconNote } diff --git a/src/components/IconNoteAdd.tsx b/src/components/IconNoteAdd.tsx deleted file mode 100644 index 773735850..000000000 --- a/src/components/IconNoteAdd.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNoteAdd: React.FC = (props) => ( - - - - -) - -export { IconNoteAdd } diff --git a/src/components/IconNotes.tsx b/src/components/IconNotes.tsx deleted file mode 100644 index 09d14baf1..000000000 --- a/src/components/IconNotes.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNotes: React.FC = (props) => ( - - - - -) - -export { IconNotes } diff --git a/src/components/IconNotificationImportant.tsx b/src/components/IconNotificationImportant.tsx deleted file mode 100644 index 969ad77da..000000000 --- a/src/components/IconNotificationImportant.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNotificationImportant: React.FC = (props) => ( - - - - -) - -export { IconNotificationImportant } diff --git a/src/components/IconNotifications.tsx b/src/components/IconNotifications.tsx deleted file mode 100644 index 6720fe981..000000000 --- a/src/components/IconNotifications.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNotifications: React.FC = (props) => ( - - - -) - -export { IconNotifications } diff --git a/src/components/IconNotificationsActive.tsx b/src/components/IconNotificationsActive.tsx deleted file mode 100644 index 95fd9ae62..000000000 --- a/src/components/IconNotificationsActive.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNotificationsActive: React.FC = (props) => ( - - - - -) - -export { IconNotificationsActive } diff --git a/src/components/IconNotificationsNone.tsx b/src/components/IconNotificationsNone.tsx deleted file mode 100644 index 8da099cb2..000000000 --- a/src/components/IconNotificationsNone.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNotificationsNone: React.FC = (props) => ( - - - - -) - -export { IconNotificationsNone } diff --git a/src/components/IconNotificationsOff.tsx b/src/components/IconNotificationsOff.tsx deleted file mode 100644 index 0f2e9c6cc..000000000 --- a/src/components/IconNotificationsOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNotificationsOff: React.FC = (props) => ( - - - - -) - -export { IconNotificationsOff } diff --git a/src/components/IconNotificationsPaused.tsx b/src/components/IconNotificationsPaused.tsx deleted file mode 100644 index 67e20c23c..000000000 --- a/src/components/IconNotificationsPaused.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconNotificationsPaused: React.FC = (props) => ( - - - - -) - -export { IconNotificationsPaused } diff --git a/src/components/IconOfflineBolt.tsx b/src/components/IconOfflineBolt.tsx deleted file mode 100644 index d3a583925..000000000 --- a/src/components/IconOfflineBolt.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconOfflineBolt: React.FC = (props) => ( - - - - -) - -export { IconOfflineBolt } diff --git a/src/components/IconOfflinePin.tsx b/src/components/IconOfflinePin.tsx deleted file mode 100644 index f46361df6..000000000 --- a/src/components/IconOfflinePin.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconOfflinePin: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconOfflinePin } diff --git a/src/components/IconOndemandVideo.tsx b/src/components/IconOndemandVideo.tsx deleted file mode 100644 index c82591bdf..000000000 --- a/src/components/IconOndemandVideo.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconOndemandVideo: React.FC = (props) => ( - - - - -) - -export { IconOndemandVideo } diff --git a/src/components/IconOnlinePrediction.tsx b/src/components/IconOnlinePrediction.tsx deleted file mode 100644 index 44c31c513..000000000 --- a/src/components/IconOnlinePrediction.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconOnlinePrediction: React.FC = (props) => ( - - - - - - -) - -export { IconOnlinePrediction } diff --git a/src/components/IconOpacity.tsx b/src/components/IconOpacity.tsx deleted file mode 100644 index 4efc52c33..000000000 --- a/src/components/IconOpacity.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconOpacity: React.FC = (props) => ( - - - - -) - -export { IconOpacity } diff --git a/src/components/IconOpenInBrowser.tsx b/src/components/IconOpenInBrowser.tsx deleted file mode 100644 index 637978453..000000000 --- a/src/components/IconOpenInBrowser.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconOpenInBrowser: React.FC = (props) => ( - - - - -) - -export { IconOpenInBrowser } diff --git a/src/components/IconOpenInFull.tsx b/src/components/IconOpenInFull.tsx deleted file mode 100644 index c4df93b08..000000000 --- a/src/components/IconOpenInFull.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconOpenInFull: React.FC = (props) => ( - - - - -) - -export { IconOpenInFull } diff --git a/src/components/IconOpenInNew.tsx b/src/components/IconOpenInNew.tsx deleted file mode 100644 index 50f5aebd8..000000000 --- a/src/components/IconOpenInNew.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconOpenInNew: React.FC = (props) => ( - - - - -) - -export { IconOpenInNew } diff --git a/src/components/IconOpenWith.tsx b/src/components/IconOpenWith.tsx deleted file mode 100644 index ad18954a3..000000000 --- a/src/components/IconOpenWith.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconOpenWith: React.FC = (props) => ( - - - - -) - -export { IconOpenWith } diff --git a/src/components/IconOutbond.tsx b/src/components/IconOutbond.tsx deleted file mode 100644 index 92790ab85..000000000 --- a/src/components/IconOutbond.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconOutbond: React.FC = (props) => ( - - - - -) - -export { IconOutbond } diff --git a/src/components/IconOutdoorGrill.tsx b/src/components/IconOutdoorGrill.tsx deleted file mode 100644 index 3ea950c4a..000000000 --- a/src/components/IconOutdoorGrill.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconOutdoorGrill: React.FC = (props) => ( - - - - - - - - - - - - - -) - -export { IconOutdoorGrill } diff --git a/src/components/IconOutlet.tsx b/src/components/IconOutlet.tsx deleted file mode 100644 index 1cdadd71d..000000000 --- a/src/components/IconOutlet.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconOutlet: React.FC = (props) => ( - - - - -) - -export { IconOutlet } diff --git a/src/components/IconOutlinedFlag.tsx b/src/components/IconOutlinedFlag.tsx deleted file mode 100644 index 8b536ed19..000000000 --- a/src/components/IconOutlinedFlag.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconOutlinedFlag: React.FC = (props) => ( - - - - -) - -export { IconOutlinedFlag } diff --git a/src/components/IconPages.tsx b/src/components/IconPages.tsx deleted file mode 100644 index 151718721..000000000 --- a/src/components/IconPages.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPages: React.FC = (props) => ( - - - - -) - -export { IconPages } diff --git a/src/components/IconPageview.tsx b/src/components/IconPageview.tsx deleted file mode 100644 index 0f2e07461..000000000 --- a/src/components/IconPageview.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPageview: React.FC = (props) => ( - - - - -) - -export { IconPageview } diff --git a/src/components/IconPalette.tsx b/src/components/IconPalette.tsx deleted file mode 100644 index c9e894259..000000000 --- a/src/components/IconPalette.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPalette: React.FC = (props) => ( - - - - -) - -export { IconPalette } diff --git a/src/components/IconPanTool.tsx b/src/components/IconPanTool.tsx deleted file mode 100644 index 36de9c99f..000000000 --- a/src/components/IconPanTool.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPanTool: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconPanTool } diff --git a/src/components/IconPanorama.tsx b/src/components/IconPanorama.tsx deleted file mode 100644 index 58ef8ea8f..000000000 --- a/src/components/IconPanorama.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPanorama: React.FC = (props) => ( - - - - -) - -export { IconPanorama } diff --git a/src/components/IconPanoramaFishEye.tsx b/src/components/IconPanoramaFishEye.tsx deleted file mode 100644 index fc5e9219d..000000000 --- a/src/components/IconPanoramaFishEye.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPanoramaFishEye: React.FC = (props) => ( - - - - -) - -export { IconPanoramaFishEye } diff --git a/src/components/IconPanoramaHorizontal.tsx b/src/components/IconPanoramaHorizontal.tsx deleted file mode 100644 index 696993163..000000000 --- a/src/components/IconPanoramaHorizontal.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPanoramaHorizontal: React.FC = (props) => ( - - - - -) - -export { IconPanoramaHorizontal } diff --git a/src/components/IconPanoramaVertical.tsx b/src/components/IconPanoramaVertical.tsx deleted file mode 100644 index 0e64edd61..000000000 --- a/src/components/IconPanoramaVertical.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPanoramaVertical: React.FC = (props) => ( - - - - -) - -export { IconPanoramaVertical } diff --git a/src/components/IconPanoramaWideAngle.tsx b/src/components/IconPanoramaWideAngle.tsx deleted file mode 100644 index 2dff10619..000000000 --- a/src/components/IconPanoramaWideAngle.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPanoramaWideAngle: React.FC = (props) => ( - - - - -) - -export { IconPanoramaWideAngle } diff --git a/src/components/IconPartyMode.tsx b/src/components/IconPartyMode.tsx deleted file mode 100644 index 34af91ed4..000000000 --- a/src/components/IconPartyMode.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPartyMode: React.FC = (props) => ( - - - - -) - -export { IconPartyMode } diff --git a/src/components/IconPause.tsx b/src/components/IconPause.tsx deleted file mode 100644 index 7b698c3a9..000000000 --- a/src/components/IconPause.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPause: React.FC = (props) => ( - - - - -) - -export { IconPause } diff --git a/src/components/IconPauseCircleFilled.tsx b/src/components/IconPauseCircleFilled.tsx deleted file mode 100644 index f85a23239..000000000 --- a/src/components/IconPauseCircleFilled.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPauseCircleFilled: React.FC = (props) => ( - - - - -) - -export { IconPauseCircleFilled } diff --git a/src/components/IconPauseCircleOutline.tsx b/src/components/IconPauseCircleOutline.tsx deleted file mode 100644 index b97a0e53f..000000000 --- a/src/components/IconPauseCircleOutline.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPauseCircleOutline: React.FC = (props) => ( - - - - -) - -export { IconPauseCircleOutline } diff --git a/src/components/IconPausePresentation.tsx b/src/components/IconPausePresentation.tsx deleted file mode 100644 index 0f285d734..000000000 --- a/src/components/IconPausePresentation.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPausePresentation: React.FC = (props) => ( - - - - - - -) - -export { IconPausePresentation } diff --git a/src/components/IconPayment.tsx b/src/components/IconPayment.tsx deleted file mode 100644 index 1b3330843..000000000 --- a/src/components/IconPayment.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPayment: React.FC = (props) => ( - - - - -) - -export { IconPayment } diff --git a/src/components/IconPayments.tsx b/src/components/IconPayments.tsx deleted file mode 100644 index 243d71435..000000000 --- a/src/components/IconPayments.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPayments: React.FC = (props) => ( - - - - -) - -export { IconPayments } diff --git a/src/components/IconPedalBike.tsx b/src/components/IconPedalBike.tsx deleted file mode 100644 index 07ca3153c..000000000 --- a/src/components/IconPedalBike.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPedalBike: React.FC = (props) => ( - - - - - - - - -) - -export { IconPedalBike } diff --git a/src/components/IconPending.tsx b/src/components/IconPending.tsx deleted file mode 100644 index cea277836..000000000 --- a/src/components/IconPending.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPending: React.FC = (props) => ( - - - - - - - - -) - -export { IconPending } diff --git a/src/components/IconPendingActions.tsx b/src/components/IconPendingActions.tsx deleted file mode 100644 index 13136bd49..000000000 --- a/src/components/IconPendingActions.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPendingActions: React.FC = (props) => ( - - - - - - -) - -export { IconPendingActions } diff --git a/src/components/IconPeople.tsx b/src/components/IconPeople.tsx deleted file mode 100644 index fa0a84c2a..000000000 --- a/src/components/IconPeople.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPeople: React.FC = (props) => ( - - - - -) - -export { IconPeople } diff --git a/src/components/IconPeopleAlt.tsx b/src/components/IconPeopleAlt.tsx deleted file mode 100644 index 87da69fea..000000000 --- a/src/components/IconPeopleAlt.tsx +++ /dev/null @@ -1,42 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPeopleAlt: React.FC = (props) => ( - - - - - - - - - - - - - - - - - - - - - - -) - -export { IconPeopleAlt } diff --git a/src/components/IconPeopleOutline.tsx b/src/components/IconPeopleOutline.tsx deleted file mode 100644 index 16e4c603d..000000000 --- a/src/components/IconPeopleOutline.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPeopleOutline: React.FC = (props) => ( - - - - -) - -export { IconPeopleOutline } diff --git a/src/components/IconPermCameraMic.tsx b/src/components/IconPermCameraMic.tsx deleted file mode 100644 index 34b2c0b72..000000000 --- a/src/components/IconPermCameraMic.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPermCameraMic: React.FC = (props) => ( - - - - -) - -export { IconPermCameraMic } diff --git a/src/components/IconPermContactCalendar.tsx b/src/components/IconPermContactCalendar.tsx deleted file mode 100644 index ce217a6aa..000000000 --- a/src/components/IconPermContactCalendar.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPermContactCalendar: React.FC = (props) => ( - - - - -) - -export { IconPermContactCalendar } diff --git a/src/components/IconPermDataSetting.tsx b/src/components/IconPermDataSetting.tsx deleted file mode 100644 index 87d342b1f..000000000 --- a/src/components/IconPermDataSetting.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPermDataSetting: React.FC = (props) => ( - - - - -) - -export { IconPermDataSetting } diff --git a/src/components/IconPermDeviceInformation.tsx b/src/components/IconPermDeviceInformation.tsx deleted file mode 100644 index 5bdacbc7c..000000000 --- a/src/components/IconPermDeviceInformation.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPermDeviceInformation: React.FC = (props) => ( - - - - -) - -export { IconPermDeviceInformation } diff --git a/src/components/IconPermIdentity.tsx b/src/components/IconPermIdentity.tsx deleted file mode 100644 index d88ac399b..000000000 --- a/src/components/IconPermIdentity.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPermIdentity: React.FC = (props) => ( - - - - -) - -export { IconPermIdentity } diff --git a/src/components/IconPermMedia.tsx b/src/components/IconPermMedia.tsx deleted file mode 100644 index 87bde2679..000000000 --- a/src/components/IconPermMedia.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPermMedia: React.FC = (props) => ( - - - - -) - -export { IconPermMedia } diff --git a/src/components/IconPermPhoneMsg.tsx b/src/components/IconPermPhoneMsg.tsx deleted file mode 100644 index 3eff804e9..000000000 --- a/src/components/IconPermPhoneMsg.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPermPhoneMsg: React.FC = (props) => ( - - - - -) - -export { IconPermPhoneMsg } diff --git a/src/components/IconPermScanWifi.tsx b/src/components/IconPermScanWifi.tsx deleted file mode 100644 index b2c1653ae..000000000 --- a/src/components/IconPermScanWifi.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPermScanWifi: React.FC = (props) => ( - - - - -) - -export { IconPermScanWifi } diff --git a/src/components/IconPerson.tsx b/src/components/IconPerson.tsx deleted file mode 100644 index 33734cfe2..000000000 --- a/src/components/IconPerson.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPerson: React.FC = (props) => ( - - - - -) - -export { IconPerson } diff --git a/src/components/IconPersonAdd.tsx b/src/components/IconPersonAdd.tsx deleted file mode 100644 index 833ae51ca..000000000 --- a/src/components/IconPersonAdd.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPersonAdd: React.FC = (props) => ( - - - - -) - -export { IconPersonAdd } diff --git a/src/components/IconPersonAddAlt1.tsx b/src/components/IconPersonAddAlt1.tsx deleted file mode 100644 index f5ab182d3..000000000 --- a/src/components/IconPersonAddAlt1.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPersonAddAlt1: React.FC = (props) => ( - - - - - - - - -) - -export { IconPersonAddAlt1 } diff --git a/src/components/IconPersonAddDisabled.tsx b/src/components/IconPersonAddDisabled.tsx deleted file mode 100644 index 5a67668c8..000000000 --- a/src/components/IconPersonAddDisabled.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPersonAddDisabled: React.FC = (props) => ( - - - - - -) - -export { IconPersonAddDisabled } diff --git a/src/components/IconPersonOutline.tsx b/src/components/IconPersonOutline.tsx deleted file mode 100644 index bb0ecd8a9..000000000 --- a/src/components/IconPersonOutline.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPersonOutline: React.FC = (props) => ( - - - - -) - -export { IconPersonOutline } diff --git a/src/components/IconPersonPin.tsx b/src/components/IconPersonPin.tsx deleted file mode 100644 index ddf114cd6..000000000 --- a/src/components/IconPersonPin.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPersonPin: React.FC = (props) => ( - - - - -) - -export { IconPersonPin } diff --git a/src/components/IconPersonPinCircle.tsx b/src/components/IconPersonPinCircle.tsx deleted file mode 100644 index 65562c4bd..000000000 --- a/src/components/IconPersonPinCircle.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPersonPinCircle: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconPersonPinCircle } diff --git a/src/components/IconPersonRemove.tsx b/src/components/IconPersonRemove.tsx deleted file mode 100644 index 8af77efd9..000000000 --- a/src/components/IconPersonRemove.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPersonRemove: React.FC = (props) => ( - - - - - - - - -) - -export { IconPersonRemove } diff --git a/src/components/IconPersonRemoveAlt1.tsx b/src/components/IconPersonRemoveAlt1.tsx deleted file mode 100644 index 772937fe9..000000000 --- a/src/components/IconPersonRemoveAlt1.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPersonRemoveAlt1: React.FC = (props) => ( - - - - - - - - -) - -export { IconPersonRemoveAlt1 } diff --git a/src/components/IconPersonSearch.tsx b/src/components/IconPersonSearch.tsx deleted file mode 100644 index a66400257..000000000 --- a/src/components/IconPersonSearch.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPersonSearch: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconPersonSearch } diff --git a/src/components/IconPersonalVideo.tsx b/src/components/IconPersonalVideo.tsx deleted file mode 100644 index d4091beb7..000000000 --- a/src/components/IconPersonalVideo.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPersonalVideo: React.FC = (props) => ( - - - - -) - -export { IconPersonalVideo } diff --git a/src/components/IconPestControl.tsx b/src/components/IconPestControl.tsx deleted file mode 100644 index cb60dc505..000000000 --- a/src/components/IconPestControl.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPestControl: React.FC = (props) => ( - - - - - - - - - - -) - -export { IconPestControl } diff --git a/src/components/IconPestControlRodent.tsx b/src/components/IconPestControlRodent.tsx deleted file mode 100644 index 9120a9974..000000000 --- a/src/components/IconPestControlRodent.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPestControlRodent: React.FC = (props) => ( - - - - - - - - -) - -export { IconPestControlRodent } diff --git a/src/components/IconPets.tsx b/src/components/IconPets.tsx deleted file mode 100644 index 8f7da4970..000000000 --- a/src/components/IconPets.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPets: React.FC = (props) => ( - - - - - - - - -) - -export { IconPets } diff --git a/src/components/IconPhone.tsx b/src/components/IconPhone.tsx deleted file mode 100644 index 75122c2e4..000000000 --- a/src/components/IconPhone.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhone: React.FC = (props) => ( - - - - -) - -export { IconPhone } diff --git a/src/components/IconPhoneAndroid.tsx b/src/components/IconPhoneAndroid.tsx deleted file mode 100644 index 6a35aba10..000000000 --- a/src/components/IconPhoneAndroid.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhoneAndroid: React.FC = (props) => ( - - - - -) - -export { IconPhoneAndroid } diff --git a/src/components/IconPhoneBluetoothSpeaker.tsx b/src/components/IconPhoneBluetoothSpeaker.tsx deleted file mode 100644 index 1829136df..000000000 --- a/src/components/IconPhoneBluetoothSpeaker.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhoneBluetoothSpeaker: React.FC = (props) => ( - - - - -) - -export { IconPhoneBluetoothSpeaker } diff --git a/src/components/IconPhoneCallback.tsx b/src/components/IconPhoneCallback.tsx deleted file mode 100644 index a2ed3a8cb..000000000 --- a/src/components/IconPhoneCallback.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhoneCallback: React.FC = (props) => ( - - - - -) - -export { IconPhoneCallback } diff --git a/src/components/IconPhoneDisabled.tsx b/src/components/IconPhoneDisabled.tsx deleted file mode 100644 index 8455c1009..000000000 --- a/src/components/IconPhoneDisabled.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhoneDisabled: React.FC = (props) => ( - - - - -) - -export { IconPhoneDisabled } diff --git a/src/components/IconPhoneEnabled.tsx b/src/components/IconPhoneEnabled.tsx deleted file mode 100644 index adea13f05..000000000 --- a/src/components/IconPhoneEnabled.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhoneEnabled: React.FC = (props) => ( - - - - -) - -export { IconPhoneEnabled } diff --git a/src/components/IconPhoneForwarded.tsx b/src/components/IconPhoneForwarded.tsx deleted file mode 100644 index 4e1a96c46..000000000 --- a/src/components/IconPhoneForwarded.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhoneForwarded: React.FC = (props) => ( - - - - -) - -export { IconPhoneForwarded } diff --git a/src/components/IconPhoneInTalk.tsx b/src/components/IconPhoneInTalk.tsx deleted file mode 100644 index 19bcfd514..000000000 --- a/src/components/IconPhoneInTalk.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhoneInTalk: React.FC = (props) => ( - - - - -) - -export { IconPhoneInTalk } diff --git a/src/components/IconPhoneIphone.tsx b/src/components/IconPhoneIphone.tsx deleted file mode 100644 index e57de1d54..000000000 --- a/src/components/IconPhoneIphone.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhoneIphone: React.FC = (props) => ( - - - - -) - -export { IconPhoneIphone } diff --git a/src/components/IconPhoneLocked.tsx b/src/components/IconPhoneLocked.tsx deleted file mode 100644 index b62ca731e..000000000 --- a/src/components/IconPhoneLocked.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhoneLocked: React.FC = (props) => ( - - - - -) - -export { IconPhoneLocked } diff --git a/src/components/IconPhoneMissed.tsx b/src/components/IconPhoneMissed.tsx deleted file mode 100644 index eb71b1658..000000000 --- a/src/components/IconPhoneMissed.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhoneMissed: React.FC = (props) => ( - - - - -) - -export { IconPhoneMissed } diff --git a/src/components/IconPhonePaused.tsx b/src/components/IconPhonePaused.tsx deleted file mode 100644 index a1b94242b..000000000 --- a/src/components/IconPhonePaused.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhonePaused: React.FC = (props) => ( - - - - -) - -export { IconPhonePaused } diff --git a/src/components/IconPhonelink.tsx b/src/components/IconPhonelink.tsx deleted file mode 100644 index 173fe7206..000000000 --- a/src/components/IconPhonelink.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhonelink: React.FC = (props) => ( - - - - -) - -export { IconPhonelink } diff --git a/src/components/IconPhonelinkErase.tsx b/src/components/IconPhonelinkErase.tsx deleted file mode 100644 index 344457fa5..000000000 --- a/src/components/IconPhonelinkErase.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhonelinkErase: React.FC = (props) => ( - - - - -) - -export { IconPhonelinkErase } diff --git a/src/components/IconPhonelinkLock.tsx b/src/components/IconPhonelinkLock.tsx deleted file mode 100644 index 1b0850fa5..000000000 --- a/src/components/IconPhonelinkLock.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhonelinkLock: React.FC = (props) => ( - - - - -) - -export { IconPhonelinkLock } diff --git a/src/components/IconPhonelinkOff.tsx b/src/components/IconPhonelinkOff.tsx deleted file mode 100644 index 4d80f2831..000000000 --- a/src/components/IconPhonelinkOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhonelinkOff: React.FC = (props) => ( - - - - -) - -export { IconPhonelinkOff } diff --git a/src/components/IconPhonelinkRing.tsx b/src/components/IconPhonelinkRing.tsx deleted file mode 100644 index 841da56b4..000000000 --- a/src/components/IconPhonelinkRing.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhonelinkRing: React.FC = (props) => ( - - - - -) - -export { IconPhonelinkRing } diff --git a/src/components/IconPhonelinkSetup.tsx b/src/components/IconPhonelinkSetup.tsx deleted file mode 100644 index d25b962ab..000000000 --- a/src/components/IconPhonelinkSetup.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhonelinkSetup: React.FC = (props) => ( - - - - -) - -export { IconPhonelinkSetup } diff --git a/src/components/IconPhoto.tsx b/src/components/IconPhoto.tsx deleted file mode 100644 index a6fc13e97..000000000 --- a/src/components/IconPhoto.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhoto: React.FC = (props) => ( - - - - -) - -export { IconPhoto } diff --git a/src/components/IconPhotoAlbum.tsx b/src/components/IconPhotoAlbum.tsx deleted file mode 100644 index 02a6c7c02..000000000 --- a/src/components/IconPhotoAlbum.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhotoAlbum: React.FC = (props) => ( - - - - -) - -export { IconPhotoAlbum } diff --git a/src/components/IconPhotoCamera.tsx b/src/components/IconPhotoCamera.tsx deleted file mode 100644 index edeaef049..000000000 --- a/src/components/IconPhotoCamera.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhotoCamera: React.FC = (props) => ( - - - - - -) - -export { IconPhotoCamera } diff --git a/src/components/IconPhotoFilter.tsx b/src/components/IconPhotoFilter.tsx deleted file mode 100644 index f708082ce..000000000 --- a/src/components/IconPhotoFilter.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhotoFilter: React.FC = (props) => ( - - - - -) - -export { IconPhotoFilter } diff --git a/src/components/IconPhotoLibrary.tsx b/src/components/IconPhotoLibrary.tsx deleted file mode 100644 index 8d6271371..000000000 --- a/src/components/IconPhotoLibrary.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhotoLibrary: React.FC = (props) => ( - - - - -) - -export { IconPhotoLibrary } diff --git a/src/components/IconPhotoSizeSelectActual.tsx b/src/components/IconPhotoSizeSelectActual.tsx deleted file mode 100644 index 0ecd2c192..000000000 --- a/src/components/IconPhotoSizeSelectActual.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhotoSizeSelectActual: React.FC = (props) => ( - - - - -) - -export { IconPhotoSizeSelectActual } diff --git a/src/components/IconPhotoSizeSelectLarge.tsx b/src/components/IconPhotoSizeSelectLarge.tsx deleted file mode 100644 index 6ae4824e2..000000000 --- a/src/components/IconPhotoSizeSelectLarge.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhotoSizeSelectLarge: React.FC = (props) => ( - - - - -) - -export { IconPhotoSizeSelectLarge } diff --git a/src/components/IconPhotoSizeSelectSmall.tsx b/src/components/IconPhotoSizeSelectSmall.tsx deleted file mode 100644 index b7d527c28..000000000 --- a/src/components/IconPhotoSizeSelectSmall.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPhotoSizeSelectSmall: React.FC = (props) => ( - - - - -) - -export { IconPhotoSizeSelectSmall } diff --git a/src/components/IconPictureAsPdf.tsx b/src/components/IconPictureAsPdf.tsx deleted file mode 100644 index 509fc4965..000000000 --- a/src/components/IconPictureAsPdf.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPictureAsPdf: React.FC = (props) => ( - - - - -) - -export { IconPictureAsPdf } diff --git a/src/components/IconPictureInPicture.tsx b/src/components/IconPictureInPicture.tsx deleted file mode 100644 index 0660216ba..000000000 --- a/src/components/IconPictureInPicture.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPictureInPicture: React.FC = (props) => ( - - - - -) - -export { IconPictureInPicture } diff --git a/src/components/IconPictureInPictureAlt.tsx b/src/components/IconPictureInPictureAlt.tsx deleted file mode 100644 index db5531665..000000000 --- a/src/components/IconPictureInPictureAlt.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPictureInPictureAlt: React.FC = (props) => ( - - - - -) - -export { IconPictureInPictureAlt } diff --git a/src/components/IconPieChart.tsx b/src/components/IconPieChart.tsx deleted file mode 100644 index 2f1dd347d..000000000 --- a/src/components/IconPieChart.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPieChart: React.FC = (props) => ( - - - - -) - -export { IconPieChart } diff --git a/src/components/IconPinDrop.tsx b/src/components/IconPinDrop.tsx deleted file mode 100644 index eac3cc7a4..000000000 --- a/src/components/IconPinDrop.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPinDrop: React.FC = (props) => ( - - - - -) - -export { IconPinDrop } diff --git a/src/components/IconPlace.tsx b/src/components/IconPlace.tsx deleted file mode 100644 index c46660258..000000000 --- a/src/components/IconPlace.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPlace: React.FC = (props) => ( - - - - -) - -export { IconPlace } diff --git a/src/components/IconPlagiarism.tsx b/src/components/IconPlagiarism.tsx deleted file mode 100644 index c68501ccf..000000000 --- a/src/components/IconPlagiarism.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPlagiarism: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconPlagiarism } diff --git a/src/components/IconPlayArrow.tsx b/src/components/IconPlayArrow.tsx deleted file mode 100644 index c393ac994..000000000 --- a/src/components/IconPlayArrow.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPlayArrow: React.FC = (props) => ( - - - - -) - -export { IconPlayArrow } diff --git a/src/components/IconPlayCircleFilled.tsx b/src/components/IconPlayCircleFilled.tsx deleted file mode 100644 index 95455ad5a..000000000 --- a/src/components/IconPlayCircleFilled.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPlayCircleFilled: React.FC = (props) => ( - - - - -) - -export { IconPlayCircleFilled } diff --git a/src/components/IconPlayCircleOutline.tsx b/src/components/IconPlayCircleOutline.tsx deleted file mode 100644 index 478ab3954..000000000 --- a/src/components/IconPlayCircleOutline.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPlayCircleOutline: React.FC = (props) => ( - - - - -) - -export { IconPlayCircleOutline } diff --git a/src/components/IconPlayForWork.tsx b/src/components/IconPlayForWork.tsx deleted file mode 100644 index c07f34572..000000000 --- a/src/components/IconPlayForWork.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPlayForWork: React.FC = (props) => ( - - - - -) - -export { IconPlayForWork } diff --git a/src/components/IconPlaylistAdd.tsx b/src/components/IconPlaylistAdd.tsx deleted file mode 100644 index 6d17492ca..000000000 --- a/src/components/IconPlaylistAdd.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPlaylistAdd: React.FC = (props) => ( - - - - -) - -export { IconPlaylistAdd } diff --git a/src/components/IconPlaylistAddCheck.tsx b/src/components/IconPlaylistAddCheck.tsx deleted file mode 100644 index 457a22272..000000000 --- a/src/components/IconPlaylistAddCheck.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPlaylistAddCheck: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconPlaylistAddCheck } diff --git a/src/components/IconPlaylistPlay.tsx b/src/components/IconPlaylistPlay.tsx deleted file mode 100644 index ec962781f..000000000 --- a/src/components/IconPlaylistPlay.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPlaylistPlay: React.FC = (props) => ( - - - - -) - -export { IconPlaylistPlay } diff --git a/src/components/IconPlumbing.tsx b/src/components/IconPlumbing.tsx deleted file mode 100644 index 499e81002..000000000 --- a/src/components/IconPlumbing.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPlumbing: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconPlumbing } diff --git a/src/components/IconPlusOne.tsx b/src/components/IconPlusOne.tsx deleted file mode 100644 index 34387e679..000000000 --- a/src/components/IconPlusOne.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPlusOne: React.FC = (props) => ( - - - - -) - -export { IconPlusOne } diff --git a/src/components/IconPointOfSale.tsx b/src/components/IconPointOfSale.tsx deleted file mode 100644 index be47a8d1b..000000000 --- a/src/components/IconPointOfSale.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPointOfSale: React.FC = (props) => ( - - - - - - -) - -export { IconPointOfSale } diff --git a/src/components/IconPolicy.tsx b/src/components/IconPolicy.tsx deleted file mode 100644 index 2f967e484..000000000 --- a/src/components/IconPolicy.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPolicy: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconPolicy } diff --git a/src/components/IconPoll.tsx b/src/components/IconPoll.tsx deleted file mode 100644 index f565f22d5..000000000 --- a/src/components/IconPoll.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPoll: React.FC = (props) => ( - - - - -) - -export { IconPoll } diff --git a/src/components/IconPolymer.tsx b/src/components/IconPolymer.tsx deleted file mode 100644 index aab47b69c..000000000 --- a/src/components/IconPolymer.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPolymer: React.FC = (props) => ( - - - - -) - -export { IconPolymer } diff --git a/src/components/IconPool.tsx b/src/components/IconPool.tsx deleted file mode 100644 index b9b3822f5..000000000 --- a/src/components/IconPool.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPool: React.FC = (props) => ( - - - - - -) - -export { IconPool } diff --git a/src/components/IconPortableWifiOff.tsx b/src/components/IconPortableWifiOff.tsx deleted file mode 100644 index 337bd8b35..000000000 --- a/src/components/IconPortableWifiOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPortableWifiOff: React.FC = (props) => ( - - - - -) - -export { IconPortableWifiOff } diff --git a/src/components/IconPortrait.tsx b/src/components/IconPortrait.tsx deleted file mode 100644 index ed9808da0..000000000 --- a/src/components/IconPortrait.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPortrait: React.FC = (props) => ( - - - - -) - -export { IconPortrait } diff --git a/src/components/IconPostAdd.tsx b/src/components/IconPostAdd.tsx deleted file mode 100644 index 4fe270bcb..000000000 --- a/src/components/IconPostAdd.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPostAdd: React.FC = (props) => ( - - - - - - - - - - - - - - - -) - -export { IconPostAdd } diff --git a/src/components/IconPower.tsx b/src/components/IconPower.tsx deleted file mode 100644 index c639021d2..000000000 --- a/src/components/IconPower.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPower: React.FC = (props) => ( - - - - -) - -export { IconPower } diff --git a/src/components/IconPowerInput.tsx b/src/components/IconPowerInput.tsx deleted file mode 100644 index b7d71c4cf..000000000 --- a/src/components/IconPowerInput.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPowerInput: React.FC = (props) => ( - - - - -) - -export { IconPowerInput } diff --git a/src/components/IconPowerOff.tsx b/src/components/IconPowerOff.tsx deleted file mode 100644 index 9fa05a348..000000000 --- a/src/components/IconPowerOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPowerOff: React.FC = (props) => ( - - - - -) - -export { IconPowerOff } diff --git a/src/components/IconPowerSettingsNew.tsx b/src/components/IconPowerSettingsNew.tsx deleted file mode 100644 index 184f04fb8..000000000 --- a/src/components/IconPowerSettingsNew.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPowerSettingsNew: React.FC = (props) => ( - - - - -) - -export { IconPowerSettingsNew } diff --git a/src/components/IconPregnantWoman.tsx b/src/components/IconPregnantWoman.tsx deleted file mode 100644 index dbc2cd4f0..000000000 --- a/src/components/IconPregnantWoman.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPregnantWoman: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconPregnantWoman } diff --git a/src/components/IconPresentToAll.tsx b/src/components/IconPresentToAll.tsx deleted file mode 100644 index 3796c96a8..000000000 --- a/src/components/IconPresentToAll.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPresentToAll: React.FC = (props) => ( - - - - -) - -export { IconPresentToAll } diff --git a/src/components/IconPreview.tsx b/src/components/IconPreview.tsx deleted file mode 100644 index 39825b8a1..000000000 --- a/src/components/IconPreview.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPreview: React.FC = (props) => ( - - - - - - -) - -export { IconPreview } diff --git a/src/components/IconPrint.tsx b/src/components/IconPrint.tsx deleted file mode 100644 index ec8860e45..000000000 --- a/src/components/IconPrint.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPrint: React.FC = (props) => ( - - - - -) - -export { IconPrint } diff --git a/src/components/IconPrintDisabled.tsx b/src/components/IconPrintDisabled.tsx deleted file mode 100644 index 6248dd00f..000000000 --- a/src/components/IconPrintDisabled.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPrintDisabled: React.FC = (props) => ( - - - - -) - -export { IconPrintDisabled } diff --git a/src/components/IconPriorityHigh.tsx b/src/components/IconPriorityHigh.tsx deleted file mode 100644 index f08947090..000000000 --- a/src/components/IconPriorityHigh.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPriorityHigh: React.FC = (props) => ( - - - - - -) - -export { IconPriorityHigh } diff --git a/src/components/IconPrivacyTip.tsx b/src/components/IconPrivacyTip.tsx deleted file mode 100644 index 89c2e9fc1..000000000 --- a/src/components/IconPrivacyTip.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPrivacyTip: React.FC = (props) => ( - - - - - - -) - -export { IconPrivacyTip } diff --git a/src/components/IconPsychology.tsx b/src/components/IconPsychology.tsx deleted file mode 100644 index 5c754c94b..000000000 --- a/src/components/IconPsychology.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPsychology: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconPsychology } diff --git a/src/components/IconPublic.tsx b/src/components/IconPublic.tsx deleted file mode 100644 index 80689cd85..000000000 --- a/src/components/IconPublic.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPublic: React.FC = (props) => ( - - - - -) - -export { IconPublic } diff --git a/src/components/IconPublicOff.tsx b/src/components/IconPublicOff.tsx deleted file mode 100644 index 220d5a18a..000000000 --- a/src/components/IconPublicOff.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPublicOff: React.FC = (props) => ( - - - - - - -) - -export { IconPublicOff } diff --git a/src/components/IconPublish.tsx b/src/components/IconPublish.tsx deleted file mode 100644 index 997318743..000000000 --- a/src/components/IconPublish.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPublish: React.FC = (props) => ( - - - - -) - -export { IconPublish } diff --git a/src/components/IconPublishedWithChanges.tsx b/src/components/IconPublishedWithChanges.tsx deleted file mode 100644 index f58b8ff5f..000000000 --- a/src/components/IconPublishedWithChanges.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPublishedWithChanges: React.FC = (props) => ( - - - - -) - -export { IconPublishedWithChanges } diff --git a/src/components/IconPushPin.tsx b/src/components/IconPushPin.tsx deleted file mode 100644 index 5e635989f..000000000 --- a/src/components/IconPushPin.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconPushPin: React.FC = (props) => ( - - - - - - - - -) - -export { IconPushPin } diff --git a/src/components/IconQrCode.tsx b/src/components/IconQrCode.tsx deleted file mode 100644 index cab92d4ff..000000000 --- a/src/components/IconQrCode.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconQrCode: React.FC = (props) => ( - - - - - - - - - - - - - - - - - - - - -) - -export { IconQrCode } diff --git a/src/components/IconQrCode2.tsx b/src/components/IconQrCode2.tsx deleted file mode 100644 index d0d72bafc..000000000 --- a/src/components/IconQrCode2.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconQrCode2: React.FC = (props) => ( - - - - - - -) - -export { IconQrCode2 } diff --git a/src/components/IconQrCodeScanner.tsx b/src/components/IconQrCodeScanner.tsx deleted file mode 100644 index 8a83e2bb4..000000000 --- a/src/components/IconQrCodeScanner.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconQrCodeScanner: React.FC = (props) => ( - - - - -) - -export { IconQrCodeScanner } diff --git a/src/components/IconQueryBuilder.tsx b/src/components/IconQueryBuilder.tsx deleted file mode 100644 index 15e62580e..000000000 --- a/src/components/IconQueryBuilder.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconQueryBuilder: React.FC = (props) => ( - - - - - -) - -export { IconQueryBuilder } diff --git a/src/components/IconQuestionAnswer.tsx b/src/components/IconQuestionAnswer.tsx deleted file mode 100644 index b34822eb4..000000000 --- a/src/components/IconQuestionAnswer.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconQuestionAnswer: React.FC = (props) => ( - - - - -) - -export { IconQuestionAnswer } diff --git a/src/components/IconQueue.tsx b/src/components/IconQueue.tsx deleted file mode 100644 index 2d3bb48f5..000000000 --- a/src/components/IconQueue.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconQueue: React.FC = (props) => ( - - - - -) - -export { IconQueue } diff --git a/src/components/IconQueueMusic.tsx b/src/components/IconQueueMusic.tsx deleted file mode 100644 index e30d59b4a..000000000 --- a/src/components/IconQueueMusic.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconQueueMusic: React.FC = (props) => ( - - - - -) - -export { IconQueueMusic } diff --git a/src/components/IconQueuePlayNext.tsx b/src/components/IconQueuePlayNext.tsx deleted file mode 100644 index 1b02959ae..000000000 --- a/src/components/IconQueuePlayNext.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconQueuePlayNext: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconQueuePlayNext } diff --git a/src/components/IconQuickreply.tsx b/src/components/IconQuickreply.tsx deleted file mode 100644 index dd86aae4f..000000000 --- a/src/components/IconQuickreply.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconQuickreply: React.FC = (props) => ( - - - - - - - - - - - - - - - -) - -export { IconQuickreply } diff --git a/src/components/IconRadio.tsx b/src/components/IconRadio.tsx deleted file mode 100644 index 7fe93e297..000000000 --- a/src/components/IconRadio.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRadio: React.FC = (props) => ( - - - - -) - -export { IconRadio } diff --git a/src/components/IconRadioButtonChecked.tsx b/src/components/IconRadioButtonChecked.tsx deleted file mode 100644 index 9cf19f61d..000000000 --- a/src/components/IconRadioButtonChecked.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRadioButtonChecked: React.FC = (props) => ( - - - - -) - -export { IconRadioButtonChecked } diff --git a/src/components/IconRadioButtonUnchecked.tsx b/src/components/IconRadioButtonUnchecked.tsx deleted file mode 100644 index 72513df21..000000000 --- a/src/components/IconRadioButtonUnchecked.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRadioButtonUnchecked: React.FC = (props) => ( - - - - -) - -export { IconRadioButtonUnchecked } diff --git a/src/components/IconRateReview.tsx b/src/components/IconRateReview.tsx deleted file mode 100644 index d034a93c2..000000000 --- a/src/components/IconRateReview.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRateReview: React.FC = (props) => ( - - - - -) - -export { IconRateReview } diff --git a/src/components/IconReadMore.tsx b/src/components/IconReadMore.tsx deleted file mode 100644 index 86a287c34..000000000 --- a/src/components/IconReadMore.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconReadMore: React.FC = (props) => ( - - - - - - - - - - - - - -) - -export { IconReadMore } diff --git a/src/components/IconReceipt.tsx b/src/components/IconReceipt.tsx deleted file mode 100644 index f82db8a94..000000000 --- a/src/components/IconReceipt.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconReceipt: React.FC = (props) => ( - - - - -) - -export { IconReceipt } diff --git a/src/components/IconReceiptLong.tsx b/src/components/IconReceiptLong.tsx deleted file mode 100644 index 97adf4c1b..000000000 --- a/src/components/IconReceiptLong.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconReceiptLong: React.FC = (props) => ( - - - - - - - - - - -) - -export { IconReceiptLong } diff --git a/src/components/IconRecentActors.tsx b/src/components/IconRecentActors.tsx deleted file mode 100644 index 8f813b38d..000000000 --- a/src/components/IconRecentActors.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRecentActors: React.FC = (props) => ( - - - - -) - -export { IconRecentActors } diff --git a/src/components/IconRecordVoiceOver.tsx b/src/components/IconRecordVoiceOver.tsx deleted file mode 100644 index 7f80b4885..000000000 --- a/src/components/IconRecordVoiceOver.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRecordVoiceOver: React.FC = (props) => ( - - - - - -) - -export { IconRecordVoiceOver } diff --git a/src/components/IconRedeem.tsx b/src/components/IconRedeem.tsx deleted file mode 100644 index 85d686b70..000000000 --- a/src/components/IconRedeem.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRedeem: React.FC = (props) => ( - - - - -) - -export { IconRedeem } diff --git a/src/components/IconRedo.tsx b/src/components/IconRedo.tsx deleted file mode 100644 index c5903c7ce..000000000 --- a/src/components/IconRedo.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRedo: React.FC = (props) => ( - - - - -) - -export { IconRedo } diff --git a/src/components/IconReduceCapacity.tsx b/src/components/IconReduceCapacity.tsx deleted file mode 100644 index cd731ec7f..000000000 --- a/src/components/IconReduceCapacity.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconReduceCapacity: React.FC = (props) => ( - - - - -) - -export { IconReduceCapacity } diff --git a/src/components/IconRefresh.tsx b/src/components/IconRefresh.tsx deleted file mode 100644 index 357d77a3b..000000000 --- a/src/components/IconRefresh.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRefresh: React.FC = (props) => ( - - - - -) - -export { IconRefresh } diff --git a/src/components/IconRemove.tsx b/src/components/IconRemove.tsx deleted file mode 100644 index 344c49acf..000000000 --- a/src/components/IconRemove.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRemove: React.FC = (props) => ( - - - - -) - -export { IconRemove } diff --git a/src/components/IconRemoveCircle.tsx b/src/components/IconRemoveCircle.tsx deleted file mode 100644 index 8dc930f26..000000000 --- a/src/components/IconRemoveCircle.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRemoveCircle: React.FC = (props) => ( - - - - -) - -export { IconRemoveCircle } diff --git a/src/components/IconRemoveCircleOutline.tsx b/src/components/IconRemoveCircleOutline.tsx deleted file mode 100644 index c7f15e4e4..000000000 --- a/src/components/IconRemoveCircleOutline.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRemoveCircleOutline: React.FC = (props) => ( - - - - -) - -export { IconRemoveCircleOutline } diff --git a/src/components/IconRemoveFromQueue.tsx b/src/components/IconRemoveFromQueue.tsx deleted file mode 100644 index 6be88964e..000000000 --- a/src/components/IconRemoveFromQueue.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRemoveFromQueue: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconRemoveFromQueue } diff --git a/src/components/IconRemoveRedEye.tsx b/src/components/IconRemoveRedEye.tsx deleted file mode 100644 index ce5db81c1..000000000 --- a/src/components/IconRemoveRedEye.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRemoveRedEye: React.FC = (props) => ( - - - - -) - -export { IconRemoveRedEye } diff --git a/src/components/IconRemoveShoppingCart.tsx b/src/components/IconRemoveShoppingCart.tsx deleted file mode 100644 index 9ba39fec4..000000000 --- a/src/components/IconRemoveShoppingCart.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRemoveShoppingCart: React.FC = (props) => ( - - - - -) - -export { IconRemoveShoppingCart } diff --git a/src/components/IconReorder.tsx b/src/components/IconReorder.tsx deleted file mode 100644 index a8482b573..000000000 --- a/src/components/IconReorder.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconReorder: React.FC = (props) => ( - - - - -) - -export { IconReorder } diff --git a/src/components/IconRepeat.tsx b/src/components/IconRepeat.tsx deleted file mode 100644 index 8fbf80d68..000000000 --- a/src/components/IconRepeat.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRepeat: React.FC = (props) => ( - - - - -) - -export { IconRepeat } diff --git a/src/components/IconRepeatOne.tsx b/src/components/IconRepeatOne.tsx deleted file mode 100644 index 3fb113938..000000000 --- a/src/components/IconRepeatOne.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRepeatOne: React.FC = (props) => ( - - - - -) - -export { IconRepeatOne } diff --git a/src/components/IconReplay.tsx b/src/components/IconReplay.tsx deleted file mode 100644 index e8e9519d0..000000000 --- a/src/components/IconReplay.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconReplay: React.FC = (props) => ( - - - - -) - -export { IconReplay } diff --git a/src/components/IconReplay10.tsx b/src/components/IconReplay10.tsx deleted file mode 100644 index 1d69024c9..000000000 --- a/src/components/IconReplay10.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconReplay10: React.FC = (props) => ( - - - - - - - - - - - - - - -) - -export { IconReplay10 } diff --git a/src/components/IconReplay30.tsx b/src/components/IconReplay30.tsx deleted file mode 100644 index 92e99d6f8..000000000 --- a/src/components/IconReplay30.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconReplay30: React.FC = (props) => ( - - - - - - - - - - - - - - -) - -export { IconReplay30 } diff --git a/src/components/IconReplay5.tsx b/src/components/IconReplay5.tsx deleted file mode 100644 index ea799bb18..000000000 --- a/src/components/IconReplay5.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconReplay5: React.FC = (props) => ( - - - - - - - - - - - - - -) - -export { IconReplay5 } diff --git a/src/components/IconReply.tsx b/src/components/IconReply.tsx deleted file mode 100644 index 3be7a9c49..000000000 --- a/src/components/IconReply.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconReply: React.FC = (props) => ( - - - - -) - -export { IconReply } diff --git a/src/components/IconReplyAll.tsx b/src/components/IconReplyAll.tsx deleted file mode 100644 index 822765cb9..000000000 --- a/src/components/IconReplyAll.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconReplyAll: React.FC = (props) => ( - - - - -) - -export { IconReplyAll } diff --git a/src/components/IconReport.tsx b/src/components/IconReport.tsx deleted file mode 100644 index 0582619fc..000000000 --- a/src/components/IconReport.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconReport: React.FC = (props) => ( - - - - -) - -export { IconReport } diff --git a/src/components/IconReportOff.tsx b/src/components/IconReportOff.tsx deleted file mode 100644 index 036ba589c..000000000 --- a/src/components/IconReportOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconReportOff: React.FC = (props) => ( - - - - -) - -export { IconReportOff } diff --git a/src/components/IconReportProblem.tsx b/src/components/IconReportProblem.tsx deleted file mode 100644 index 1b4000465..000000000 --- a/src/components/IconReportProblem.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconReportProblem: React.FC = (props) => ( - - - - -) - -export { IconReportProblem } diff --git a/src/components/IconRequestPage.tsx b/src/components/IconRequestPage.tsx deleted file mode 100644 index 9a2fbac03..000000000 --- a/src/components/IconRequestPage.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRequestPage: React.FC = (props) => ( - - - - -) - -export { IconRequestPage } diff --git a/src/components/IconRequestQuote.tsx b/src/components/IconRequestQuote.tsx deleted file mode 100644 index fdeb6e552..000000000 --- a/src/components/IconRequestQuote.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRequestQuote: React.FC = (props) => ( - - - - - - -) - -export { IconRequestQuote } diff --git a/src/components/IconRestaurant.tsx b/src/components/IconRestaurant.tsx deleted file mode 100644 index 4dff9f3c2..000000000 --- a/src/components/IconRestaurant.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRestaurant: React.FC = (props) => ( - - - - -) - -export { IconRestaurant } diff --git a/src/components/IconRestaurantMenu.tsx b/src/components/IconRestaurantMenu.tsx deleted file mode 100644 index 785a1e0fe..000000000 --- a/src/components/IconRestaurantMenu.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRestaurantMenu: React.FC = (props) => ( - - - - -) - -export { IconRestaurantMenu } diff --git a/src/components/IconRestore.tsx b/src/components/IconRestore.tsx deleted file mode 100644 index 223bcbcd8..000000000 --- a/src/components/IconRestore.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRestore: React.FC = (props) => ( - - - - -) - -export { IconRestore } diff --git a/src/components/IconRestoreFromTrash.tsx b/src/components/IconRestoreFromTrash.tsx deleted file mode 100644 index 5207ba312..000000000 --- a/src/components/IconRestoreFromTrash.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRestoreFromTrash: React.FC = (props) => ( - - - - -) - -export { IconRestoreFromTrash } diff --git a/src/components/IconRestorePage.tsx b/src/components/IconRestorePage.tsx deleted file mode 100644 index 7ecee1618..000000000 --- a/src/components/IconRestorePage.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRestorePage: React.FC = (props) => ( - - - - -) - -export { IconRestorePage } diff --git a/src/components/IconRiceBowl.tsx b/src/components/IconRiceBowl.tsx deleted file mode 100644 index da2d55084..000000000 --- a/src/components/IconRiceBowl.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRiceBowl: React.FC = (props) => ( - - - - -) - -export { IconRiceBowl } diff --git a/src/components/IconRingVolume.tsx b/src/components/IconRingVolume.tsx deleted file mode 100644 index c018bbe9e..000000000 --- a/src/components/IconRingVolume.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRingVolume: React.FC = (props) => ( - - - - -) - -export { IconRingVolume } diff --git a/src/components/IconRoofing.tsx b/src/components/IconRoofing.tsx deleted file mode 100644 index 4f772bd87..000000000 --- a/src/components/IconRoofing.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRoofing: React.FC = (props) => ( - - - - -) - -export { IconRoofing } diff --git a/src/components/IconRoom.tsx b/src/components/IconRoom.tsx deleted file mode 100644 index 76ef7521c..000000000 --- a/src/components/IconRoom.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRoom: React.FC = (props) => ( - - - - -) - -export { IconRoom } diff --git a/src/components/IconRoomPreferences.tsx b/src/components/IconRoomPreferences.tsx deleted file mode 100644 index 9bb1bef50..000000000 --- a/src/components/IconRoomPreferences.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRoomPreferences: React.FC = (props) => ( - - - - - - -) - -export { IconRoomPreferences } diff --git a/src/components/IconRoomService.tsx b/src/components/IconRoomService.tsx deleted file mode 100644 index 3cb4f84f1..000000000 --- a/src/components/IconRoomService.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRoomService: React.FC = (props) => ( - - - - -) - -export { IconRoomService } diff --git a/src/components/IconRotate90DegreesCcw.tsx b/src/components/IconRotate90DegreesCcw.tsx deleted file mode 100644 index a6a90b4a7..000000000 --- a/src/components/IconRotate90DegreesCcw.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRotate90DegreesCcw: React.FC = (props) => ( - - - - -) - -export { IconRotate90DegreesCcw } diff --git a/src/components/IconRotateLeft.tsx b/src/components/IconRotateLeft.tsx deleted file mode 100644 index dc9781a84..000000000 --- a/src/components/IconRotateLeft.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRotateLeft: React.FC = (props) => ( - - - - -) - -export { IconRotateLeft } diff --git a/src/components/IconRotateRight.tsx b/src/components/IconRotateRight.tsx deleted file mode 100644 index de83ec457..000000000 --- a/src/components/IconRotateRight.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRotateRight: React.FC = (props) => ( - - - - -) - -export { IconRotateRight } diff --git a/src/components/IconRoundedCorner.tsx b/src/components/IconRoundedCorner.tsx deleted file mode 100644 index 6ee14394b..000000000 --- a/src/components/IconRoundedCorner.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRoundedCorner: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconRoundedCorner } diff --git a/src/components/IconRouter.tsx b/src/components/IconRouter.tsx deleted file mode 100644 index 63c9391ac..000000000 --- a/src/components/IconRouter.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRouter: React.FC = (props) => ( - - - - -) - -export { IconRouter } diff --git a/src/components/IconRowing.tsx b/src/components/IconRowing.tsx deleted file mode 100644 index b8540cfec..000000000 --- a/src/components/IconRowing.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRowing: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconRowing } diff --git a/src/components/IconRssFeed.tsx b/src/components/IconRssFeed.tsx deleted file mode 100644 index 1687c7fe3..000000000 --- a/src/components/IconRssFeed.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRssFeed: React.FC = (props) => ( - - - - - -) - -export { IconRssFeed } diff --git a/src/components/IconRule.tsx b/src/components/IconRule.tsx deleted file mode 100644 index eb8c8e893..000000000 --- a/src/components/IconRule.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRule: React.FC = (props) => ( - - - - - - -) - -export { IconRule } diff --git a/src/components/IconRuleFolder.tsx b/src/components/IconRuleFolder.tsx deleted file mode 100644 index bf1c2e0ec..000000000 --- a/src/components/IconRuleFolder.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRuleFolder: React.FC = (props) => ( - - - - - - -) - -export { IconRuleFolder } diff --git a/src/components/IconRunCircle.tsx b/src/components/IconRunCircle.tsx deleted file mode 100644 index d2df68723..000000000 --- a/src/components/IconRunCircle.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRunCircle: React.FC = (props) => ( - - - - - - - - -) - -export { IconRunCircle } diff --git a/src/components/IconRvHookup.tsx b/src/components/IconRvHookup.tsx deleted file mode 100644 index c7bb3dfe6..000000000 --- a/src/components/IconRvHookup.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconRvHookup: React.FC = (props) => ( - - - - - -) - -export { IconRvHookup } diff --git a/src/components/IconSanitizer.tsx b/src/components/IconSanitizer.tsx deleted file mode 100644 index 696ab1c34..000000000 --- a/src/components/IconSanitizer.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSanitizer: React.FC = (props) => ( - - - - -) - -export { IconSanitizer } diff --git a/src/components/IconSatellite.tsx b/src/components/IconSatellite.tsx deleted file mode 100644 index 6a62e5712..000000000 --- a/src/components/IconSatellite.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSatellite: React.FC = (props) => ( - - - - -) - -export { IconSatellite } diff --git a/src/components/IconSave.tsx b/src/components/IconSave.tsx deleted file mode 100644 index f08802658..000000000 --- a/src/components/IconSave.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSave: React.FC = (props) => ( - - - - -) - -export { IconSave } diff --git a/src/components/IconSaveAlt.tsx b/src/components/IconSaveAlt.tsx deleted file mode 100644 index 1ca0a9e28..000000000 --- a/src/components/IconSaveAlt.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSaveAlt: React.FC = (props) => ( - - - - -) - -export { IconSaveAlt } diff --git a/src/components/IconScanner.tsx b/src/components/IconScanner.tsx deleted file mode 100644 index ae0d2e202..000000000 --- a/src/components/IconScanner.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconScanner: React.FC = (props) => ( - - - - -) - -export { IconScanner } diff --git a/src/components/IconScatterPlot.tsx b/src/components/IconScatterPlot.tsx deleted file mode 100644 index b4b8e9aad..000000000 --- a/src/components/IconScatterPlot.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconScatterPlot: React.FC = (props) => ( - - - - - - - - -) - -export { IconScatterPlot } diff --git a/src/components/IconSchedule.tsx b/src/components/IconSchedule.tsx deleted file mode 100644 index 3b026fe4b..000000000 --- a/src/components/IconSchedule.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSchedule: React.FC = (props) => ( - - - - - -) - -export { IconSchedule } diff --git a/src/components/IconSchool.tsx b/src/components/IconSchool.tsx deleted file mode 100644 index 2d837d55c..000000000 --- a/src/components/IconSchool.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSchool: React.FC = (props) => ( - - - - -) - -export { IconSchool } diff --git a/src/components/IconScience.tsx b/src/components/IconScience.tsx deleted file mode 100644 index fbd438027..000000000 --- a/src/components/IconScience.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconScience: React.FC = (props) => ( - - - - - - - - -) - -export { IconScience } diff --git a/src/components/IconScore.tsx b/src/components/IconScore.tsx deleted file mode 100644 index e8833b1f1..000000000 --- a/src/components/IconScore.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconScore: React.FC = (props) => ( - - - - -) - -export { IconScore } diff --git a/src/components/IconScreenLockLandscape.tsx b/src/components/IconScreenLockLandscape.tsx deleted file mode 100644 index 844aa16f4..000000000 --- a/src/components/IconScreenLockLandscape.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconScreenLockLandscape: React.FC = (props) => ( - - - - -) - -export { IconScreenLockLandscape } diff --git a/src/components/IconScreenLockPortrait.tsx b/src/components/IconScreenLockPortrait.tsx deleted file mode 100644 index 424c41a28..000000000 --- a/src/components/IconScreenLockPortrait.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconScreenLockPortrait: React.FC = (props) => ( - - - - -) - -export { IconScreenLockPortrait } diff --git a/src/components/IconScreenLockRotation.tsx b/src/components/IconScreenLockRotation.tsx deleted file mode 100644 index 2336c0eb1..000000000 --- a/src/components/IconScreenLockRotation.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconScreenLockRotation: React.FC = (props) => ( - - - - -) - -export { IconScreenLockRotation } diff --git a/src/components/IconScreenRotation.tsx b/src/components/IconScreenRotation.tsx deleted file mode 100644 index 59202be7c..000000000 --- a/src/components/IconScreenRotation.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconScreenRotation: React.FC = (props) => ( - - - - -) - -export { IconScreenRotation } diff --git a/src/components/IconScreenShare.tsx b/src/components/IconScreenShare.tsx deleted file mode 100644 index 5f492e0c3..000000000 --- a/src/components/IconScreenShare.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconScreenShare: React.FC = (props) => ( - - - - -) - -export { IconScreenShare } diff --git a/src/components/IconSdCard.tsx b/src/components/IconSdCard.tsx deleted file mode 100644 index 64051035d..000000000 --- a/src/components/IconSdCard.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSdCard: React.FC = (props) => ( - - - - -) - -export { IconSdCard } diff --git a/src/components/IconSdStorage.tsx b/src/components/IconSdStorage.tsx deleted file mode 100644 index 9d82d526b..000000000 --- a/src/components/IconSdStorage.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSdStorage: React.FC = (props) => ( - - - - -) - -export { IconSdStorage } diff --git a/src/components/IconSearch.tsx b/src/components/IconSearch.tsx deleted file mode 100644 index 32fe7dc1f..000000000 --- a/src/components/IconSearch.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSearch: React.FC = (props) => ( - - - - -) - -export { IconSearch } diff --git a/src/components/IconSearchOff.tsx b/src/components/IconSearchOff.tsx deleted file mode 100644 index d95043ed2..000000000 --- a/src/components/IconSearchOff.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSearchOff: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconSearchOff } diff --git a/src/components/IconSecurity.tsx b/src/components/IconSecurity.tsx deleted file mode 100644 index d8809b288..000000000 --- a/src/components/IconSecurity.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSecurity: React.FC = (props) => ( - - - - -) - -export { IconSecurity } diff --git a/src/components/IconSelectAll.tsx b/src/components/IconSelectAll.tsx deleted file mode 100644 index ab4996d5b..000000000 --- a/src/components/IconSelectAll.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSelectAll: React.FC = (props) => ( - - - - -) - -export { IconSelectAll } diff --git a/src/components/IconSelfImprovement.tsx b/src/components/IconSelfImprovement.tsx deleted file mode 100644 index de53c9325..000000000 --- a/src/components/IconSelfImprovement.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSelfImprovement: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconSelfImprovement } diff --git a/src/components/IconSend.tsx b/src/components/IconSend.tsx deleted file mode 100644 index 0bac7231c..000000000 --- a/src/components/IconSend.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSend: React.FC = (props) => ( - - - - -) - -export { IconSend } diff --git a/src/components/IconSensorDoor.tsx b/src/components/IconSensorDoor.tsx deleted file mode 100644 index 2a8fdc8fe..000000000 --- a/src/components/IconSensorDoor.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSensorDoor: React.FC = (props) => ( - - - - - - -) - -export { IconSensorDoor } diff --git a/src/components/IconSensorWindow.tsx b/src/components/IconSensorWindow.tsx deleted file mode 100644 index f87857228..000000000 --- a/src/components/IconSensorWindow.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSensorWindow: React.FC = (props) => ( - - - - - - -) - -export { IconSensorWindow } diff --git a/src/components/IconSentimentDissatisfied.tsx b/src/components/IconSentimentDissatisfied.tsx deleted file mode 100644 index 2ab4bd444..000000000 --- a/src/components/IconSentimentDissatisfied.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSentimentDissatisfied: React.FC = (props) => ( - - - - - - -) - -export { IconSentimentDissatisfied } diff --git a/src/components/IconSentimentSatisfied.tsx b/src/components/IconSentimentSatisfied.tsx deleted file mode 100644 index d67fa5ea1..000000000 --- a/src/components/IconSentimentSatisfied.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSentimentSatisfied: React.FC = (props) => ( - - - - - - -) - -export { IconSentimentSatisfied } diff --git a/src/components/IconSentimentSatisfiedAlt.tsx b/src/components/IconSentimentSatisfiedAlt.tsx deleted file mode 100644 index e449de64c..000000000 --- a/src/components/IconSentimentSatisfiedAlt.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSentimentSatisfiedAlt: React.FC = (props) => ( - - - - - - - - - -) - -export { IconSentimentSatisfiedAlt } diff --git a/src/components/IconSentimentVeryDissatisfied.tsx b/src/components/IconSentimentVeryDissatisfied.tsx deleted file mode 100644 index 745522f43..000000000 --- a/src/components/IconSentimentVeryDissatisfied.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSentimentVeryDissatisfied: React.FC = (props) => ( - - - - - - -) - -export { IconSentimentVeryDissatisfied } diff --git a/src/components/IconSentimentVerySatisfied.tsx b/src/components/IconSentimentVerySatisfied.tsx deleted file mode 100644 index f3426f887..000000000 --- a/src/components/IconSentimentVerySatisfied.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSentimentVerySatisfied: React.FC = (props) => ( - - - - - - -) - -export { IconSentimentVerySatisfied } diff --git a/src/components/IconSetMeal.tsx b/src/components/IconSetMeal.tsx deleted file mode 100644 index a9cc1f16e..000000000 --- a/src/components/IconSetMeal.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSetMeal: React.FC = (props) => ( - - - - -) - -export { IconSetMeal } diff --git a/src/components/IconSettings.tsx b/src/components/IconSettings.tsx deleted file mode 100644 index c0cb5bb3a..000000000 --- a/src/components/IconSettings.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettings: React.FC = (props) => ( - - - - - - -) - -export { IconSettings } diff --git a/src/components/IconSettingsApplications.tsx b/src/components/IconSettingsApplications.tsx deleted file mode 100644 index 4ecb33c0c..000000000 --- a/src/components/IconSettingsApplications.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsApplications: React.FC = (props) => ( - - - - -) - -export { IconSettingsApplications } diff --git a/src/components/IconSettingsBackupRestore.tsx b/src/components/IconSettingsBackupRestore.tsx deleted file mode 100644 index 26adc7661..000000000 --- a/src/components/IconSettingsBackupRestore.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsBackupRestore: React.FC = (props) => ( - - - - -) - -export { IconSettingsBackupRestore } diff --git a/src/components/IconSettingsBluetooth.tsx b/src/components/IconSettingsBluetooth.tsx deleted file mode 100644 index 303ebf8df..000000000 --- a/src/components/IconSettingsBluetooth.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsBluetooth: React.FC = (props) => ( - - - - -) - -export { IconSettingsBluetooth } diff --git a/src/components/IconSettingsBrightness.tsx b/src/components/IconSettingsBrightness.tsx deleted file mode 100644 index 67f26fc2a..000000000 --- a/src/components/IconSettingsBrightness.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsBrightness: React.FC = (props) => ( - - - - -) - -export { IconSettingsBrightness } diff --git a/src/components/IconSettingsCell.tsx b/src/components/IconSettingsCell.tsx deleted file mode 100644 index cbb1e9a84..000000000 --- a/src/components/IconSettingsCell.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsCell: React.FC = (props) => ( - - - - -) - -export { IconSettingsCell } diff --git a/src/components/IconSettingsEthernet.tsx b/src/components/IconSettingsEthernet.tsx deleted file mode 100644 index c735f2040..000000000 --- a/src/components/IconSettingsEthernet.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsEthernet: React.FC = (props) => ( - - - - -) - -export { IconSettingsEthernet } diff --git a/src/components/IconSettingsInputAntenna.tsx b/src/components/IconSettingsInputAntenna.tsx deleted file mode 100644 index f24713de7..000000000 --- a/src/components/IconSettingsInputAntenna.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsInputAntenna: React.FC = (props) => ( - - - - -) - -export { IconSettingsInputAntenna } diff --git a/src/components/IconSettingsInputComponent.tsx b/src/components/IconSettingsInputComponent.tsx deleted file mode 100644 index 4a51b6b63..000000000 --- a/src/components/IconSettingsInputComponent.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsInputComponent: React.FC = (props) => ( - - - - -) - -export { IconSettingsInputComponent } diff --git a/src/components/IconSettingsInputComposite.tsx b/src/components/IconSettingsInputComposite.tsx deleted file mode 100644 index c10d633ee..000000000 --- a/src/components/IconSettingsInputComposite.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsInputComposite: React.FC = (props) => ( - - - - -) - -export { IconSettingsInputComposite } diff --git a/src/components/IconSettingsInputHdmi.tsx b/src/components/IconSettingsInputHdmi.tsx deleted file mode 100644 index 9608b925d..000000000 --- a/src/components/IconSettingsInputHdmi.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsInputHdmi: React.FC = (props) => ( - - - - -) - -export { IconSettingsInputHdmi } diff --git a/src/components/IconSettingsInputSvideo.tsx b/src/components/IconSettingsInputSvideo.tsx deleted file mode 100644 index daafd1f81..000000000 --- a/src/components/IconSettingsInputSvideo.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsInputSvideo: React.FC = (props) => ( - - - - -) - -export { IconSettingsInputSvideo } diff --git a/src/components/IconSettingsOverscan.tsx b/src/components/IconSettingsOverscan.tsx deleted file mode 100644 index 77ee541fd..000000000 --- a/src/components/IconSettingsOverscan.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsOverscan: React.FC = (props) => ( - - - - -) - -export { IconSettingsOverscan } diff --git a/src/components/IconSettingsPhone.tsx b/src/components/IconSettingsPhone.tsx deleted file mode 100644 index f8e1b2400..000000000 --- a/src/components/IconSettingsPhone.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsPhone: React.FC = (props) => ( - - - - -) - -export { IconSettingsPhone } diff --git a/src/components/IconSettingsPower.tsx b/src/components/IconSettingsPower.tsx deleted file mode 100644 index 276d364f7..000000000 --- a/src/components/IconSettingsPower.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsPower: React.FC = (props) => ( - - - - -) - -export { IconSettingsPower } diff --git a/src/components/IconSettingsRemote.tsx b/src/components/IconSettingsRemote.tsx deleted file mode 100644 index d061306cf..000000000 --- a/src/components/IconSettingsRemote.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsRemote: React.FC = (props) => ( - - - - -) - -export { IconSettingsRemote } diff --git a/src/components/IconSettingsSystemDaydream.tsx b/src/components/IconSettingsSystemDaydream.tsx deleted file mode 100644 index 63a671774..000000000 --- a/src/components/IconSettingsSystemDaydream.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsSystemDaydream: React.FC = (props) => ( - - - - -) - -export { IconSettingsSystemDaydream } diff --git a/src/components/IconSettingsVoice.tsx b/src/components/IconSettingsVoice.tsx deleted file mode 100644 index 28fec0837..000000000 --- a/src/components/IconSettingsVoice.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSettingsVoice: React.FC = (props) => ( - - - - -) - -export { IconSettingsVoice } diff --git a/src/components/IconShare.tsx b/src/components/IconShare.tsx deleted file mode 100644 index d860f4db8..000000000 --- a/src/components/IconShare.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconShare: React.FC = (props) => ( - - - - -) - -export { IconShare } diff --git a/src/components/IconShop.tsx b/src/components/IconShop.tsx deleted file mode 100644 index 3d5d5681f..000000000 --- a/src/components/IconShop.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconShop: React.FC = (props) => ( - - - - -) - -export { IconShop } diff --git a/src/components/IconShopTwo.tsx b/src/components/IconShopTwo.tsx deleted file mode 100644 index c9914339c..000000000 --- a/src/components/IconShopTwo.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconShopTwo: React.FC = (props) => ( - - - - -) - -export { IconShopTwo } diff --git a/src/components/IconShoppingBag.tsx b/src/components/IconShoppingBag.tsx deleted file mode 100644 index 2f7ad437c..000000000 --- a/src/components/IconShoppingBag.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconShoppingBag: React.FC = (props) => ( - - - - - - -) - -export { IconShoppingBag } diff --git a/src/components/IconShoppingBasket.tsx b/src/components/IconShoppingBasket.tsx deleted file mode 100644 index 3f8c23a3a..000000000 --- a/src/components/IconShoppingBasket.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconShoppingBasket: React.FC = (props) => ( - - - - -) - -export { IconShoppingBasket } diff --git a/src/components/IconShoppingCart.tsx b/src/components/IconShoppingCart.tsx deleted file mode 100644 index 1a5ef0115..000000000 --- a/src/components/IconShoppingCart.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconShoppingCart: React.FC = (props) => ( - - - - -) - -export { IconShoppingCart } diff --git a/src/components/IconShortText.tsx b/src/components/IconShortText.tsx deleted file mode 100644 index 29be34cb1..000000000 --- a/src/components/IconShortText.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconShortText: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconShortText } diff --git a/src/components/IconShowChart.tsx b/src/components/IconShowChart.tsx deleted file mode 100644 index e366a8acb..000000000 --- a/src/components/IconShowChart.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconShowChart: React.FC = (props) => ( - - - - -) - -export { IconShowChart } diff --git a/src/components/IconShuffle.tsx b/src/components/IconShuffle.tsx deleted file mode 100644 index eadf7011e..000000000 --- a/src/components/IconShuffle.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconShuffle: React.FC = (props) => ( - - - - -) - -export { IconShuffle } diff --git a/src/components/IconShutterSpeed.tsx b/src/components/IconShutterSpeed.tsx deleted file mode 100644 index 37d3d0deb..000000000 --- a/src/components/IconShutterSpeed.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconShutterSpeed: React.FC = (props) => ( - - - - -) - -export { IconShutterSpeed } diff --git a/src/components/IconSick.tsx b/src/components/IconSick.tsx deleted file mode 100644 index 647a0d18c..000000000 --- a/src/components/IconSick.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSick: React.FC = (props) => ( - - - - -) - -export { IconSick } diff --git a/src/components/IconSignalCellular4Bar.tsx b/src/components/IconSignalCellular4Bar.tsx deleted file mode 100644 index 927d493fd..000000000 --- a/src/components/IconSignalCellular4Bar.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSignalCellular4Bar: React.FC = (props) => ( - - - - -) - -export { IconSignalCellular4Bar } diff --git a/src/components/IconSignalCellularAlt.tsx b/src/components/IconSignalCellularAlt.tsx deleted file mode 100644 index 31967eaf9..000000000 --- a/src/components/IconSignalCellularAlt.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSignalCellularAlt: React.FC = (props) => ( - - - - -) - -export { IconSignalCellularAlt } diff --git a/src/components/IconSignalCellularConnectedNoInternet4Bar.tsx b/src/components/IconSignalCellularConnectedNoInternet4Bar.tsx deleted file mode 100644 index 90b71187e..000000000 --- a/src/components/IconSignalCellularConnectedNoInternet4Bar.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSignalCellularConnectedNoInternet4Bar: React.FC = ( - props -) => ( - - - - -) - -export { IconSignalCellularConnectedNoInternet4Bar } diff --git a/src/components/IconSignalCellularNoSim.tsx b/src/components/IconSignalCellularNoSim.tsx deleted file mode 100644 index 53ac374ed..000000000 --- a/src/components/IconSignalCellularNoSim.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSignalCellularNoSim: React.FC = (props) => ( - - - - - -) - -export { IconSignalCellularNoSim } diff --git a/src/components/IconSignalCellularNull.tsx b/src/components/IconSignalCellularNull.tsx deleted file mode 100644 index 854027eae..000000000 --- a/src/components/IconSignalCellularNull.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSignalCellularNull: React.FC = (props) => ( - - - - -) - -export { IconSignalCellularNull } diff --git a/src/components/IconSignalCellularOff.tsx b/src/components/IconSignalCellularOff.tsx deleted file mode 100644 index 8b37ce8bb..000000000 --- a/src/components/IconSignalCellularOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSignalCellularOff: React.FC = (props) => ( - - - - -) - -export { IconSignalCellularOff } diff --git a/src/components/IconSignalWifi4Bar.tsx b/src/components/IconSignalWifi4Bar.tsx deleted file mode 100644 index c72182aa7..000000000 --- a/src/components/IconSignalWifi4Bar.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSignalWifi4Bar: React.FC = (props) => ( - - - - -) - -export { IconSignalWifi4Bar } diff --git a/src/components/IconSignalWifi4BarLock.tsx b/src/components/IconSignalWifi4BarLock.tsx deleted file mode 100644 index d5ee5a424..000000000 --- a/src/components/IconSignalWifi4BarLock.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSignalWifi4BarLock: React.FC = (props) => ( - - - - -) - -export { IconSignalWifi4BarLock } diff --git a/src/components/IconSignalWifiOff.tsx b/src/components/IconSignalWifiOff.tsx deleted file mode 100644 index 20a198ffd..000000000 --- a/src/components/IconSignalWifiOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSignalWifiOff: React.FC = (props) => ( - - - - -) - -export { IconSignalWifiOff } diff --git a/src/components/IconSimCard.tsx b/src/components/IconSimCard.tsx deleted file mode 100644 index 2f565daa9..000000000 --- a/src/components/IconSimCard.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSimCard: React.FC = (props) => ( - - - - -) - -export { IconSimCard } diff --git a/src/components/IconSingleBed.tsx b/src/components/IconSingleBed.tsx deleted file mode 100644 index ecf9cd299..000000000 --- a/src/components/IconSingleBed.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSingleBed: React.FC = (props) => ( - - - - - - - - -) - -export { IconSingleBed } diff --git a/src/components/IconSkipNext.tsx b/src/components/IconSkipNext.tsx deleted file mode 100644 index 3b50ed1ac..000000000 --- a/src/components/IconSkipNext.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSkipNext: React.FC = (props) => ( - - - - -) - -export { IconSkipNext } diff --git a/src/components/IconSkipPrevious.tsx b/src/components/IconSkipPrevious.tsx deleted file mode 100644 index aa003ca3e..000000000 --- a/src/components/IconSkipPrevious.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSkipPrevious: React.FC = (props) => ( - - - - -) - -export { IconSkipPrevious } diff --git a/src/components/IconSlideshow.tsx b/src/components/IconSlideshow.tsx deleted file mode 100644 index e4c519713..000000000 --- a/src/components/IconSlideshow.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSlideshow: React.FC = (props) => ( - - - - -) - -export { IconSlideshow } diff --git a/src/components/IconSlowMotionVideo.tsx b/src/components/IconSlowMotionVideo.tsx deleted file mode 100644 index 550e0f8b4..000000000 --- a/src/components/IconSlowMotionVideo.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSlowMotionVideo: React.FC = (props) => ( - - - - -) - -export { IconSlowMotionVideo } diff --git a/src/components/IconSmartButton.tsx b/src/components/IconSmartButton.tsx deleted file mode 100644 index 6982b39db..000000000 --- a/src/components/IconSmartButton.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSmartButton: React.FC = (props) => ( - - - - - - -) - -export { IconSmartButton } diff --git a/src/components/IconSmartphone.tsx b/src/components/IconSmartphone.tsx deleted file mode 100644 index 67263c00e..000000000 --- a/src/components/IconSmartphone.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSmartphone: React.FC = (props) => ( - - - - -) - -export { IconSmartphone } diff --git a/src/components/IconSmokeFree.tsx b/src/components/IconSmokeFree.tsx deleted file mode 100644 index 1fba7f65b..000000000 --- a/src/components/IconSmokeFree.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSmokeFree: React.FC = (props) => ( - - - - -) - -export { IconSmokeFree } diff --git a/src/components/IconSmokingRooms.tsx b/src/components/IconSmokingRooms.tsx deleted file mode 100644 index 65222c537..000000000 --- a/src/components/IconSmokingRooms.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSmokingRooms: React.FC = (props) => ( - - - - -) - -export { IconSmokingRooms } diff --git a/src/components/IconSms.tsx b/src/components/IconSms.tsx deleted file mode 100644 index a62b5ca4f..000000000 --- a/src/components/IconSms.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSms: React.FC = (props) => ( - - - - -) - -export { IconSms } diff --git a/src/components/IconSmsFailed.tsx b/src/components/IconSmsFailed.tsx deleted file mode 100644 index 2815f6359..000000000 --- a/src/components/IconSmsFailed.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSmsFailed: React.FC = (props) => ( - - - - -) - -export { IconSmsFailed } diff --git a/src/components/IconSnippetFolder.tsx b/src/components/IconSnippetFolder.tsx deleted file mode 100644 index 064949932..000000000 --- a/src/components/IconSnippetFolder.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSnippetFolder: React.FC = (props) => ( - - - - - - -) - -export { IconSnippetFolder } diff --git a/src/components/IconSnooze.tsx b/src/components/IconSnooze.tsx deleted file mode 100644 index 42a66bc7c..000000000 --- a/src/components/IconSnooze.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSnooze: React.FC = (props) => ( - - - - -) - -export { IconSnooze } diff --git a/src/components/IconSoap.tsx b/src/components/IconSoap.tsx deleted file mode 100644 index 8def5d1e2..000000000 --- a/src/components/IconSoap.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSoap: React.FC = (props) => ( - - - - - - -) - -export { IconSoap } diff --git a/src/components/IconSort.tsx b/src/components/IconSort.tsx deleted file mode 100644 index ad43e4de0..000000000 --- a/src/components/IconSort.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSort: React.FC = (props) => ( - - - - -) - -export { IconSort } diff --git a/src/components/IconSortByAlpha.tsx b/src/components/IconSortByAlpha.tsx deleted file mode 100644 index 528c3b630..000000000 --- a/src/components/IconSortByAlpha.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSortByAlpha: React.FC = (props) => ( - - - - -) - -export { IconSortByAlpha } diff --git a/src/components/IconSource.tsx b/src/components/IconSource.tsx deleted file mode 100644 index 8960058ec..000000000 --- a/src/components/IconSource.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSource: React.FC = (props) => ( - - - - - - -) - -export { IconSource } diff --git a/src/components/IconSouth.tsx b/src/components/IconSouth.tsx deleted file mode 100644 index 99f6a9fc5..000000000 --- a/src/components/IconSouth.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSouth: React.FC = (props) => ( - - - - -) - -export { IconSouth } diff --git a/src/components/IconSouthEast.tsx b/src/components/IconSouthEast.tsx deleted file mode 100644 index 78eb3ac86..000000000 --- a/src/components/IconSouthEast.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSouthEast: React.FC = (props) => ( - - - - -) - -export { IconSouthEast } diff --git a/src/components/IconSouthWest.tsx b/src/components/IconSouthWest.tsx deleted file mode 100644 index a5458b7b5..000000000 --- a/src/components/IconSouthWest.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSouthWest: React.FC = (props) => ( - - - - -) - -export { IconSouthWest } diff --git a/src/components/IconSpa.tsx b/src/components/IconSpa.tsx deleted file mode 100644 index 06b1fa7ef..000000000 --- a/src/components/IconSpa.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSpa: React.FC = (props) => ( - - - - - -) - -export { IconSpa } diff --git a/src/components/IconSpaceBar.tsx b/src/components/IconSpaceBar.tsx deleted file mode 100644 index 90446523b..000000000 --- a/src/components/IconSpaceBar.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSpaceBar: React.FC = (props) => ( - - - - -) - -export { IconSpaceBar } diff --git a/src/components/IconSpeaker.tsx b/src/components/IconSpeaker.tsx deleted file mode 100644 index a812a672a..000000000 --- a/src/components/IconSpeaker.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSpeaker: React.FC = (props) => ( - - - - -) - -export { IconSpeaker } diff --git a/src/components/IconSpeakerGroup.tsx b/src/components/IconSpeakerGroup.tsx deleted file mode 100644 index 8ba898cca..000000000 --- a/src/components/IconSpeakerGroup.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSpeakerGroup: React.FC = (props) => ( - - - - - - -) - -export { IconSpeakerGroup } diff --git a/src/components/IconSpeakerNotes.tsx b/src/components/IconSpeakerNotes.tsx deleted file mode 100644 index 622ce3430..000000000 --- a/src/components/IconSpeakerNotes.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSpeakerNotes: React.FC = (props) => ( - - - - -) - -export { IconSpeakerNotes } diff --git a/src/components/IconSpeakerNotesOff.tsx b/src/components/IconSpeakerNotesOff.tsx deleted file mode 100644 index 16417d2f3..000000000 --- a/src/components/IconSpeakerNotesOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSpeakerNotesOff: React.FC = (props) => ( - - - - -) - -export { IconSpeakerNotesOff } diff --git a/src/components/IconSpeakerPhone.tsx b/src/components/IconSpeakerPhone.tsx deleted file mode 100644 index 4bb6d231e..000000000 --- a/src/components/IconSpeakerPhone.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSpeakerPhone: React.FC = (props) => ( - - - - -) - -export { IconSpeakerPhone } diff --git a/src/components/IconSpeed.tsx b/src/components/IconSpeed.tsx deleted file mode 100644 index dd909b3b1..000000000 --- a/src/components/IconSpeed.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSpeed: React.FC = (props) => ( - - - - -) - -export { IconSpeed } diff --git a/src/components/IconSpellcheck.tsx b/src/components/IconSpellcheck.tsx deleted file mode 100644 index b020c8973..000000000 --- a/src/components/IconSpellcheck.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSpellcheck: React.FC = (props) => ( - - - - -) - -export { IconSpellcheck } diff --git a/src/components/IconSports.tsx b/src/components/IconSports.tsx deleted file mode 100644 index af99fd946..000000000 --- a/src/components/IconSports.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSports: React.FC = (props) => ( - - - - - - - - - - - - - - - -) - -export { IconSports } diff --git a/src/components/IconSportsBar.tsx b/src/components/IconSportsBar.tsx deleted file mode 100644 index fc9740f23..000000000 --- a/src/components/IconSportsBar.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSportsBar: React.FC = (props) => ( - - - - -) - -export { IconSportsBar } diff --git a/src/components/IconSportsBaseball.tsx b/src/components/IconSportsBaseball.tsx deleted file mode 100644 index a5cb3a430..000000000 --- a/src/components/IconSportsBaseball.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSportsBaseball: React.FC = (props) => ( - - - - - - - - - - - - - - - - - - -) - -export { IconSportsBaseball } diff --git a/src/components/IconSportsBasketball.tsx b/src/components/IconSportsBasketball.tsx deleted file mode 100644 index 3aa6b14dc..000000000 --- a/src/components/IconSportsBasketball.tsx +++ /dev/null @@ -1,44 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSportsBasketball: React.FC = (props) => ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -) - -export { IconSportsBasketball } diff --git a/src/components/IconSportsCricket.tsx b/src/components/IconSportsCricket.tsx deleted file mode 100644 index cb1593ebe..000000000 --- a/src/components/IconSportsCricket.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSportsCricket: React.FC = (props) => ( - - - - - - - - - - - - - - -) - -export { IconSportsCricket } diff --git a/src/components/IconSportsEsports.tsx b/src/components/IconSportsEsports.tsx deleted file mode 100644 index 44239a0ef..000000000 --- a/src/components/IconSportsEsports.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSportsEsports: React.FC = (props) => ( - - - - - - - - - - -) - -export { IconSportsEsports } diff --git a/src/components/IconSportsFootball.tsx b/src/components/IconSportsFootball.tsx deleted file mode 100644 index 444798fd4..000000000 --- a/src/components/IconSportsFootball.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSportsFootball: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconSportsFootball } diff --git a/src/components/IconSportsGolf.tsx b/src/components/IconSportsGolf.tsx deleted file mode 100644 index e37dd0b38..000000000 --- a/src/components/IconSportsGolf.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSportsGolf: React.FC = (props) => ( - - - - - - - - - - - - - - -) - -export { IconSportsGolf } diff --git a/src/components/IconSportsHandball.tsx b/src/components/IconSportsHandball.tsx deleted file mode 100644 index 3becfcfe9..000000000 --- a/src/components/IconSportsHandball.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSportsHandball: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconSportsHandball } diff --git a/src/components/IconSportsHockey.tsx b/src/components/IconSportsHockey.tsx deleted file mode 100644 index 34b616e83..000000000 --- a/src/components/IconSportsHockey.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSportsHockey: React.FC = (props) => ( - - - - - - - - - - - - - - - -) - -export { IconSportsHockey } diff --git a/src/components/IconSportsKabaddi.tsx b/src/components/IconSportsKabaddi.tsx deleted file mode 100644 index 0e982809d..000000000 --- a/src/components/IconSportsKabaddi.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSportsKabaddi: React.FC = (props) => ( - - - - - - - - - - - - - -) - -export { IconSportsKabaddi } diff --git a/src/components/IconSportsMma.tsx b/src/components/IconSportsMma.tsx deleted file mode 100644 index 4fe58c488..000000000 --- a/src/components/IconSportsMma.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSportsMma: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconSportsMma } diff --git a/src/components/IconSportsMotorsports.tsx b/src/components/IconSportsMotorsports.tsx deleted file mode 100644 index 7ef15d4c6..000000000 --- a/src/components/IconSportsMotorsports.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSportsMotorsports: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconSportsMotorsports } diff --git a/src/components/IconSportsRugby.tsx b/src/components/IconSportsRugby.tsx deleted file mode 100644 index 2316f8846..000000000 --- a/src/components/IconSportsRugby.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSportsRugby: React.FC = (props) => ( - - - - - - - - - - -) - -export { IconSportsRugby } diff --git a/src/components/IconSportsSoccer.tsx b/src/components/IconSportsSoccer.tsx deleted file mode 100644 index 5d25cdfd7..000000000 --- a/src/components/IconSportsSoccer.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSportsSoccer: React.FC = (props) => ( - - - - - - - - - - -) - -export { IconSportsSoccer } diff --git a/src/components/IconSportsTennis.tsx b/src/components/IconSportsTennis.tsx deleted file mode 100644 index 1144fd621..000000000 --- a/src/components/IconSportsTennis.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSportsTennis: React.FC = (props) => ( - - - - - - - - - -) - -export { IconSportsTennis } diff --git a/src/components/IconSportsVolleyball.tsx b/src/components/IconSportsVolleyball.tsx deleted file mode 100644 index f18360cbe..000000000 --- a/src/components/IconSportsVolleyball.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSportsVolleyball: React.FC = (props) => ( - - - - - - - - - - - - - - - -) - -export { IconSportsVolleyball } diff --git a/src/components/IconSquareFoot.tsx b/src/components/IconSquareFoot.tsx deleted file mode 100644 index 5b52de2d3..000000000 --- a/src/components/IconSquareFoot.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSquareFoot: React.FC = (props) => ( - - - - - - - - - - -) - -export { IconSquareFoot } diff --git a/src/components/IconStackedLineChart.tsx b/src/components/IconStackedLineChart.tsx deleted file mode 100644 index 4d2dd4b05..000000000 --- a/src/components/IconStackedLineChart.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStackedLineChart: React.FC = (props) => ( - - - - -) - -export { IconStackedLineChart } diff --git a/src/components/IconStairs.tsx b/src/components/IconStairs.tsx deleted file mode 100644 index d210b8ed0..000000000 --- a/src/components/IconStairs.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStairs: React.FC = (props) => ( - - - - - - - - - - -) - -export { IconStairs } diff --git a/src/components/IconStar.tsx b/src/components/IconStar.tsx deleted file mode 100644 index 196e4a2e8..000000000 --- a/src/components/IconStar.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStar: React.FC = (props) => ( - - - - - -) - -export { IconStar } diff --git a/src/components/IconStarBorder.tsx b/src/components/IconStarBorder.tsx deleted file mode 100644 index 48a154787..000000000 --- a/src/components/IconStarBorder.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStarBorder: React.FC = (props) => ( - - - - -) - -export { IconStarBorder } diff --git a/src/components/IconStarHalf.tsx b/src/components/IconStarHalf.tsx deleted file mode 100644 index 249538aca..000000000 --- a/src/components/IconStarHalf.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStarHalf: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconStarHalf } diff --git a/src/components/IconStarOutline.tsx b/src/components/IconStarOutline.tsx deleted file mode 100644 index 68f0eff03..000000000 --- a/src/components/IconStarOutline.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStarOutline: React.FC = (props) => ( - - - -) - -export { IconStarOutline } diff --git a/src/components/IconStarRate.tsx b/src/components/IconStarRate.tsx deleted file mode 100644 index fe4c50c8e..000000000 --- a/src/components/IconStarRate.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStarRate: React.FC = (props) => ( - - - - - - -) - -export { IconStarRate } diff --git a/src/components/IconStars.tsx b/src/components/IconStars.tsx deleted file mode 100644 index 47a21cdcc..000000000 --- a/src/components/IconStars.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStars: React.FC = (props) => ( - - - - -) - -export { IconStars } diff --git a/src/components/IconStayCurrentLandscape.tsx b/src/components/IconStayCurrentLandscape.tsx deleted file mode 100644 index aca9f90ff..000000000 --- a/src/components/IconStayCurrentLandscape.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStayCurrentLandscape: React.FC = (props) => ( - - - - -) - -export { IconStayCurrentLandscape } diff --git a/src/components/IconStayCurrentPortrait.tsx b/src/components/IconStayCurrentPortrait.tsx deleted file mode 100644 index 297867731..000000000 --- a/src/components/IconStayCurrentPortrait.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStayCurrentPortrait: React.FC = (props) => ( - - - - -) - -export { IconStayCurrentPortrait } diff --git a/src/components/IconStayPrimaryLandscape.tsx b/src/components/IconStayPrimaryLandscape.tsx deleted file mode 100644 index 95bfd0e1c..000000000 --- a/src/components/IconStayPrimaryLandscape.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStayPrimaryLandscape: React.FC = (props) => ( - - - - -) - -export { IconStayPrimaryLandscape } diff --git a/src/components/IconStayPrimaryPortrait.tsx b/src/components/IconStayPrimaryPortrait.tsx deleted file mode 100644 index 85fa57403..000000000 --- a/src/components/IconStayPrimaryPortrait.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStayPrimaryPortrait: React.FC = (props) => ( - - - - -) - -export { IconStayPrimaryPortrait } diff --git a/src/components/IconStickyNote2.tsx b/src/components/IconStickyNote2.tsx deleted file mode 100644 index ff3faab0f..000000000 --- a/src/components/IconStickyNote2.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStickyNote2: React.FC = (props) => ( - - - - -) - -export { IconStickyNote2 } diff --git a/src/components/IconStop.tsx b/src/components/IconStop.tsx deleted file mode 100644 index 4322f8ce2..000000000 --- a/src/components/IconStop.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStop: React.FC = (props) => ( - - - - -) - -export { IconStop } diff --git a/src/components/IconStopCircle.tsx b/src/components/IconStopCircle.tsx deleted file mode 100644 index 38e1fe83f..000000000 --- a/src/components/IconStopCircle.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStopCircle: React.FC = (props) => ( - - - - - - - - -) - -export { IconStopCircle } diff --git a/src/components/IconStopScreenShare.tsx b/src/components/IconStopScreenShare.tsx deleted file mode 100644 index 609f4aef0..000000000 --- a/src/components/IconStopScreenShare.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStopScreenShare: React.FC = (props) => ( - - - - -) - -export { IconStopScreenShare } diff --git a/src/components/IconStorage.tsx b/src/components/IconStorage.tsx deleted file mode 100644 index 9df7b4ba4..000000000 --- a/src/components/IconStorage.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStorage: React.FC = (props) => ( - - - - -) - -export { IconStorage } diff --git a/src/components/IconStore.tsx b/src/components/IconStore.tsx deleted file mode 100644 index 2805b8a3a..000000000 --- a/src/components/IconStore.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStore: React.FC = (props) => ( - - - - -) - -export { IconStore } diff --git a/src/components/IconStoreMallDirectory.tsx b/src/components/IconStoreMallDirectory.tsx deleted file mode 100644 index 492a89fbf..000000000 --- a/src/components/IconStoreMallDirectory.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStoreMallDirectory: React.FC = (props) => ( - - - - -) - -export { IconStoreMallDirectory } diff --git a/src/components/IconStorefront.tsx b/src/components/IconStorefront.tsx deleted file mode 100644 index ea30633c3..000000000 --- a/src/components/IconStorefront.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStorefront: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconStorefront } diff --git a/src/components/IconStraighten.tsx b/src/components/IconStraighten.tsx deleted file mode 100644 index 8ca4488c1..000000000 --- a/src/components/IconStraighten.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStraighten: React.FC = (props) => ( - - - - -) - -export { IconStraighten } diff --git a/src/components/IconStreetview.tsx b/src/components/IconStreetview.tsx deleted file mode 100644 index b5be11870..000000000 --- a/src/components/IconStreetview.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStreetview: React.FC = (props) => ( - - - - - - -) - -export { IconStreetview } diff --git a/src/components/IconStrikethroughS.tsx b/src/components/IconStrikethroughS.tsx deleted file mode 100644 index 4b29bf15b..000000000 --- a/src/components/IconStrikethroughS.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStrikethroughS: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconStrikethroughS } diff --git a/src/components/IconStroller.tsx b/src/components/IconStroller.tsx deleted file mode 100644 index 35ac1c857..000000000 --- a/src/components/IconStroller.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStroller: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconStroller } diff --git a/src/components/IconStyle.tsx b/src/components/IconStyle.tsx deleted file mode 100644 index 0597229e4..000000000 --- a/src/components/IconStyle.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconStyle: React.FC = (props) => ( - - - - -) - -export { IconStyle } diff --git a/src/components/IconSubdirectoryArrowLeft.tsx b/src/components/IconSubdirectoryArrowLeft.tsx deleted file mode 100644 index 3d7f7a370..000000000 --- a/src/components/IconSubdirectoryArrowLeft.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSubdirectoryArrowLeft: React.FC = (props) => ( - - - - -) - -export { IconSubdirectoryArrowLeft } diff --git a/src/components/IconSubdirectoryArrowRight.tsx b/src/components/IconSubdirectoryArrowRight.tsx deleted file mode 100644 index 26db445bc..000000000 --- a/src/components/IconSubdirectoryArrowRight.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSubdirectoryArrowRight: React.FC = (props) => ( - - - - -) - -export { IconSubdirectoryArrowRight } diff --git a/src/components/IconSubject.tsx b/src/components/IconSubject.tsx deleted file mode 100644 index 64ef10eef..000000000 --- a/src/components/IconSubject.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSubject: React.FC = (props) => ( - - - - -) - -export { IconSubject } diff --git a/src/components/IconSubscript.tsx b/src/components/IconSubscript.tsx deleted file mode 100644 index 2d19fd478..000000000 --- a/src/components/IconSubscript.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSubscript: React.FC = (props) => ( - - - - - - -) - -export { IconSubscript } diff --git a/src/components/IconSubscriptions.tsx b/src/components/IconSubscriptions.tsx deleted file mode 100644 index a9e4abe75..000000000 --- a/src/components/IconSubscriptions.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSubscriptions: React.FC = (props) => ( - - - - -) - -export { IconSubscriptions } diff --git a/src/components/IconSubtitles.tsx b/src/components/IconSubtitles.tsx deleted file mode 100644 index f4f76c972..000000000 --- a/src/components/IconSubtitles.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSubtitles: React.FC = (props) => ( - - - - -) - -export { IconSubtitles } diff --git a/src/components/IconSubtitlesOff.tsx b/src/components/IconSubtitlesOff.tsx deleted file mode 100644 index 374bacc44..000000000 --- a/src/components/IconSubtitlesOff.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSubtitlesOff: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconSubtitlesOff } diff --git a/src/components/IconSubway.tsx b/src/components/IconSubway.tsx deleted file mode 100644 index 89e11758a..000000000 --- a/src/components/IconSubway.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSubway: React.FC = (props) => ( - - - - - - -) - -export { IconSubway } diff --git a/src/components/IconSuperscript.tsx b/src/components/IconSuperscript.tsx deleted file mode 100644 index 5205b3ecf..000000000 --- a/src/components/IconSuperscript.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSuperscript: React.FC = (props) => ( - - - - - - -) - -export { IconSuperscript } diff --git a/src/components/IconSupervisedUserCircle.tsx b/src/components/IconSupervisedUserCircle.tsx deleted file mode 100644 index f3b697138..000000000 --- a/src/components/IconSupervisedUserCircle.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSupervisedUserCircle: React.FC = (props) => ( - - - - -) - -export { IconSupervisedUserCircle } diff --git a/src/components/IconSupervisorAccount.tsx b/src/components/IconSupervisorAccount.tsx deleted file mode 100644 index 4651cd461..000000000 --- a/src/components/IconSupervisorAccount.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSupervisorAccount: React.FC = (props) => ( - - - - -) - -export { IconSupervisorAccount } diff --git a/src/components/IconSupport.tsx b/src/components/IconSupport.tsx deleted file mode 100644 index f0be247a8..000000000 --- a/src/components/IconSupport.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSupport: React.FC = (props) => ( - - - - - - - - -) - -export { IconSupport } diff --git a/src/components/IconSupportAgent.tsx b/src/components/IconSupportAgent.tsx deleted file mode 100644 index 1f67d9e3b..000000000 --- a/src/components/IconSupportAgent.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSupportAgent: React.FC = (props) => ( - - - - - - - - - - - - - -) - -export { IconSupportAgent } diff --git a/src/components/IconSurroundSound.tsx b/src/components/IconSurroundSound.tsx deleted file mode 100644 index ca23a7c50..000000000 --- a/src/components/IconSurroundSound.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSurroundSound: React.FC = (props) => ( - - - - -) - -export { IconSurroundSound } diff --git a/src/components/IconSwapCalls.tsx b/src/components/IconSwapCalls.tsx deleted file mode 100644 index 4bbb84d09..000000000 --- a/src/components/IconSwapCalls.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSwapCalls: React.FC = (props) => ( - - - - -) - -export { IconSwapCalls } diff --git a/src/components/IconSwapHoriz.tsx b/src/components/IconSwapHoriz.tsx deleted file mode 100644 index 0f5a5d6db..000000000 --- a/src/components/IconSwapHoriz.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSwapHoriz: React.FC = (props) => ( - - - - -) - -export { IconSwapHoriz } diff --git a/src/components/IconSwapHorizontalCircle.tsx b/src/components/IconSwapHorizontalCircle.tsx deleted file mode 100644 index 21c6c46f7..000000000 --- a/src/components/IconSwapHorizontalCircle.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSwapHorizontalCircle: React.FC = (props) => ( - - - - -) - -export { IconSwapHorizontalCircle } diff --git a/src/components/IconSwapVert.tsx b/src/components/IconSwapVert.tsx deleted file mode 100644 index 1a7fd7eef..000000000 --- a/src/components/IconSwapVert.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSwapVert: React.FC = (props) => ( - - - - -) - -export { IconSwapVert } diff --git a/src/components/IconSwapVerticalCircle.tsx b/src/components/IconSwapVerticalCircle.tsx deleted file mode 100644 index da8b4b42b..000000000 --- a/src/components/IconSwapVerticalCircle.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSwapVerticalCircle: React.FC = (props) => ( - - - - -) - -export { IconSwapVerticalCircle } diff --git a/src/components/IconSwitchCamera.tsx b/src/components/IconSwitchCamera.tsx deleted file mode 100644 index 3a2c12b4f..000000000 --- a/src/components/IconSwitchCamera.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSwitchCamera: React.FC = (props) => ( - - - - -) - -export { IconSwitchCamera } diff --git a/src/components/IconSwitchLeft.tsx b/src/components/IconSwitchLeft.tsx deleted file mode 100644 index 9503c42f2..000000000 --- a/src/components/IconSwitchLeft.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSwitchLeft: React.FC = (props) => ( - - - - -) - -export { IconSwitchLeft } diff --git a/src/components/IconSwitchRight.tsx b/src/components/IconSwitchRight.tsx deleted file mode 100644 index be441447a..000000000 --- a/src/components/IconSwitchRight.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSwitchRight: React.FC = (props) => ( - - - - -) - -export { IconSwitchRight } diff --git a/src/components/IconSwitchVideo.tsx b/src/components/IconSwitchVideo.tsx deleted file mode 100644 index 139e5221d..000000000 --- a/src/components/IconSwitchVideo.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSwitchVideo: React.FC = (props) => ( - - - - -) - -export { IconSwitchVideo } diff --git a/src/components/IconSync.tsx b/src/components/IconSync.tsx deleted file mode 100644 index 3d0b6730f..000000000 --- a/src/components/IconSync.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSync: React.FC = (props) => ( - - - - -) - -export { IconSync } diff --git a/src/components/IconSyncAlt.tsx b/src/components/IconSyncAlt.tsx deleted file mode 100644 index 14229b6a8..000000000 --- a/src/components/IconSyncAlt.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSyncAlt: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconSyncAlt } diff --git a/src/components/IconSyncDisabled.tsx b/src/components/IconSyncDisabled.tsx deleted file mode 100644 index 9f19c57fe..000000000 --- a/src/components/IconSyncDisabled.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSyncDisabled: React.FC = (props) => ( - - - - -) - -export { IconSyncDisabled } diff --git a/src/components/IconSyncProblem.tsx b/src/components/IconSyncProblem.tsx deleted file mode 100644 index 66818fcdf..000000000 --- a/src/components/IconSyncProblem.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSyncProblem: React.FC = (props) => ( - - - - -) - -export { IconSyncProblem } diff --git a/src/components/IconSystemUpdate.tsx b/src/components/IconSystemUpdate.tsx deleted file mode 100644 index c83d0ab0a..000000000 --- a/src/components/IconSystemUpdate.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSystemUpdate: React.FC = (props) => ( - - - - -) - -export { IconSystemUpdate } diff --git a/src/components/IconSystemUpdateAlt.tsx b/src/components/IconSystemUpdateAlt.tsx deleted file mode 100644 index db14fdad8..000000000 --- a/src/components/IconSystemUpdateAlt.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconSystemUpdateAlt: React.FC = (props) => ( - - - - -) - -export { IconSystemUpdateAlt } diff --git a/src/components/IconTab.tsx b/src/components/IconTab.tsx deleted file mode 100644 index 169e019f8..000000000 --- a/src/components/IconTab.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTab: React.FC = (props) => ( - - - - -) - -export { IconTab } diff --git a/src/components/IconTabUnselected.tsx b/src/components/IconTabUnselected.tsx deleted file mode 100644 index 8c221715d..000000000 --- a/src/components/IconTabUnselected.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTabUnselected: React.FC = (props) => ( - - - - -) - -export { IconTabUnselected } diff --git a/src/components/IconTableChart.tsx b/src/components/IconTableChart.tsx deleted file mode 100644 index 896779585..000000000 --- a/src/components/IconTableChart.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTableChart: React.FC = (props) => ( - - - - -) - -export { IconTableChart } diff --git a/src/components/IconTableRows.tsx b/src/components/IconTableRows.tsx deleted file mode 100644 index b2eace44a..000000000 --- a/src/components/IconTableRows.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTableRows: React.FC = (props) => ( - - - - - - -) - -export { IconTableRows } diff --git a/src/components/IconTableView.tsx b/src/components/IconTableView.tsx deleted file mode 100644 index b1554324f..000000000 --- a/src/components/IconTableView.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTableView: React.FC = (props) => ( - - - - - - -) - -export { IconTableView } diff --git a/src/components/IconTablet.tsx b/src/components/IconTablet.tsx deleted file mode 100644 index 8b0448adc..000000000 --- a/src/components/IconTablet.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTablet: React.FC = (props) => ( - - - - -) - -export { IconTablet } diff --git a/src/components/IconTabletAndroid.tsx b/src/components/IconTabletAndroid.tsx deleted file mode 100644 index 66a44592c..000000000 --- a/src/components/IconTabletAndroid.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTabletAndroid: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconTabletAndroid } diff --git a/src/components/IconTabletMac.tsx b/src/components/IconTabletMac.tsx deleted file mode 100644 index 8d40dafb9..000000000 --- a/src/components/IconTabletMac.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTabletMac: React.FC = (props) => ( - - - -) - -export { IconTabletMac } diff --git a/src/components/IconTagFaces.tsx b/src/components/IconTagFaces.tsx deleted file mode 100644 index 1e7ad328e..000000000 --- a/src/components/IconTagFaces.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTagFaces: React.FC = (props) => ( - - - - -) - -export { IconTagFaces } diff --git a/src/components/IconTapAndPlay.tsx b/src/components/IconTapAndPlay.tsx deleted file mode 100644 index 5aa4d1a36..000000000 --- a/src/components/IconTapAndPlay.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTapAndPlay: React.FC = (props) => ( - - - - -) - -export { IconTapAndPlay } diff --git a/src/components/IconTapas.tsx b/src/components/IconTapas.tsx deleted file mode 100644 index 1a6372f63..000000000 --- a/src/components/IconTapas.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTapas: React.FC = (props) => ( - - - - -) - -export { IconTapas } diff --git a/src/components/IconTerrain.tsx b/src/components/IconTerrain.tsx deleted file mode 100644 index 31fc80611..000000000 --- a/src/components/IconTerrain.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTerrain: React.FC = (props) => ( - - - - -) - -export { IconTerrain } diff --git a/src/components/IconTextFields.tsx b/src/components/IconTextFields.tsx deleted file mode 100644 index d4cbae6f6..000000000 --- a/src/components/IconTextFields.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTextFields: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconTextFields } diff --git a/src/components/IconTextFormat.tsx b/src/components/IconTextFormat.tsx deleted file mode 100644 index bb4378a70..000000000 --- a/src/components/IconTextFormat.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTextFormat: React.FC = (props) => ( - - - - -) - -export { IconTextFormat } diff --git a/src/components/IconTextRotateUp.tsx b/src/components/IconTextRotateUp.tsx deleted file mode 100644 index aa2afaf2d..000000000 --- a/src/components/IconTextRotateUp.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTextRotateUp: React.FC = (props) => ( - - - - -) - -export { IconTextRotateUp } diff --git a/src/components/IconTextRotateVertical.tsx b/src/components/IconTextRotateVertical.tsx deleted file mode 100644 index 000a08ba5..000000000 --- a/src/components/IconTextRotateVertical.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTextRotateVertical: React.FC = (props) => ( - - - - -) - -export { IconTextRotateVertical } diff --git a/src/components/IconTextRotationAngledown.tsx b/src/components/IconTextRotationAngledown.tsx deleted file mode 100644 index 63509fb17..000000000 --- a/src/components/IconTextRotationAngledown.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTextRotationAngledown: React.FC = (props) => ( - - - - -) - -export { IconTextRotationAngledown } diff --git a/src/components/IconTextRotationAngleup.tsx b/src/components/IconTextRotationAngleup.tsx deleted file mode 100644 index e7ca932a2..000000000 --- a/src/components/IconTextRotationAngleup.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTextRotationAngleup: React.FC = (props) => ( - - - - -) - -export { IconTextRotationAngleup } diff --git a/src/components/IconTextRotationDown.tsx b/src/components/IconTextRotationDown.tsx deleted file mode 100644 index 47613037b..000000000 --- a/src/components/IconTextRotationDown.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTextRotationDown: React.FC = (props) => ( - - - - -) - -export { IconTextRotationDown } diff --git a/src/components/IconTextRotationNone.tsx b/src/components/IconTextRotationNone.tsx deleted file mode 100644 index bf8367fc3..000000000 --- a/src/components/IconTextRotationNone.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTextRotationNone: React.FC = (props) => ( - - - - -) - -export { IconTextRotationNone } diff --git a/src/components/IconTextSnippet.tsx b/src/components/IconTextSnippet.tsx deleted file mode 100644 index c44d67c7f..000000000 --- a/src/components/IconTextSnippet.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTextSnippet: React.FC = (props) => ( - - - - - - -) - -export { IconTextSnippet } diff --git a/src/components/IconTextsms.tsx b/src/components/IconTextsms.tsx deleted file mode 100644 index 9801d6532..000000000 --- a/src/components/IconTextsms.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTextsms: React.FC = (props) => ( - - - - -) - -export { IconTextsms } diff --git a/src/components/IconTexture.tsx b/src/components/IconTexture.tsx deleted file mode 100644 index 58cf173e3..000000000 --- a/src/components/IconTexture.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTexture: React.FC = (props) => ( - - - - -) - -export { IconTexture } diff --git a/src/components/IconTheaters.tsx b/src/components/IconTheaters.tsx deleted file mode 100644 index acdba4590..000000000 --- a/src/components/IconTheaters.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTheaters: React.FC = (props) => ( - - - - -) - -export { IconTheaters } diff --git a/src/components/IconThumbDown.tsx b/src/components/IconThumbDown.tsx deleted file mode 100644 index 820822370..000000000 --- a/src/components/IconThumbDown.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconThumbDown: React.FC = (props) => ( - - - - -) - -export { IconThumbDown } diff --git a/src/components/IconThumbDownAlt.tsx b/src/components/IconThumbDownAlt.tsx deleted file mode 100644 index a9849ab1f..000000000 --- a/src/components/IconThumbDownAlt.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconThumbDownAlt: React.FC = (props) => ( - - - - -) - -export { IconThumbDownAlt } diff --git a/src/components/IconThumbUp.tsx b/src/components/IconThumbUp.tsx deleted file mode 100644 index e3acb4b59..000000000 --- a/src/components/IconThumbUp.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconThumbUp: React.FC = (props) => ( - - - - -) - -export { IconThumbUp } diff --git a/src/components/IconThumbUpAlt.tsx b/src/components/IconThumbUpAlt.tsx deleted file mode 100644 index 717fc6bc4..000000000 --- a/src/components/IconThumbUpAlt.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconThumbUpAlt: React.FC = (props) => ( - - - - -) - -export { IconThumbUpAlt } diff --git a/src/components/IconThumbsUpDown.tsx b/src/components/IconThumbsUpDown.tsx deleted file mode 100644 index f12ae88af..000000000 --- a/src/components/IconThumbsUpDown.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconThumbsUpDown: React.FC = (props) => ( - - - - -) - -export { IconThumbsUpDown } diff --git a/src/components/IconTimeToLeave.tsx b/src/components/IconTimeToLeave.tsx deleted file mode 100644 index f2db6dc5e..000000000 --- a/src/components/IconTimeToLeave.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTimeToLeave: React.FC = (props) => ( - - - - -) - -export { IconTimeToLeave } diff --git a/src/components/IconTimelapse.tsx b/src/components/IconTimelapse.tsx deleted file mode 100644 index f768f4bf4..000000000 --- a/src/components/IconTimelapse.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTimelapse: React.FC = (props) => ( - - - - -) - -export { IconTimelapse } diff --git a/src/components/IconTimeline.tsx b/src/components/IconTimeline.tsx deleted file mode 100644 index 7b8dce965..000000000 --- a/src/components/IconTimeline.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTimeline: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconTimeline } diff --git a/src/components/IconTimer.tsx b/src/components/IconTimer.tsx deleted file mode 100644 index 7cce18a34..000000000 --- a/src/components/IconTimer.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTimer: React.FC = (props) => ( - - - - -) - -export { IconTimer } diff --git a/src/components/IconTimer10.tsx b/src/components/IconTimer10.tsx deleted file mode 100644 index 6a3707e9f..000000000 --- a/src/components/IconTimer10.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTimer10: React.FC = (props) => ( - - - - -) - -export { IconTimer10 } diff --git a/src/components/IconTimer3.tsx b/src/components/IconTimer3.tsx deleted file mode 100644 index 762b9c6d7..000000000 --- a/src/components/IconTimer3.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTimer3: React.FC = (props) => ( - - - - -) - -export { IconTimer3 } diff --git a/src/components/IconTimerOff.tsx b/src/components/IconTimerOff.tsx deleted file mode 100644 index ba9f8ead6..000000000 --- a/src/components/IconTimerOff.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTimerOff: React.FC = (props) => ( - - - - -) - -export { IconTimerOff } diff --git a/src/components/IconTitle.tsx b/src/components/IconTitle.tsx deleted file mode 100644 index 1e5a67824..000000000 --- a/src/components/IconTitle.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTitle: React.FC = (props) => ( - - - - -) - -export { IconTitle } diff --git a/src/components/IconToc.tsx b/src/components/IconToc.tsx deleted file mode 100644 index 51c857d6c..000000000 --- a/src/components/IconToc.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconToc: React.FC = (props) => ( - - - - -) - -export { IconToc } diff --git a/src/components/IconToday.tsx b/src/components/IconToday.tsx deleted file mode 100644 index d27c1655a..000000000 --- a/src/components/IconToday.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconToday: React.FC = (props) => ( - - - - -) - -export { IconToday } diff --git a/src/components/IconToggleOff.tsx b/src/components/IconToggleOff.tsx deleted file mode 100644 index 466e81481..000000000 --- a/src/components/IconToggleOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconToggleOff: React.FC = (props) => ( - - - - -) - -export { IconToggleOff } diff --git a/src/components/IconToggleOn.tsx b/src/components/IconToggleOn.tsx deleted file mode 100644 index ccc5b6423..000000000 --- a/src/components/IconToggleOn.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconToggleOn: React.FC = (props) => ( - - - - -) - -export { IconToggleOn } diff --git a/src/components/IconToll.tsx b/src/components/IconToll.tsx deleted file mode 100644 index bb9d9a1eb..000000000 --- a/src/components/IconToll.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconToll: React.FC = (props) => ( - - - - - -) - -export { IconToll } diff --git a/src/components/IconTonality.tsx b/src/components/IconTonality.tsx deleted file mode 100644 index a3ae2905a..000000000 --- a/src/components/IconTonality.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTonality: React.FC = (props) => ( - - - - -) - -export { IconTonality } diff --git a/src/components/IconTopic.tsx b/src/components/IconTopic.tsx deleted file mode 100644 index 55fc0b983..000000000 --- a/src/components/IconTopic.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTopic: React.FC = (props) => ( - - - - - - -) - -export { IconTopic } diff --git a/src/components/IconTouchApp.tsx b/src/components/IconTouchApp.tsx deleted file mode 100644 index 9590b1ed3..000000000 --- a/src/components/IconTouchApp.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTouchApp: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconTouchApp } diff --git a/src/components/IconTour.tsx b/src/components/IconTour.tsx deleted file mode 100644 index 359b8b949..000000000 --- a/src/components/IconTour.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTour: React.FC = (props) => ( - - - - -) - -export { IconTour } diff --git a/src/components/IconToys.tsx b/src/components/IconToys.tsx deleted file mode 100644 index 0a11eb01e..000000000 --- a/src/components/IconToys.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconToys: React.FC = (props) => ( - - - - -) - -export { IconToys } diff --git a/src/components/IconTrackChanges.tsx b/src/components/IconTrackChanges.tsx deleted file mode 100644 index d5eeb34ce..000000000 --- a/src/components/IconTrackChanges.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTrackChanges: React.FC = (props) => ( - - - - -) - -export { IconTrackChanges } diff --git a/src/components/IconTraffic.tsx b/src/components/IconTraffic.tsx deleted file mode 100644 index 28b9d894f..000000000 --- a/src/components/IconTraffic.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTraffic: React.FC = (props) => ( - - - - -) - -export { IconTraffic } diff --git a/src/components/IconTrain.tsx b/src/components/IconTrain.tsx deleted file mode 100644 index c9193d5c7..000000000 --- a/src/components/IconTrain.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTrain: React.FC = (props) => ( - - - - -) - -export { IconTrain } diff --git a/src/components/IconTram.tsx b/src/components/IconTram.tsx deleted file mode 100644 index a13258fd1..000000000 --- a/src/components/IconTram.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTram: React.FC = (props) => ( - - - - -) - -export { IconTram } diff --git a/src/components/IconTransferWithinAStation.tsx b/src/components/IconTransferWithinAStation.tsx deleted file mode 100644 index 289158b9c..000000000 --- a/src/components/IconTransferWithinAStation.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTransferWithinAStation: React.FC = (props) => ( - - - - -) - -export { IconTransferWithinAStation } diff --git a/src/components/IconTransform.tsx b/src/components/IconTransform.tsx deleted file mode 100644 index 781105436..000000000 --- a/src/components/IconTransform.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTransform: React.FC = (props) => ( - - - - -) - -export { IconTransform } diff --git a/src/components/IconTransitEnterexit.tsx b/src/components/IconTransitEnterexit.tsx deleted file mode 100644 index cb39753ce..000000000 --- a/src/components/IconTransitEnterexit.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTransitEnterexit: React.FC = (props) => ( - - - - -) - -export { IconTransitEnterexit } diff --git a/src/components/IconTranslate.tsx b/src/components/IconTranslate.tsx deleted file mode 100644 index d813dd97c..000000000 --- a/src/components/IconTranslate.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTranslate: React.FC = (props) => ( - - - - -) - -export { IconTranslate } diff --git a/src/components/IconTrendingDown.tsx b/src/components/IconTrendingDown.tsx deleted file mode 100644 index e3bf1ac1d..000000000 --- a/src/components/IconTrendingDown.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTrendingDown: React.FC = (props) => ( - - - - -) - -export { IconTrendingDown } diff --git a/src/components/IconTrendingFlat.tsx b/src/components/IconTrendingFlat.tsx deleted file mode 100644 index 48b95ec0f..000000000 --- a/src/components/IconTrendingFlat.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTrendingFlat: React.FC = (props) => ( - - - - -) - -export { IconTrendingFlat } diff --git a/src/components/IconTrendingUp.tsx b/src/components/IconTrendingUp.tsx deleted file mode 100644 index 94e1caa3a..000000000 --- a/src/components/IconTrendingUp.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTrendingUp: React.FC = (props) => ( - - - - -) - -export { IconTrendingUp } diff --git a/src/components/IconTripOrigin.tsx b/src/components/IconTripOrigin.tsx deleted file mode 100644 index 4d2253e90..000000000 --- a/src/components/IconTripOrigin.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTripOrigin: React.FC = (props) => ( - - - - - -) - -export { IconTripOrigin } diff --git a/src/components/IconTty.tsx b/src/components/IconTty.tsx deleted file mode 100644 index c8ebb8b50..000000000 --- a/src/components/IconTty.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTty: React.FC = (props) => ( - - - - - - -) - -export { IconTty } diff --git a/src/components/IconTune.tsx b/src/components/IconTune.tsx deleted file mode 100644 index 5494407bc..000000000 --- a/src/components/IconTune.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTune: React.FC = (props) => ( - - - - -) - -export { IconTune } diff --git a/src/components/IconTurnedIn.tsx b/src/components/IconTurnedIn.tsx deleted file mode 100644 index 1803d1c50..000000000 --- a/src/components/IconTurnedIn.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTurnedIn: React.FC = (props) => ( - - - - -) - -export { IconTurnedIn } diff --git a/src/components/IconTurnedInNot.tsx b/src/components/IconTurnedInNot.tsx deleted file mode 100644 index 61567d27c..000000000 --- a/src/components/IconTurnedInNot.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTurnedInNot: React.FC = (props) => ( - - - - -) - -export { IconTurnedInNot } diff --git a/src/components/IconTv.tsx b/src/components/IconTv.tsx deleted file mode 100644 index 4bf072b24..000000000 --- a/src/components/IconTv.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTv: React.FC = (props) => ( - - - - -) - -export { IconTv } diff --git a/src/components/IconTvOff.tsx b/src/components/IconTvOff.tsx deleted file mode 100644 index 2d30c9237..000000000 --- a/src/components/IconTvOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTvOff: React.FC = (props) => ( - - - - -) - -export { IconTvOff } diff --git a/src/components/IconTwoWheeler.tsx b/src/components/IconTwoWheeler.tsx deleted file mode 100644 index d07c5cab5..000000000 --- a/src/components/IconTwoWheeler.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconTwoWheeler: React.FC = (props) => ( - - - - - - -) - -export { IconTwoWheeler } diff --git a/src/components/IconUmbrella.tsx b/src/components/IconUmbrella.tsx deleted file mode 100644 index df3ec1258..000000000 --- a/src/components/IconUmbrella.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconUmbrella: React.FC = (props) => ( - - - - - - -) - -export { IconUmbrella } diff --git a/src/components/IconUnarchive.tsx b/src/components/IconUnarchive.tsx deleted file mode 100644 index 35d583371..000000000 --- a/src/components/IconUnarchive.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconUnarchive: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconUnarchive } diff --git a/src/components/IconUndo.tsx b/src/components/IconUndo.tsx deleted file mode 100644 index 209427c48..000000000 --- a/src/components/IconUndo.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconUndo: React.FC = (props) => ( - - - - -) - -export { IconUndo } diff --git a/src/components/IconUnfoldLess.tsx b/src/components/IconUnfoldLess.tsx deleted file mode 100644 index 17881376e..000000000 --- a/src/components/IconUnfoldLess.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconUnfoldLess: React.FC = (props) => ( - - - - -) - -export { IconUnfoldLess } diff --git a/src/components/IconUnfoldMore.tsx b/src/components/IconUnfoldMore.tsx deleted file mode 100644 index fed8f687a..000000000 --- a/src/components/IconUnfoldMore.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconUnfoldMore: React.FC = (props) => ( - - - - -) - -export { IconUnfoldMore } diff --git a/src/components/IconUnpublished.tsx b/src/components/IconUnpublished.tsx deleted file mode 100644 index 4e35cc619..000000000 --- a/src/components/IconUnpublished.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconUnpublished: React.FC = (props) => ( - - - - -) - -export { IconUnpublished } diff --git a/src/components/IconUnsubscribe.tsx b/src/components/IconUnsubscribe.tsx deleted file mode 100644 index 97eb0100b..000000000 --- a/src/components/IconUnsubscribe.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconUnsubscribe: React.FC = (props) => ( - - - -) - -export { IconUnsubscribe } diff --git a/src/components/IconUpdate.tsx b/src/components/IconUpdate.tsx deleted file mode 100644 index eba07660a..000000000 --- a/src/components/IconUpdate.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconUpdate: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconUpdate } diff --git a/src/components/IconUpdateDisabled.tsx b/src/components/IconUpdateDisabled.tsx deleted file mode 100644 index 22ca9455f..000000000 --- a/src/components/IconUpdateDisabled.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconUpdateDisabled: React.FC = (props) => ( - - - - - - -) - -export { IconUpdateDisabled } diff --git a/src/components/IconUpgrade.tsx b/src/components/IconUpgrade.tsx deleted file mode 100644 index 618e88dc6..000000000 --- a/src/components/IconUpgrade.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconUpgrade: React.FC = (props) => ( - - - - - - -) - -export { IconUpgrade } diff --git a/src/components/IconUsb.tsx b/src/components/IconUsb.tsx deleted file mode 100644 index e2d890acd..000000000 --- a/src/components/IconUsb.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconUsb: React.FC = (props) => ( - - - - -) - -export { IconUsb } diff --git a/src/components/IconVerified.tsx b/src/components/IconVerified.tsx deleted file mode 100644 index 821dca8be..000000000 --- a/src/components/IconVerified.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVerified: React.FC = (props) => ( - - - - - - - - -) - -export { IconVerified } diff --git a/src/components/IconVerifiedUser.tsx b/src/components/IconVerifiedUser.tsx deleted file mode 100644 index 1cd40d71b..000000000 --- a/src/components/IconVerifiedUser.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVerifiedUser: React.FC = (props) => ( - - - - -) - -export { IconVerifiedUser } diff --git a/src/components/IconVerticalAlignBottom.tsx b/src/components/IconVerticalAlignBottom.tsx deleted file mode 100644 index dd2ced3f3..000000000 --- a/src/components/IconVerticalAlignBottom.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVerticalAlignBottom: React.FC = (props) => ( - - - - -) - -export { IconVerticalAlignBottom } diff --git a/src/components/IconVerticalAlignCenter.tsx b/src/components/IconVerticalAlignCenter.tsx deleted file mode 100644 index 559175626..000000000 --- a/src/components/IconVerticalAlignCenter.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVerticalAlignCenter: React.FC = (props) => ( - - - - -) - -export { IconVerticalAlignCenter } diff --git a/src/components/IconVerticalAlignTop.tsx b/src/components/IconVerticalAlignTop.tsx deleted file mode 100644 index 122ef70f4..000000000 --- a/src/components/IconVerticalAlignTop.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVerticalAlignTop: React.FC = (props) => ( - - - - -) - -export { IconVerticalAlignTop } diff --git a/src/components/IconVerticalDistribute.tsx b/src/components/IconVerticalDistribute.tsx deleted file mode 100644 index 659069aab..000000000 --- a/src/components/IconVerticalDistribute.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVerticalDistribute: React.FC = (props) => ( - - - - -) - -export { IconVerticalDistribute } diff --git a/src/components/IconVerticalSplit.tsx b/src/components/IconVerticalSplit.tsx deleted file mode 100644 index b9055468d..000000000 --- a/src/components/IconVerticalSplit.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVerticalSplit: React.FC = (props) => ( - - - - -) - -export { IconVerticalSplit } diff --git a/src/components/IconVibration.tsx b/src/components/IconVibration.tsx deleted file mode 100644 index 85c980b98..000000000 --- a/src/components/IconVibration.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVibration: React.FC = (props) => ( - - - - -) - -export { IconVibration } diff --git a/src/components/IconVideoCall.tsx b/src/components/IconVideoCall.tsx deleted file mode 100644 index d725e4290..000000000 --- a/src/components/IconVideoCall.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVideoCall: React.FC = (props) => ( - - - - -) - -export { IconVideoCall } diff --git a/src/components/IconVideoLabel.tsx b/src/components/IconVideoLabel.tsx deleted file mode 100644 index cf8a3b3fd..000000000 --- a/src/components/IconVideoLabel.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVideoLabel: React.FC = (props) => ( - - - - -) - -export { IconVideoLabel } diff --git a/src/components/IconVideoLibrary.tsx b/src/components/IconVideoLibrary.tsx deleted file mode 100644 index c16877908..000000000 --- a/src/components/IconVideoLibrary.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVideoLibrary: React.FC = (props) => ( - - - - -) - -export { IconVideoLibrary } diff --git a/src/components/IconVideoSettings.tsx b/src/components/IconVideoSettings.tsx deleted file mode 100644 index 25963a2a2..000000000 --- a/src/components/IconVideoSettings.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVideoSettings: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconVideoSettings } diff --git a/src/components/IconVideocam.tsx b/src/components/IconVideocam.tsx deleted file mode 100644 index bdd35e50e..000000000 --- a/src/components/IconVideocam.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVideocam: React.FC = (props) => ( - - - - -) - -export { IconVideocam } diff --git a/src/components/IconVideocamOff.tsx b/src/components/IconVideocamOff.tsx deleted file mode 100644 index 57bf7caf7..000000000 --- a/src/components/IconVideocamOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVideocamOff: React.FC = (props) => ( - - - - -) - -export { IconVideocamOff } diff --git a/src/components/IconVideogameAsset.tsx b/src/components/IconVideogameAsset.tsx deleted file mode 100644 index ae68f0624..000000000 --- a/src/components/IconVideogameAsset.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVideogameAsset: React.FC = (props) => ( - - - - -) - -export { IconVideogameAsset } diff --git a/src/components/IconViewAgenda.tsx b/src/components/IconViewAgenda.tsx deleted file mode 100644 index 4c988239e..000000000 --- a/src/components/IconViewAgenda.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconViewAgenda: React.FC = (props) => ( - - - - -) - -export { IconViewAgenda } diff --git a/src/components/IconViewArray.tsx b/src/components/IconViewArray.tsx deleted file mode 100644 index 35d2013ad..000000000 --- a/src/components/IconViewArray.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconViewArray: React.FC = (props) => ( - - - - -) - -export { IconViewArray } diff --git a/src/components/IconViewCarousel.tsx b/src/components/IconViewCarousel.tsx deleted file mode 100644 index fc64ddca2..000000000 --- a/src/components/IconViewCarousel.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconViewCarousel: React.FC = (props) => ( - - - - -) - -export { IconViewCarousel } diff --git a/src/components/IconViewColumn.tsx b/src/components/IconViewColumn.tsx deleted file mode 100644 index c167bda07..000000000 --- a/src/components/IconViewColumn.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconViewColumn: React.FC = (props) => ( - - - - -) - -export { IconViewColumn } diff --git a/src/components/IconViewComfy.tsx b/src/components/IconViewComfy.tsx deleted file mode 100644 index 0147c0f89..000000000 --- a/src/components/IconViewComfy.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconViewComfy: React.FC = (props) => ( - - - - -) - -export { IconViewComfy } diff --git a/src/components/IconViewCompact.tsx b/src/components/IconViewCompact.tsx deleted file mode 100644 index 9d57d13d5..000000000 --- a/src/components/IconViewCompact.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconViewCompact: React.FC = (props) => ( - - - - -) - -export { IconViewCompact } diff --git a/src/components/IconViewDay.tsx b/src/components/IconViewDay.tsx deleted file mode 100644 index c0f3cf1e4..000000000 --- a/src/components/IconViewDay.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconViewDay: React.FC = (props) => ( - - - - -) - -export { IconViewDay } diff --git a/src/components/IconViewHeadline.tsx b/src/components/IconViewHeadline.tsx deleted file mode 100644 index 870c390cf..000000000 --- a/src/components/IconViewHeadline.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconViewHeadline: React.FC = (props) => ( - - - - -) - -export { IconViewHeadline } diff --git a/src/components/IconViewList.tsx b/src/components/IconViewList.tsx deleted file mode 100644 index 5e884fe37..000000000 --- a/src/components/IconViewList.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconViewList: React.FC = (props) => ( - - - - -) - -export { IconViewList } diff --git a/src/components/IconViewModule.tsx b/src/components/IconViewModule.tsx deleted file mode 100644 index 49de3cdf0..000000000 --- a/src/components/IconViewModule.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconViewModule: React.FC = (props) => ( - - - - -) - -export { IconViewModule } diff --git a/src/components/IconViewQuilt.tsx b/src/components/IconViewQuilt.tsx deleted file mode 100644 index 170902d7a..000000000 --- a/src/components/IconViewQuilt.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconViewQuilt: React.FC = (props) => ( - - - - -) - -export { IconViewQuilt } diff --git a/src/components/IconViewSidebar.tsx b/src/components/IconViewSidebar.tsx deleted file mode 100644 index 770b9506b..000000000 --- a/src/components/IconViewSidebar.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconViewSidebar: React.FC = (props) => ( - - - - - - -) - -export { IconViewSidebar } diff --git a/src/components/IconViewStream.tsx b/src/components/IconViewStream.tsx deleted file mode 100644 index 55ac5c4c3..000000000 --- a/src/components/IconViewStream.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconViewStream: React.FC = (props) => ( - - - - -) - -export { IconViewStream } diff --git a/src/components/IconViewWeek.tsx b/src/components/IconViewWeek.tsx deleted file mode 100644 index 8b5d43d1c..000000000 --- a/src/components/IconViewWeek.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconViewWeek: React.FC = (props) => ( - - - - -) - -export { IconViewWeek } diff --git a/src/components/IconVignette.tsx b/src/components/IconVignette.tsx deleted file mode 100644 index 7b57342e3..000000000 --- a/src/components/IconVignette.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVignette: React.FC = (props) => ( - - - - -) - -export { IconVignette } diff --git a/src/components/IconVisibility.tsx b/src/components/IconVisibility.tsx deleted file mode 100644 index a3fac4cff..000000000 --- a/src/components/IconVisibility.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVisibility: React.FC = (props) => ( - - - - -) - -export { IconVisibility } diff --git a/src/components/IconVisibilityOff.tsx b/src/components/IconVisibilityOff.tsx deleted file mode 100644 index 320c8d49f..000000000 --- a/src/components/IconVisibilityOff.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVisibilityOff: React.FC = (props) => ( - - - - -) - -export { IconVisibilityOff } diff --git a/src/components/IconVoiceChat.tsx b/src/components/IconVoiceChat.tsx deleted file mode 100644 index 57220f666..000000000 --- a/src/components/IconVoiceChat.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVoiceChat: React.FC = (props) => ( - - - - -) - -export { IconVoiceChat } diff --git a/src/components/IconVoiceOverOff.tsx b/src/components/IconVoiceOverOff.tsx deleted file mode 100644 index f2c2c3552..000000000 --- a/src/components/IconVoiceOverOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVoiceOverOff: React.FC = (props) => ( - - - - -) - -export { IconVoiceOverOff } diff --git a/src/components/IconVoicemail.tsx b/src/components/IconVoicemail.tsx deleted file mode 100644 index f8f4e25db..000000000 --- a/src/components/IconVoicemail.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVoicemail: React.FC = (props) => ( - - - - -) - -export { IconVoicemail } diff --git a/src/components/IconVolumeDown.tsx b/src/components/IconVolumeDown.tsx deleted file mode 100644 index 8422c0050..000000000 --- a/src/components/IconVolumeDown.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVolumeDown: React.FC = (props) => ( - - - - -) - -export { IconVolumeDown } diff --git a/src/components/IconVolumeMute.tsx b/src/components/IconVolumeMute.tsx deleted file mode 100644 index 4a758544d..000000000 --- a/src/components/IconVolumeMute.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVolumeMute: React.FC = (props) => ( - - - - -) - -export { IconVolumeMute } diff --git a/src/components/IconVolumeOff.tsx b/src/components/IconVolumeOff.tsx deleted file mode 100644 index c86aa1f75..000000000 --- a/src/components/IconVolumeOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVolumeOff: React.FC = (props) => ( - - - - -) - -export { IconVolumeOff } diff --git a/src/components/IconVolumeUp.tsx b/src/components/IconVolumeUp.tsx deleted file mode 100644 index f7f953f10..000000000 --- a/src/components/IconVolumeUp.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVolumeUp: React.FC = (props) => ( - - - - -) - -export { IconVolumeUp } diff --git a/src/components/IconVpnKey.tsx b/src/components/IconVpnKey.tsx deleted file mode 100644 index f24b6204a..000000000 --- a/src/components/IconVpnKey.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVpnKey: React.FC = (props) => ( - - - - -) - -export { IconVpnKey } diff --git a/src/components/IconVpnLock.tsx b/src/components/IconVpnLock.tsx deleted file mode 100644 index 916a61744..000000000 --- a/src/components/IconVpnLock.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconVpnLock: React.FC = (props) => ( - - - - -) - -export { IconVpnLock } diff --git a/src/components/IconWallpaper.tsx b/src/components/IconWallpaper.tsx deleted file mode 100644 index ac6bc87d6..000000000 --- a/src/components/IconWallpaper.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWallpaper: React.FC = (props) => ( - - - - -) - -export { IconWallpaper } diff --git a/src/components/IconWarning.tsx b/src/components/IconWarning.tsx deleted file mode 100644 index eb27810e7..000000000 --- a/src/components/IconWarning.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWarning: React.FC = (props) => ( - - - - -) - -export { IconWarning } diff --git a/src/components/IconWash.tsx b/src/components/IconWash.tsx deleted file mode 100644 index 3c1a24fe9..000000000 --- a/src/components/IconWash.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWash: React.FC = (props) => ( - - - - - - -) - -export { IconWash } diff --git a/src/components/IconWatch.tsx b/src/components/IconWatch.tsx deleted file mode 100644 index 364d5df62..000000000 --- a/src/components/IconWatch.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWatch: React.FC = (props) => ( - - - - -) - -export { IconWatch } diff --git a/src/components/IconWatchLater.tsx b/src/components/IconWatchLater.tsx deleted file mode 100644 index 739874666..000000000 --- a/src/components/IconWatchLater.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWatchLater: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconWatchLater } diff --git a/src/components/IconWaterDamage.tsx b/src/components/IconWaterDamage.tsx deleted file mode 100644 index 767e3eeea..000000000 --- a/src/components/IconWaterDamage.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWaterDamage: React.FC = (props) => ( - - - - -) - -export { IconWaterDamage } diff --git a/src/components/IconWaves.tsx b/src/components/IconWaves.tsx deleted file mode 100644 index e62a10cd4..000000000 --- a/src/components/IconWaves.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWaves: React.FC = (props) => ( - - - -) - -export { IconWaves } diff --git a/src/components/IconWbAuto.tsx b/src/components/IconWbAuto.tsx deleted file mode 100644 index 98c9cee96..000000000 --- a/src/components/IconWbAuto.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWbAuto: React.FC = (props) => ( - - - - -) - -export { IconWbAuto } diff --git a/src/components/IconWbCloudy.tsx b/src/components/IconWbCloudy.tsx deleted file mode 100644 index 1ae7e1698..000000000 --- a/src/components/IconWbCloudy.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWbCloudy: React.FC = (props) => ( - - - - -) - -export { IconWbCloudy } diff --git a/src/components/IconWbIncandescent.tsx b/src/components/IconWbIncandescent.tsx deleted file mode 100644 index 5e9be7a59..000000000 --- a/src/components/IconWbIncandescent.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWbIncandescent: React.FC = (props) => ( - - - - -) - -export { IconWbIncandescent } diff --git a/src/components/IconWbIridescent.tsx b/src/components/IconWbIridescent.tsx deleted file mode 100644 index 3348e9ef5..000000000 --- a/src/components/IconWbIridescent.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWbIridescent: React.FC = (props) => ( - - - - -) - -export { IconWbIridescent } diff --git a/src/components/IconWbSunny.tsx b/src/components/IconWbSunny.tsx deleted file mode 100644 index ecddcc35a..000000000 --- a/src/components/IconWbSunny.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWbSunny: React.FC = (props) => ( - - - - -) - -export { IconWbSunny } diff --git a/src/components/IconWc.tsx b/src/components/IconWc.tsx deleted file mode 100644 index 08cc843e6..000000000 --- a/src/components/IconWc.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWc: React.FC = (props) => ( - - - - -) - -export { IconWc } diff --git a/src/components/IconWeb.tsx b/src/components/IconWeb.tsx deleted file mode 100644 index 2077a84c9..000000000 --- a/src/components/IconWeb.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWeb: React.FC = (props) => ( - - - - -) - -export { IconWeb } diff --git a/src/components/IconWebAsset.tsx b/src/components/IconWebAsset.tsx deleted file mode 100644 index a21feb9e5..000000000 --- a/src/components/IconWebAsset.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWebAsset: React.FC = (props) => ( - - - - -) - -export { IconWebAsset } diff --git a/src/components/IconWeekend.tsx b/src/components/IconWeekend.tsx deleted file mode 100644 index 0572a843a..000000000 --- a/src/components/IconWeekend.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWeekend: React.FC = (props) => ( - - - - - - -) - -export { IconWeekend } diff --git a/src/components/IconWest.tsx b/src/components/IconWest.tsx deleted file mode 100644 index 028f256f4..000000000 --- a/src/components/IconWest.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWest: React.FC = (props) => ( - - - - -) - -export { IconWest } diff --git a/src/components/IconWhatshot.tsx b/src/components/IconWhatshot.tsx deleted file mode 100644 index d74b67f68..000000000 --- a/src/components/IconWhatshot.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWhatshot: React.FC = (props) => ( - - - - -) - -export { IconWhatshot } diff --git a/src/components/IconWheelchairPickup.tsx b/src/components/IconWheelchairPickup.tsx deleted file mode 100644 index 1cf8796c3..000000000 --- a/src/components/IconWheelchairPickup.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWheelchairPickup: React.FC = (props) => ( - - - - - - -) - -export { IconWheelchairPickup } diff --git a/src/components/IconWhereToVote.tsx b/src/components/IconWhereToVote.tsx deleted file mode 100644 index 401d8edfe..000000000 --- a/src/components/IconWhereToVote.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWhereToVote: React.FC = (props) => ( - - - - -) - -export { IconWhereToVote } diff --git a/src/components/IconWidgets.tsx b/src/components/IconWidgets.tsx deleted file mode 100644 index da106c45c..000000000 --- a/src/components/IconWidgets.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWidgets: React.FC = (props) => ( - - - - -) - -export { IconWidgets } diff --git a/src/components/IconWifi.tsx b/src/components/IconWifi.tsx deleted file mode 100644 index fe56409d9..000000000 --- a/src/components/IconWifi.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWifi: React.FC = (props) => ( - - - - -) - -export { IconWifi } diff --git a/src/components/IconWifiCalling.tsx b/src/components/IconWifiCalling.tsx deleted file mode 100644 index e4da70fd7..000000000 --- a/src/components/IconWifiCalling.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWifiCalling: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconWifiCalling } diff --git a/src/components/IconWifiLock.tsx b/src/components/IconWifiLock.tsx deleted file mode 100644 index 4b0e3dfce..000000000 --- a/src/components/IconWifiLock.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWifiLock: React.FC = (props) => ( - - - - -) - -export { IconWifiLock } diff --git a/src/components/IconWifiOff.tsx b/src/components/IconWifiOff.tsx deleted file mode 100644 index 0e03e5fb4..000000000 --- a/src/components/IconWifiOff.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWifiOff: React.FC = (props) => ( - - - - -) - -export { IconWifiOff } diff --git a/src/components/IconWifiProtectedSetup.tsx b/src/components/IconWifiProtectedSetup.tsx deleted file mode 100644 index c8cc0fa41..000000000 --- a/src/components/IconWifiProtectedSetup.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWifiProtectedSetup: React.FC = (props) => ( - - - - - - - - - - - - - - - -) - -export { IconWifiProtectedSetup } diff --git a/src/components/IconWifiTethering.tsx b/src/components/IconWifiTethering.tsx deleted file mode 100644 index 684fc80ec..000000000 --- a/src/components/IconWifiTethering.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWifiTethering: React.FC = (props) => ( - - - - -) - -export { IconWifiTethering } diff --git a/src/components/IconWineBar.tsx b/src/components/IconWineBar.tsx deleted file mode 100644 index 10a8478e2..000000000 --- a/src/components/IconWineBar.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWineBar: React.FC = (props) => ( - - - - -) - -export { IconWineBar } diff --git a/src/components/IconWork.tsx b/src/components/IconWork.tsx deleted file mode 100644 index 86c9afe6f..000000000 --- a/src/components/IconWork.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWork: React.FC = (props) => ( - - - - -) - -export { IconWork } diff --git a/src/components/IconWorkOff.tsx b/src/components/IconWorkOff.tsx deleted file mode 100644 index 4749054cb..000000000 --- a/src/components/IconWorkOff.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWorkOff: React.FC = (props) => ( - - - - -) - -export { IconWorkOff } diff --git a/src/components/IconWorkOutline.tsx b/src/components/IconWorkOutline.tsx deleted file mode 100644 index 2bd23e7ed..000000000 --- a/src/components/IconWorkOutline.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWorkOutline: React.FC = (props) => ( - - - - -) - -export { IconWorkOutline } diff --git a/src/components/IconWrapText.tsx b/src/components/IconWrapText.tsx deleted file mode 100644 index a3b27a89d..000000000 --- a/src/components/IconWrapText.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWrapText: React.FC = (props) => ( - - - - -) - -export { IconWrapText } diff --git a/src/components/IconWrongLocation.tsx b/src/components/IconWrongLocation.tsx deleted file mode 100644 index 6af0e5a50..000000000 --- a/src/components/IconWrongLocation.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWrongLocation: React.FC = (props) => ( - - - - - - - - - - - -) - -export { IconWrongLocation } diff --git a/src/components/IconWysiwyg.tsx b/src/components/IconWysiwyg.tsx deleted file mode 100644 index afeb76270..000000000 --- a/src/components/IconWysiwyg.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconWysiwyg: React.FC = (props) => ( - - - - - - -) - -export { IconWysiwyg } diff --git a/src/components/IconYoutubeSearchedFor.tsx b/src/components/IconYoutubeSearchedFor.tsx deleted file mode 100644 index bcd574e42..000000000 --- a/src/components/IconYoutubeSearchedFor.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconYoutubeSearchedFor: React.FC = (props) => ( - - - - -) - -export { IconYoutubeSearchedFor } diff --git a/src/components/IconZoomIn.tsx b/src/components/IconZoomIn.tsx deleted file mode 100644 index 08f90e1f7..000000000 --- a/src/components/IconZoomIn.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconZoomIn: React.FC = (props) => ( - - - - - -) - -export { IconZoomIn } diff --git a/src/components/IconZoomOut.tsx b/src/components/IconZoomOut.tsx deleted file mode 100644 index 3e06b69ee..000000000 --- a/src/components/IconZoomOut.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconZoomOut: React.FC = (props) => ( - - - - -) - -export { IconZoomOut } diff --git a/src/components/IconZoomOutMap.tsx b/src/components/IconZoomOutMap.tsx deleted file mode 100644 index 13456ec3f..000000000 --- a/src/components/IconZoomOutMap.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react' -import { IconProps } from './types' -const IconZoomOutMap: React.FC = (props) => ( - - - - - - - - - - - - -) - -export { IconZoomOutMap } From 070152182cc628a20fefef7c78727792443806de Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Mon, 5 Oct 2020 17:13:54 +0200 Subject: [PATCH 15/20] Removed all index and type --- src/components/types.ts | 2 - src/index.ts | 2637 --------------------------------------- 2 files changed, 2639 deletions(-) delete mode 100644 src/components/types.ts delete mode 100644 src/index.ts diff --git a/src/components/types.ts b/src/components/types.ts deleted file mode 100644 index d512964ae..000000000 --- a/src/components/types.ts +++ /dev/null @@ -1,2 +0,0 @@ -import React from 'react' -export type IconProps = React.SVGProps diff --git a/src/index.ts b/src/index.ts deleted file mode 100644 index f53e2bbf9..000000000 --- a/src/index.ts +++ /dev/null @@ -1,2637 +0,0 @@ -import { Icon360 } from './components/Icon360' -import { Icon3dRotation } from './components/Icon3dRotation' -import { Icon4k } from './components/Icon4k' -import { Icon5g } from './components/Icon5g' -import { Icon6FtApart } from './components/Icon6FtApart' -import { IconAcUnit } from './components/IconAcUnit' -import { IconAccessAlarm } from './components/IconAccessAlarm' -import { IconAccessAlarms } from './components/IconAccessAlarms' -import { IconAccessTime } from './components/IconAccessTime' -import { IconAccessibility } from './components/IconAccessibility' -import { IconAccessibilityNew } from './components/IconAccessibilityNew' -import { IconAccessible } from './components/IconAccessible' -import { IconAccessibleForward } from './components/IconAccessibleForward' -import { IconAccountBalance } from './components/IconAccountBalance' -import { IconAccountBalanceWallet } from './components/IconAccountBalanceWallet' -import { IconAccountBox } from './components/IconAccountBox' -import { IconAccountCircle } from './components/IconAccountCircle' -import { IconAccountTree } from './components/IconAccountTree' -import { IconAdUnits } from './components/IconAdUnits' -import { IconAdb } from './components/IconAdb' -import { IconAdd } from './components/IconAdd' -import { IconAddAPhoto } from './components/IconAddAPhoto' -import { IconAddAlarm } from './components/IconAddAlarm' -import { IconAddAlert } from './components/IconAddAlert' -import { IconAddBox } from './components/IconAddBox' -import { IconAddBusiness } from './components/IconAddBusiness' -import { IconAddCircle } from './components/IconAddCircle' -import { IconAddCircleOutline } from './components/IconAddCircleOutline' -import { IconAddComment } from './components/IconAddComment' -import { IconAddIcCall } from './components/IconAddIcCall' -import { IconAddLocation } from './components/IconAddLocation' -import { IconAddLocationAlt } from './components/IconAddLocationAlt' -import { IconAddPhotoAlternate } from './components/IconAddPhotoAlternate' -import { IconAddRoad } from './components/IconAddRoad' -import { IconAddShoppingCart } from './components/IconAddShoppingCart' -import { IconAddTask } from './components/IconAddTask' -import { IconAddToHomeScreen } from './components/IconAddToHomeScreen' -import { IconAddToPhotos } from './components/IconAddToPhotos' -import { IconAddToQueue } from './components/IconAddToQueue' -import { IconAddchart } from './components/IconAddchart' -import { IconAdjust } from './components/IconAdjust' -import { IconAdminPanelSettings } from './components/IconAdminPanelSettings' -import { IconAgriculture } from './components/IconAgriculture' -import { IconAirlineSeatFlat } from './components/IconAirlineSeatFlat' -import { IconAirlineSeatFlatAngled } from './components/IconAirlineSeatFlatAngled' -import { IconAirlineSeatIndividualSuite } from './components/IconAirlineSeatIndividualSuite' -import { IconAirlineSeatLegroomExtra } from './components/IconAirlineSeatLegroomExtra' -import { IconAirlineSeatLegroomNormal } from './components/IconAirlineSeatLegroomNormal' -import { IconAirlineSeatLegroomReduced } from './components/IconAirlineSeatLegroomReduced' -import { IconAirlineSeatReclineExtra } from './components/IconAirlineSeatReclineExtra' -import { IconAirlineSeatReclineNormal } from './components/IconAirlineSeatReclineNormal' -import { IconAirplanemodeActive } from './components/IconAirplanemodeActive' -import { IconAirplanemodeInactive } from './components/IconAirplanemodeInactive' -import { IconAirplay } from './components/IconAirplay' -import { IconAirportShuttle } from './components/IconAirportShuttle' -import { IconAlarm } from './components/IconAlarm' -import { IconAlarmAdd } from './components/IconAlarmAdd' -import { IconAlarmOff } from './components/IconAlarmOff' -import { IconAlarmOn } from './components/IconAlarmOn' -import { IconAlbum } from './components/IconAlbum' -import { IconAlignHorizontalCenter } from './components/IconAlignHorizontalCenter' -import { IconAlignHorizontalLeft } from './components/IconAlignHorizontalLeft' -import { IconAlignHorizontalRight } from './components/IconAlignHorizontalRight' -import { IconAlignVerticalBottom } from './components/IconAlignVerticalBottom' -import { IconAlignVerticalCenter } from './components/IconAlignVerticalCenter' -import { IconAlignVerticalTop } from './components/IconAlignVerticalTop' -import { IconAllInbox } from './components/IconAllInbox' -import { IconAllInclusive } from './components/IconAllInclusive' -import { IconAllOut } from './components/IconAllOut' -import { IconAltRoute } from './components/IconAltRoute' -import { IconAlternateEmail } from './components/IconAlternateEmail' -import { IconAmpStories } from './components/IconAmpStories' -import { IconAnalytics } from './components/IconAnalytics' -import { IconAnchor } from './components/IconAnchor' -import { IconAndroid } from './components/IconAndroid' -import { IconAnnouncement } from './components/IconAnnouncement' -import { IconApartment } from './components/IconApartment' -import { IconApi } from './components/IconApi' -import { IconAppBlocking } from './components/IconAppBlocking' -import { IconAppSettingsAlt } from './components/IconAppSettingsAlt' -import { IconApps } from './components/IconApps' -import { IconArchitecture } from './components/IconArchitecture' -import { IconArchive } from './components/IconArchive' -import { IconArrowBack } from './components/IconArrowBack' -import { IconArrowBackIos } from './components/IconArrowBackIos' -import { IconArrowCircleDown } from './components/IconArrowCircleDown' -import { IconArrowCircleUp } from './components/IconArrowCircleUp' -import { IconArrowDownward } from './components/IconArrowDownward' -import { IconArrowDropDown } from './components/IconArrowDropDown' -import { IconArrowDropDownCircle } from './components/IconArrowDropDownCircle' -import { IconArrowDropUp } from './components/IconArrowDropUp' -import { IconArrowForward } from './components/IconArrowForward' -import { IconArrowForwardIos } from './components/IconArrowForwardIos' -import { IconArrowLeft } from './components/IconArrowLeft' -import { IconArrowRight } from './components/IconArrowRight' -import { IconArrowRightAlt } from './components/IconArrowRightAlt' -import { IconArrowUpward } from './components/IconArrowUpward' -import { IconArtTrack } from './components/IconArtTrack' -import { IconArticle } from './components/IconArticle' -import { IconAspectRatio } from './components/IconAspectRatio' -import { IconAssessment } from './components/IconAssessment' -import { IconAssignment } from './components/IconAssignment' -import { IconAssignmentInd } from './components/IconAssignmentInd' -import { IconAssignmentLate } from './components/IconAssignmentLate' -import { IconAssignmentReturn } from './components/IconAssignmentReturn' -import { IconAssignmentReturned } from './components/IconAssignmentReturned' -import { IconAssignmentTurnedIn } from './components/IconAssignmentTurnedIn' -import { IconAssistant } from './components/IconAssistant' -import { IconAssistantPhoto } from './components/IconAssistantPhoto' -import { IconAtm } from './components/IconAtm' -import { IconAttachEmail } from './components/IconAttachEmail' -import { IconAttachFile } from './components/IconAttachFile' -import { IconAttachMoney } from './components/IconAttachMoney' -import { IconAttachment } from './components/IconAttachment' -import { IconAudiotrack } from './components/IconAudiotrack' -import { IconAutoDelete } from './components/IconAutoDelete' -import { IconAutorenew } from './components/IconAutorenew' -import { IconAvTimer } from './components/IconAvTimer' -import { IconBabyChangingStation } from './components/IconBabyChangingStation' -import { IconBackpack } from './components/IconBackpack' -import { IconBackspace } from './components/IconBackspace' -import { IconBackup } from './components/IconBackup' -import { IconBackupTable } from './components/IconBackupTable' -import { IconBallot } from './components/IconBallot' -import { IconBarChart } from './components/IconBarChart' -import { IconBatchPrediction } from './components/IconBatchPrediction' -import { IconBathtub } from './components/IconBathtub' -import { IconBatteryAlert } from './components/IconBatteryAlert' -import { IconBatteryChargingFull } from './components/IconBatteryChargingFull' -import { IconBatteryFull } from './components/IconBatteryFull' -import { IconBatteryStd } from './components/IconBatteryStd' -import { IconBatteryUnknown } from './components/IconBatteryUnknown' -import { IconBeachAccess } from './components/IconBeachAccess' -import { IconBedtime } from './components/IconBedtime' -import { IconBeenhere } from './components/IconBeenhere' -import { IconBento } from './components/IconBento' -import { IconBikeScooter } from './components/IconBikeScooter' -import { IconBiotech } from './components/IconBiotech' -import { IconBlock } from './components/IconBlock' -import { IconBluetooth } from './components/IconBluetooth' -import { IconBluetoothAudio } from './components/IconBluetoothAudio' -import { IconBluetoothConnected } from './components/IconBluetoothConnected' -import { IconBluetoothDisabled } from './components/IconBluetoothDisabled' -import { IconBluetoothSearching } from './components/IconBluetoothSearching' -import { IconBlurCircular } from './components/IconBlurCircular' -import { IconBlurLinear } from './components/IconBlurLinear' -import { IconBlurOff } from './components/IconBlurOff' -import { IconBlurOn } from './components/IconBlurOn' -import { IconBook } from './components/IconBook' -import { IconBookOnline } from './components/IconBookOnline' -import { IconBookmark } from './components/IconBookmark' -import { IconBookmarkBorder } from './components/IconBookmarkBorder' -import { IconBookmarks } from './components/IconBookmarks' -import { IconBorderAll } from './components/IconBorderAll' -import { IconBorderBottom } from './components/IconBorderBottom' -import { IconBorderClear } from './components/IconBorderClear' -import { IconBorderHorizontal } from './components/IconBorderHorizontal' -import { IconBorderInner } from './components/IconBorderInner' -import { IconBorderLeft } from './components/IconBorderLeft' -import { IconBorderOuter } from './components/IconBorderOuter' -import { IconBorderRight } from './components/IconBorderRight' -import { IconBorderStyle } from './components/IconBorderStyle' -import { IconBorderTop } from './components/IconBorderTop' -import { IconBorderVertical } from './components/IconBorderVertical' -import { IconBrandingWatermark } from './components/IconBrandingWatermark' -import { IconBrightness1 } from './components/IconBrightness1' -import { IconBrightness2 } from './components/IconBrightness2' -import { IconBrightness3 } from './components/IconBrightness3' -import { IconBrightness4 } from './components/IconBrightness4' -import { IconBrightness5 } from './components/IconBrightness5' -import { IconBrightness6 } from './components/IconBrightness6' -import { IconBrightness7 } from './components/IconBrightness7' -import { IconBrightnessAuto } from './components/IconBrightnessAuto' -import { IconBrightnessHigh } from './components/IconBrightnessHigh' -import { IconBrightnessLow } from './components/IconBrightnessLow' -import { IconBrightnessMedium } from './components/IconBrightnessMedium' -import { IconBrokenImage } from './components/IconBrokenImage' -import { IconBrowserNotSupported } from './components/IconBrowserNotSupported' -import { IconBrush } from './components/IconBrush' -import { IconBubbleChart } from './components/IconBubbleChart' -import { IconBugReport } from './components/IconBugReport' -import { IconBuild } from './components/IconBuild' -import { IconBuildCircle } from './components/IconBuildCircle' -import { IconBurstMode } from './components/IconBurstMode' -import { IconBusiness } from './components/IconBusiness' -import { IconBusinessCenter } from './components/IconBusinessCenter' -import { IconCached } from './components/IconCached' -import { IconCake } from './components/IconCake' -import { IconCalculate } from './components/IconCalculate' -import { IconCalendarToday } from './components/IconCalendarToday' -import { IconCalendarViewDay } from './components/IconCalendarViewDay' -import { IconCall } from './components/IconCall' -import { IconCallEnd } from './components/IconCallEnd' -import { IconCallMade } from './components/IconCallMade' -import { IconCallMerge } from './components/IconCallMerge' -import { IconCallMissed } from './components/IconCallMissed' -import { IconCallMissedOutgoing } from './components/IconCallMissedOutgoing' -import { IconCallReceived } from './components/IconCallReceived' -import { IconCallSplit } from './components/IconCallSplit' -import { IconCallToAction } from './components/IconCallToAction' -import { IconCamera } from './components/IconCamera' -import { IconCameraAlt } from './components/IconCameraAlt' -import { IconCameraEnhance } from './components/IconCameraEnhance' -import { IconCameraFront } from './components/IconCameraFront' -import { IconCameraRear } from './components/IconCameraRear' -import { IconCameraRoll } from './components/IconCameraRoll' -import { IconCampaign } from './components/IconCampaign' -import { IconCancel } from './components/IconCancel' -import { IconCancelPresentation } from './components/IconCancelPresentation' -import { IconCancelScheduleSend } from './components/IconCancelScheduleSend' -import { IconCardGiftcard } from './components/IconCardGiftcard' -import { IconCardMembership } from './components/IconCardMembership' -import { IconCardTravel } from './components/IconCardTravel' -import { IconCarpenter } from './components/IconCarpenter' -import { IconCasino } from './components/IconCasino' -import { IconCast } from './components/IconCast' -import { IconCastConnected } from './components/IconCastConnected' -import { IconCastForEducation } from './components/IconCastForEducation' -import { IconCategory } from './components/IconCategory' -import { IconCenterFocusStrong } from './components/IconCenterFocusStrong' -import { IconCenterFocusWeak } from './components/IconCenterFocusWeak' -import { IconChangeHistory } from './components/IconChangeHistory' -import { IconChargingStation } from './components/IconChargingStation' -import { IconChat } from './components/IconChat' -import { IconChatBubble } from './components/IconChatBubble' -import { IconChatBubbleOutline } from './components/IconChatBubbleOutline' -import { IconCheck } from './components/IconCheck' -import { IconCheckBox } from './components/IconCheckBox' -import { IconCheckBoxOutlineBlank } from './components/IconCheckBoxOutlineBlank' -import { IconCheckCircle } from './components/IconCheckCircle' -import { IconCheckCircleOutline } from './components/IconCheckCircleOutline' -import { IconCheckroom } from './components/IconCheckroom' -import { IconChevronLeft } from './components/IconChevronLeft' -import { IconChevronRight } from './components/IconChevronRight' -import { IconChildCare } from './components/IconChildCare' -import { IconChildFriendly } from './components/IconChildFriendly' -import { IconChromeReaderMode } from './components/IconChromeReaderMode' -import { IconClass } from './components/IconClass' -import { IconCleanHands } from './components/IconCleanHands' -import { IconCleaningServices } from './components/IconCleaningServices' -import { IconClear } from './components/IconClear' -import { IconClearAll } from './components/IconClearAll' -import { IconClose } from './components/IconClose' -import { IconCloseFullscreen } from './components/IconCloseFullscreen' -import { IconClosedCaption } from './components/IconClosedCaption' -import { IconClosedCaptionDisabled } from './components/IconClosedCaptionDisabled' -import { IconCloud } from './components/IconCloud' -import { IconCloudCircle } from './components/IconCloudCircle' -import { IconCloudDone } from './components/IconCloudDone' -import { IconCloudDownload } from './components/IconCloudDownload' -import { IconCloudOff } from './components/IconCloudOff' -import { IconCloudQueue } from './components/IconCloudQueue' -import { IconCloudUpload } from './components/IconCloudUpload' -import { IconCode } from './components/IconCode' -import { IconCollections } from './components/IconCollections' -import { IconCollectionsBookmark } from './components/IconCollectionsBookmark' -import { IconColorLens } from './components/IconColorLens' -import { IconColorize } from './components/IconColorize' -import { IconComment } from './components/IconComment' -import { IconCommentBank } from './components/IconCommentBank' -import { IconCommute } from './components/IconCommute' -import { IconCompare } from './components/IconCompare' -import { IconCompareArrows } from './components/IconCompareArrows' -import { IconCompassCalibration } from './components/IconCompassCalibration' -import { IconComputer } from './components/IconComputer' -import { IconConfirmationNumber } from './components/IconConfirmationNumber' -import { IconConnectWithoutContact } from './components/IconConnectWithoutContact' -import { IconConstruction } from './components/IconConstruction' -import { IconContactMail } from './components/IconContactMail' -import { IconContactPage } from './components/IconContactPage' -import { IconContactPhone } from './components/IconContactPhone' -import { IconContactSupport } from './components/IconContactSupport' -import { IconContactless } from './components/IconContactless' -import { IconContacts } from './components/IconContacts' -import { IconContentCopy } from './components/IconContentCopy' -import { IconContentCut } from './components/IconContentCut' -import { IconContentPaste } from './components/IconContentPaste' -import { IconControlCamera } from './components/IconControlCamera' -import { IconControlPoint } from './components/IconControlPoint' -import { IconControlPointDuplicate } from './components/IconControlPointDuplicate' -import { IconCopyright } from './components/IconCopyright' -import { IconCoronavirus } from './components/IconCoronavirus' -import { IconCorporateFare } from './components/IconCorporateFare' -import { IconCountertops } from './components/IconCountertops' -import { IconCreate } from './components/IconCreate' -import { IconCreateNewFolder } from './components/IconCreateNewFolder' -import { IconCreditCard } from './components/IconCreditCard' -import { IconCrop } from './components/IconCrop' -import { IconCrop169 } from './components/IconCrop169' -import { IconCrop32 } from './components/IconCrop32' -import { IconCrop54 } from './components/IconCrop54' -import { IconCrop75 } from './components/IconCrop75' -import { IconCropDin } from './components/IconCropDin' -import { IconCropFree } from './components/IconCropFree' -import { IconCropLandscape } from './components/IconCropLandscape' -import { IconCropOriginal } from './components/IconCropOriginal' -import { IconCropPortrait } from './components/IconCropPortrait' -import { IconCropRotate } from './components/IconCropRotate' -import { IconCropSquare } from './components/IconCropSquare' -import { IconDashboard } from './components/IconDashboard' -import { IconDataUsage } from './components/IconDataUsage' -import { IconDateRange } from './components/IconDateRange' -import { IconDeck } from './components/IconDeck' -import { IconDehaze } from './components/IconDehaze' -import { IconDelete } from './components/IconDelete' -import { IconDeleteForever } from './components/IconDeleteForever' -import { IconDeleteOutline } from './components/IconDeleteOutline' -import { IconDeleteSweep } from './components/IconDeleteSweep' -import { IconDepartureBoard } from './components/IconDepartureBoard' -import { IconDescription } from './components/IconDescription' -import { IconDesignServices } from './components/IconDesignServices' -import { IconDesktopAccessDisabled } from './components/IconDesktopAccessDisabled' -import { IconDesktopMac } from './components/IconDesktopMac' -import { IconDesktopWindows } from './components/IconDesktopWindows' -import { IconDetails } from './components/IconDetails' -import { IconDeveloperBoard } from './components/IconDeveloperBoard' -import { IconDeveloperMode } from './components/IconDeveloperMode' -import { IconDeviceHub } from './components/IconDeviceHub' -import { IconDeviceUnknown } from './components/IconDeviceUnknown' -import { IconDevices } from './components/IconDevices' -import { IconDevicesOther } from './components/IconDevicesOther' -import { IconDialerSip } from './components/IconDialerSip' -import { IconDialpad } from './components/IconDialpad' -import { IconDirections } from './components/IconDirections' -import { IconDirectionsBike } from './components/IconDirectionsBike' -import { IconDirectionsBoat } from './components/IconDirectionsBoat' -import { IconDirectionsBus } from './components/IconDirectionsBus' -import { IconDirectionsCar } from './components/IconDirectionsCar' -import { IconDirectionsOff } from './components/IconDirectionsOff' -import { IconDirectionsRailway } from './components/IconDirectionsRailway' -import { IconDirectionsRun } from './components/IconDirectionsRun' -import { IconDirectionsSubway } from './components/IconDirectionsSubway' -import { IconDirectionsTransit } from './components/IconDirectionsTransit' -import { IconDirectionsWalk } from './components/IconDirectionsWalk' -import { IconDisabledByDefault } from './components/IconDisabledByDefault' -import { IconDiscFull } from './components/IconDiscFull' -import { IconDns } from './components/IconDns' -import { IconDoNotStep } from './components/IconDoNotStep' -import { IconDoNotTouch } from './components/IconDoNotTouch' -import { IconDock } from './components/IconDock' -import { IconDomain } from './components/IconDomain' -import { IconDomainDisabled } from './components/IconDomainDisabled' -import { IconDomainVerification } from './components/IconDomainVerification' -import { IconDone } from './components/IconDone' -import { IconDoneAll } from './components/IconDoneAll' -import { IconDoneOutline } from './components/IconDoneOutline' -import { IconDonutLarge } from './components/IconDonutLarge' -import { IconDonutSmall } from './components/IconDonutSmall' -import { IconDoubleArrow } from './components/IconDoubleArrow' -import { IconDrafts } from './components/IconDrafts' -import { IconDragHandle } from './components/IconDragHandle' -import { IconDragIndicator } from './components/IconDragIndicator' -import { IconDriveEta } from './components/IconDriveEta' -import { IconDry } from './components/IconDry' -import { IconDuo } from './components/IconDuo' -import { IconDvr } from './components/IconDvr' -import { IconDynamicFeed } from './components/IconDynamicFeed' -import { IconDynamicForm } from './components/IconDynamicForm' -import { IconEast } from './components/IconEast' -import { IconEco } from './components/IconEco' -import { IconEdit } from './components/IconEdit' -import { IconEditAttributes } from './components/IconEditAttributes' -import { IconEditLocation } from './components/IconEditLocation' -import { IconEditRoad } from './components/IconEditRoad' -import { IconEject } from './components/IconEject' -import { IconElderly } from './components/IconElderly' -import { IconElectricBike } from './components/IconElectricBike' -import { IconElectricCar } from './components/IconElectricCar' -import { IconElectricMoped } from './components/IconElectricMoped' -import { IconElectricScooter } from './components/IconElectricScooter' -import { IconElectricalServices } from './components/IconElectricalServices' -import { IconElevator } from './components/IconElevator' -import { IconEmail } from './components/IconEmail' -import { IconEmojiEmotions } from './components/IconEmojiEmotions' -import { IconEmojiEvents } from './components/IconEmojiEvents' -import { IconEmojiFlags } from './components/IconEmojiFlags' -import { IconEmojiFoodBeverage } from './components/IconEmojiFoodBeverage' -import { IconEmojiNature } from './components/IconEmojiNature' -import { IconEmojiObjects } from './components/IconEmojiObjects' -import { IconEmojiPeople } from './components/IconEmojiPeople' -import { IconEmojiSymbols } from './components/IconEmojiSymbols' -import { IconEmojiTransportation } from './components/IconEmojiTransportation' -import { IconEngineering } from './components/IconEngineering' -import { IconEnhancedEncryption } from './components/IconEnhancedEncryption' -import { IconEqualizer } from './components/IconEqualizer' -import { IconError } from './components/IconError' -import { IconErrorOutline } from './components/IconErrorOutline' -import { IconEscalator } from './components/IconEscalator' -import { IconEscalatorWarning } from './components/IconEscalatorWarning' -import { IconEuro } from './components/IconEuro' -import { IconEuroSymbol } from './components/IconEuroSymbol' -import { IconEvStation } from './components/IconEvStation' -import { IconEvent } from './components/IconEvent' -import { IconEventAvailable } from './components/IconEventAvailable' -import { IconEventBusy } from './components/IconEventBusy' -import { IconEventNote } from './components/IconEventNote' -import { IconEventSeat } from './components/IconEventSeat' -import { IconExitToApp } from './components/IconExitToApp' -import { IconExpandLess } from './components/IconExpandLess' -import { IconExpandMore } from './components/IconExpandMore' -import { IconExplicit } from './components/IconExplicit' -import { IconExplore } from './components/IconExplore' -import { IconExploreOff } from './components/IconExploreOff' -import { IconExposure } from './components/IconExposure' -import { IconExposureNeg1 } from './components/IconExposureNeg1' -import { IconExposureNeg2 } from './components/IconExposureNeg2' -import { IconExposurePlus1 } from './components/IconExposurePlus1' -import { IconExposurePlus2 } from './components/IconExposurePlus2' -import { IconExposureZero } from './components/IconExposureZero' -import { IconExtension } from './components/IconExtension' -import { IconFace } from './components/IconFace' -import { IconFacebook } from './components/IconFacebook' -import { IconFactCheck } from './components/IconFactCheck' -import { IconFamilyRestroom } from './components/IconFamilyRestroom' -import { IconFastForward } from './components/IconFastForward' -import { IconFastRewind } from './components/IconFastRewind' -import { IconFastfood } from './components/IconFastfood' -import { IconFavorite } from './components/IconFavorite' -import { IconFavoriteBorder } from './components/IconFavoriteBorder' -import { IconFeaturedPlayList } from './components/IconFeaturedPlayList' -import { IconFeaturedVideo } from './components/IconFeaturedVideo' -import { IconFeedback } from './components/IconFeedback' -import { IconFence } from './components/IconFence' -import { IconFiberDvr } from './components/IconFiberDvr' -import { IconFiberManualRecord } from './components/IconFiberManualRecord' -import { IconFiberNew } from './components/IconFiberNew' -import { IconFiberPin } from './components/IconFiberPin' -import { IconFiberSmartRecord } from './components/IconFiberSmartRecord' -import { IconFileCopy } from './components/IconFileCopy' -import { IconFilter } from './components/IconFilter' -import { IconFilter1 } from './components/IconFilter1' -import { IconFilter2 } from './components/IconFilter2' -import { IconFilter3 } from './components/IconFilter3' -import { IconFilter4 } from './components/IconFilter4' -import { IconFilter5 } from './components/IconFilter5' -import { IconFilter6 } from './components/IconFilter6' -import { IconFilter7 } from './components/IconFilter7' -import { IconFilter8 } from './components/IconFilter8' -import { IconFilter9 } from './components/IconFilter9' -import { IconFilter9Plus } from './components/IconFilter9Plus' -import { IconFilterAlt } from './components/IconFilterAlt' -import { IconFilterBAndW } from './components/IconFilterBAndW' -import { IconFilterCenterFocus } from './components/IconFilterCenterFocus' -import { IconFilterDrama } from './components/IconFilterDrama' -import { IconFilterFrames } from './components/IconFilterFrames' -import { IconFilterHdr } from './components/IconFilterHdr' -import { IconFilterList } from './components/IconFilterList' -import { IconFilterNone } from './components/IconFilterNone' -import { IconFilterTiltShift } from './components/IconFilterTiltShift' -import { IconFilterVintage } from './components/IconFilterVintage' -import { IconFindInPage } from './components/IconFindInPage' -import { IconFindReplace } from './components/IconFindReplace' -import { IconFingerprint } from './components/IconFingerprint' -import { IconFireExtinguisher } from './components/IconFireExtinguisher' -import { IconFireplace } from './components/IconFireplace' -import { IconFirstPage } from './components/IconFirstPage' -import { IconFitnessCenter } from './components/IconFitnessCenter' -import { IconFlag } from './components/IconFlag' -import { IconFlaky } from './components/IconFlaky' -import { IconFlare } from './components/IconFlare' -import { IconFlashAuto } from './components/IconFlashAuto' -import { IconFlashOff } from './components/IconFlashOff' -import { IconFlashOn } from './components/IconFlashOn' -import { IconFlight } from './components/IconFlight' -import { IconFlightLand } from './components/IconFlightLand' -import { IconFlightTakeoff } from './components/IconFlightTakeoff' -import { IconFlip } from './components/IconFlip' -import { IconFlipCameraAndroid } from './components/IconFlipCameraAndroid' -import { IconFlipCameraIos } from './components/IconFlipCameraIos' -import { IconFlipToBack } from './components/IconFlipToBack' -import { IconFlipToFront } from './components/IconFlipToFront' -import { IconFolder } from './components/IconFolder' -import { IconFolderOpen } from './components/IconFolderOpen' -import { IconFolderShared } from './components/IconFolderShared' -import { IconFolderSpecial } from './components/IconFolderSpecial' -import { IconFollowTheSigns } from './components/IconFollowTheSigns' -import { IconFontDownload } from './components/IconFontDownload' -import { IconFoodBank } from './components/IconFoodBank' -import { IconFormatAlignCenter } from './components/IconFormatAlignCenter' -import { IconFormatAlignJustify } from './components/IconFormatAlignJustify' -import { IconFormatAlignLeft } from './components/IconFormatAlignLeft' -import { IconFormatAlignRight } from './components/IconFormatAlignRight' -import { IconFormatBold } from './components/IconFormatBold' -import { IconFormatClear } from './components/IconFormatClear' -import { IconFormatColorReset } from './components/IconFormatColorReset' -import { IconFormatIndentDecrease } from './components/IconFormatIndentDecrease' -import { IconFormatIndentIncrease } from './components/IconFormatIndentIncrease' -import { IconFormatItalic } from './components/IconFormatItalic' -import { IconFormatLineSpacing } from './components/IconFormatLineSpacing' -import { IconFormatListBulleted } from './components/IconFormatListBulleted' -import { IconFormatListNumbered } from './components/IconFormatListNumbered' -import { IconFormatListNumberedRtl } from './components/IconFormatListNumberedRtl' -import { IconFormatPaint } from './components/IconFormatPaint' -import { IconFormatQuote } from './components/IconFormatQuote' -import { IconFormatShapes } from './components/IconFormatShapes' -import { IconFormatSize } from './components/IconFormatSize' -import { IconFormatStrikethrough } from './components/IconFormatStrikethrough' -import { IconFormatTextdirectionLToR } from './components/IconFormatTextdirectionLToR' -import { IconFormatTextdirectionRToL } from './components/IconFormatTextdirectionRToL' -import { IconFormatUnderlined } from './components/IconFormatUnderlined' -import { IconForum } from './components/IconForum' -import { IconForward } from './components/IconForward' -import { IconForward10 } from './components/IconForward10' -import { IconForward30 } from './components/IconForward30' -import { IconForward5 } from './components/IconForward5' -import { IconForwardToInbox } from './components/IconForwardToInbox' -import { IconFoundation } from './components/IconFoundation' -import { IconFreeBreakfast } from './components/IconFreeBreakfast' -import { IconFullscreen } from './components/IconFullscreen' -import { IconFullscreenExit } from './components/IconFullscreenExit' -import { IconFunctions } from './components/IconFunctions' -import { IconGTranslate } from './components/IconGTranslate' -import { IconGamepad } from './components/IconGamepad' -import { IconGames } from './components/IconGames' -import { IconGavel } from './components/IconGavel' -import { IconGesture } from './components/IconGesture' -import { IconGetApp } from './components/IconGetApp' -import { IconGif } from './components/IconGif' -import { IconGolfCourse } from './components/IconGolfCourse' -import { IconGpsFixed } from './components/IconGpsFixed' -import { IconGpsNotFixed } from './components/IconGpsNotFixed' -import { IconGpsOff } from './components/IconGpsOff' -import { IconGrade } from './components/IconGrade' -import { IconGradient } from './components/IconGradient' -import { IconGrading } from './components/IconGrading' -import { IconGrain } from './components/IconGrain' -import { IconGraphicEq } from './components/IconGraphicEq' -import { IconGrass } from './components/IconGrass' -import { IconGridOff } from './components/IconGridOff' -import { IconGridOn } from './components/IconGridOn' -import { IconGroup } from './components/IconGroup' -import { IconGroupAdd } from './components/IconGroupAdd' -import { IconGroupWork } from './components/IconGroupWork' -import { IconGroups } from './components/IconGroups' -import { IconHandyman } from './components/IconHandyman' -import { IconHd } from './components/IconHd' -import { IconHdrOff } from './components/IconHdrOff' -import { IconHdrOn } from './components/IconHdrOn' -import { IconHdrStrong } from './components/IconHdrStrong' -import { IconHdrWeak } from './components/IconHdrWeak' -import { IconHeadset } from './components/IconHeadset' -import { IconHeadsetMic } from './components/IconHeadsetMic' -import { IconHealing } from './components/IconHealing' -import { IconHearing } from './components/IconHearing' -import { IconHearingDisabled } from './components/IconHearingDisabled' -import { IconHeight } from './components/IconHeight' -import { IconHelp } from './components/IconHelp' -import { IconHelpCenter } from './components/IconHelpCenter' -import { IconHelpOutline } from './components/IconHelpOutline' -import { IconHighQuality } from './components/IconHighQuality' -import { IconHighlight } from './components/IconHighlight' -import { IconHighlightAlt } from './components/IconHighlightAlt' -import { IconHighlightOff } from './components/IconHighlightOff' -import { IconHistory } from './components/IconHistory' -import { IconHistoryEdu } from './components/IconHistoryEdu' -import { IconHistoryToggleOff } from './components/IconHistoryToggleOff' -import { IconHome } from './components/IconHome' -import { IconHomeRepairService } from './components/IconHomeRepairService' -import { IconHomeWork } from './components/IconHomeWork' -import { IconHorizontalDistribute } from './components/IconHorizontalDistribute' -import { IconHorizontalRule } from './components/IconHorizontalRule' -import { IconHorizontalSplit } from './components/IconHorizontalSplit' -import { IconHotTub } from './components/IconHotTub' -import { IconHotel } from './components/IconHotel' -import { IconHourglassBottom } from './components/IconHourglassBottom' -import { IconHourglassDisabled } from './components/IconHourglassDisabled' -import { IconHourglassEmpty } from './components/IconHourglassEmpty' -import { IconHourglassFull } from './components/IconHourglassFull' -import { IconHourglassTop } from './components/IconHourglassTop' -import { IconHouse } from './components/IconHouse' -import { IconHouseSiding } from './components/IconHouseSiding' -import { IconHowToReg } from './components/IconHowToReg' -import { IconHowToVote } from './components/IconHowToVote' -import { IconHttp } from './components/IconHttp' -import { IconHttps } from './components/IconHttps' -import { IconHvac } from './components/IconHvac' -import { IconImage } from './components/IconImage' -import { IconImageAspectRatio } from './components/IconImageAspectRatio' -import { IconImageNotSupported } from './components/IconImageNotSupported' -import { IconImageSearch } from './components/IconImageSearch' -import { IconImportContacts } from './components/IconImportContacts' -import { IconImportExport } from './components/IconImportExport' -import { IconImportantDevices } from './components/IconImportantDevices' -import { IconInbox } from './components/IconInbox' -import { IconIndeterminateCheckBox } from './components/IconIndeterminateCheckBox' -import { IconInfo } from './components/IconInfo' -import { IconInput } from './components/IconInput' -import { IconInsertChart } from './components/IconInsertChart' -import { IconInsertChartOutlined } from './components/IconInsertChartOutlined' -import { IconInsertComment } from './components/IconInsertComment' -import { IconInsertDriveFile } from './components/IconInsertDriveFile' -import { IconInsertEmoticon } from './components/IconInsertEmoticon' -import { IconInsertInvitation } from './components/IconInsertInvitation' -import { IconInsertLink } from './components/IconInsertLink' -import { IconInsertPhoto } from './components/IconInsertPhoto' -import { IconInsights } from './components/IconInsights' -import { IconIntegrationInstructions } from './components/IconIntegrationInstructions' -import { IconInvertColors } from './components/IconInvertColors' -import { IconInvertColorsOff } from './components/IconInvertColorsOff' -import { IconIso } from './components/IconIso' -import { IconKeyboard } from './components/IconKeyboard' -import { IconKeyboardArrowDown } from './components/IconKeyboardArrowDown' -import { IconKeyboardArrowLeft } from './components/IconKeyboardArrowLeft' -import { IconKeyboardArrowRight } from './components/IconKeyboardArrowRight' -import { IconKeyboardArrowUp } from './components/IconKeyboardArrowUp' -import { IconKeyboardBackspace } from './components/IconKeyboardBackspace' -import { IconKeyboardCapslock } from './components/IconKeyboardCapslock' -import { IconKeyboardHide } from './components/IconKeyboardHide' -import { IconKeyboardReturn } from './components/IconKeyboardReturn' -import { IconKeyboardTab } from './components/IconKeyboardTab' -import { IconKeyboardVoice } from './components/IconKeyboardVoice' -import { IconKingBed } from './components/IconKingBed' -import { IconKitchen } from './components/IconKitchen' -import { IconLabel } from './components/IconLabel' -import { IconLabelImportant } from './components/IconLabelImportant' -import { IconLabelOff } from './components/IconLabelOff' -import { IconLandscape } from './components/IconLandscape' -import { IconLanguage } from './components/IconLanguage' -import { IconLaptop } from './components/IconLaptop' -import { IconLaptopChromebook } from './components/IconLaptopChromebook' -import { IconLaptopMac } from './components/IconLaptopMac' -import { IconLaptopWindows } from './components/IconLaptopWindows' -import { IconLastPage } from './components/IconLastPage' -import { IconLaunch } from './components/IconLaunch' -import { IconLayers } from './components/IconLayers' -import { IconLayersClear } from './components/IconLayersClear' -import { IconLeaderboard } from './components/IconLeaderboard' -import { IconLeakAdd } from './components/IconLeakAdd' -import { IconLeakRemove } from './components/IconLeakRemove' -import { IconLegendToggle } from './components/IconLegendToggle' -import { IconLens } from './components/IconLens' -import { IconLibraryAdd } from './components/IconLibraryAdd' -import { IconLibraryAddCheck } from './components/IconLibraryAddCheck' -import { IconLibraryBooks } from './components/IconLibraryBooks' -import { IconLibraryMusic } from './components/IconLibraryMusic' -import { IconLineStyle } from './components/IconLineStyle' -import { IconLineWeight } from './components/IconLineWeight' -import { IconLinearScale } from './components/IconLinearScale' -import { IconLink } from './components/IconLink' -import { IconLinkOff } from './components/IconLinkOff' -import { IconLinkedCamera } from './components/IconLinkedCamera' -import { IconList } from './components/IconList' -import { IconListAlt } from './components/IconListAlt' -import { IconLiveHelp } from './components/IconLiveHelp' -import { IconLiveTv } from './components/IconLiveTv' -import { IconLocalActivity } from './components/IconLocalActivity' -import { IconLocalAirport } from './components/IconLocalAirport' -import { IconLocalAtm } from './components/IconLocalAtm' -import { IconLocalBar } from './components/IconLocalBar' -import { IconLocalCafe } from './components/IconLocalCafe' -import { IconLocalCarWash } from './components/IconLocalCarWash' -import { IconLocalConvenienceStore } from './components/IconLocalConvenienceStore' -import { IconLocalDining } from './components/IconLocalDining' -import { IconLocalDrink } from './components/IconLocalDrink' -import { IconLocalFireDepartment } from './components/IconLocalFireDepartment' -import { IconLocalFlorist } from './components/IconLocalFlorist' -import { IconLocalGasStation } from './components/IconLocalGasStation' -import { IconLocalGroceryStore } from './components/IconLocalGroceryStore' -import { IconLocalHospital } from './components/IconLocalHospital' -import { IconLocalHotel } from './components/IconLocalHotel' -import { IconLocalLaundryService } from './components/IconLocalLaundryService' -import { IconLocalLibrary } from './components/IconLocalLibrary' -import { IconLocalMall } from './components/IconLocalMall' -import { IconLocalMovies } from './components/IconLocalMovies' -import { IconLocalOffer } from './components/IconLocalOffer' -import { IconLocalParking } from './components/IconLocalParking' -import { IconLocalPharmacy } from './components/IconLocalPharmacy' -import { IconLocalPhone } from './components/IconLocalPhone' -import { IconLocalPizza } from './components/IconLocalPizza' -import { IconLocalPlay } from './components/IconLocalPlay' -import { IconLocalPolice } from './components/IconLocalPolice' -import { IconLocalPostOffice } from './components/IconLocalPostOffice' -import { IconLocalPrintshop } from './components/IconLocalPrintshop' -import { IconLocalSee } from './components/IconLocalSee' -import { IconLocalShipping } from './components/IconLocalShipping' -import { IconLocalTaxi } from './components/IconLocalTaxi' -import { IconLocationCity } from './components/IconLocationCity' -import { IconLocationDisabled } from './components/IconLocationDisabled' -import { IconLocationOff } from './components/IconLocationOff' -import { IconLocationOn } from './components/IconLocationOn' -import { IconLocationSearching } from './components/IconLocationSearching' -import { IconLock } from './components/IconLock' -import { IconLockOpen } from './components/IconLockOpen' -import { IconLogin } from './components/IconLogin' -import { IconLooks } from './components/IconLooks' -import { IconLooks3 } from './components/IconLooks3' -import { IconLooks4 } from './components/IconLooks4' -import { IconLooks5 } from './components/IconLooks5' -import { IconLooks6 } from './components/IconLooks6' -import { IconLooksOne } from './components/IconLooksOne' -import { IconLooksTwo } from './components/IconLooksTwo' -import { IconLoop } from './components/IconLoop' -import { IconLoupe } from './components/IconLoupe' -import { IconLowPriority } from './components/IconLowPriority' -import { IconLoyalty } from './components/IconLoyalty' -import { IconLuggage } from './components/IconLuggage' -import { IconMail } from './components/IconMail' -import { IconMailOutline } from './components/IconMailOutline' -import { IconMap } from './components/IconMap' -import { IconMapsUgc } from './components/IconMapsUgc' -import { IconMarkChatRead } from './components/IconMarkChatRead' -import { IconMarkChatUnread } from './components/IconMarkChatUnread' -import { IconMarkEmailRead } from './components/IconMarkEmailRead' -import { IconMarkEmailUnread } from './components/IconMarkEmailUnread' -import { IconMarkunread } from './components/IconMarkunread' -import { IconMarkunreadMailbox } from './components/IconMarkunreadMailbox' -import { IconMasks } from './components/IconMasks' -import { IconMaximize } from './components/IconMaximize' -import { IconMediation } from './components/IconMediation' -import { IconMedicalServices } from './components/IconMedicalServices' -import { IconMeetingRoom } from './components/IconMeetingRoom' -import { IconMemory } from './components/IconMemory' -import { IconMenu } from './components/IconMenu' -import { IconMenuBook } from './components/IconMenuBook' -import { IconMenuOpen } from './components/IconMenuOpen' -import { IconMergeType } from './components/IconMergeType' -import { IconMessage } from './components/IconMessage' -import { IconMic } from './components/IconMic' -import { IconMicNone } from './components/IconMicNone' -import { IconMicOff } from './components/IconMicOff' -import { IconMicrowave } from './components/IconMicrowave' -import { IconMilitaryTech } from './components/IconMilitaryTech' -import { IconMinimize } from './components/IconMinimize' -import { IconMiscellaneousServices } from './components/IconMiscellaneousServices' -import { IconMissedVideoCall } from './components/IconMissedVideoCall' -import { IconMms } from './components/IconMms' -import { IconMobileFriendly } from './components/IconMobileFriendly' -import { IconMobileOff } from './components/IconMobileOff' -import { IconMobileScreenShare } from './components/IconMobileScreenShare' -import { IconModeComment } from './components/IconModeComment' -import { IconModelTraining } from './components/IconModelTraining' -import { IconMonetizationOn } from './components/IconMonetizationOn' -import { IconMoney } from './components/IconMoney' -import { IconMoneyOff } from './components/IconMoneyOff' -import { IconMonochromePhotos } from './components/IconMonochromePhotos' -import { IconMood } from './components/IconMood' -import { IconMoodBad } from './components/IconMoodBad' -import { IconMoped } from './components/IconMoped' -import { IconMore } from './components/IconMore' -import { IconMoreHoriz } from './components/IconMoreHoriz' -import { IconMoreTime } from './components/IconMoreTime' -import { IconMoreVert } from './components/IconMoreVert' -import { IconMotionPhotosOn } from './components/IconMotionPhotosOn' -import { IconMotionPhotosPause } from './components/IconMotionPhotosPause' -import { IconMotionPhotosPaused } from './components/IconMotionPhotosPaused' -import { IconMouse } from './components/IconMouse' -import { IconMoveToInbox } from './components/IconMoveToInbox' -import { IconMovie } from './components/IconMovie' -import { IconMovieCreation } from './components/IconMovieCreation' -import { IconMovieFilter } from './components/IconMovieFilter' -import { IconMultilineChart } from './components/IconMultilineChart' -import { IconMultipleStop } from './components/IconMultipleStop' -import { IconMuseum } from './components/IconMuseum' -import { IconMusicNote } from './components/IconMusicNote' -import { IconMusicOff } from './components/IconMusicOff' -import { IconMusicVideo } from './components/IconMusicVideo' -import { IconMyLocation } from './components/IconMyLocation' -import { IconNat } from './components/IconNat' -import { IconNature } from './components/IconNature' -import { IconNaturePeople } from './components/IconNaturePeople' -import { IconNavigateBefore } from './components/IconNavigateBefore' -import { IconNavigateNext } from './components/IconNavigateNext' -import { IconNavigation } from './components/IconNavigation' -import { IconNearMe } from './components/IconNearMe' -import { IconNearMeDisabled } from './components/IconNearMeDisabled' -import { IconNetworkCheck } from './components/IconNetworkCheck' -import { IconNetworkLocked } from './components/IconNetworkLocked' -import { IconNewReleases } from './components/IconNewReleases' -import { IconNextPlan } from './components/IconNextPlan' -import { IconNextWeek } from './components/IconNextWeek' -import { IconNfc } from './components/IconNfc' -import { IconNightShelter } from './components/IconNightShelter' -import { IconNightsStay } from './components/IconNightsStay' -import { IconNoBackpack } from './components/IconNoBackpack' -import { IconNoCell } from './components/IconNoCell' -import { IconNoDrinks } from './components/IconNoDrinks' -import { IconNoEncryption } from './components/IconNoEncryption' -import { IconNoFlash } from './components/IconNoFlash' -import { IconNoFood } from './components/IconNoFood' -import { IconNoLuggage } from './components/IconNoLuggage' -import { IconNoMeals } from './components/IconNoMeals' -import { IconNoMeetingRoom } from './components/IconNoMeetingRoom' -import { IconNoPhotography } from './components/IconNoPhotography' -import { IconNoSim } from './components/IconNoSim' -import { IconNoStroller } from './components/IconNoStroller' -import { IconNoTransfer } from './components/IconNoTransfer' -import { IconNorth } from './components/IconNorth' -import { IconNorthEast } from './components/IconNorthEast' -import { IconNorthWest } from './components/IconNorthWest' -import { IconNotAccessible } from './components/IconNotAccessible' -import { IconNotInterested } from './components/IconNotInterested' -import { IconNotListedLocation } from './components/IconNotListedLocation' -import { IconNotStarted } from './components/IconNotStarted' -import { IconNote } from './components/IconNote' -import { IconNoteAdd } from './components/IconNoteAdd' -import { IconNotes } from './components/IconNotes' -import { IconNotificationImportant } from './components/IconNotificationImportant' -import { IconNotifications } from './components/IconNotifications' -import { IconNotificationsActive } from './components/IconNotificationsActive' -import { IconNotificationsNone } from './components/IconNotificationsNone' -import { IconNotificationsOff } from './components/IconNotificationsOff' -import { IconNotificationsPaused } from './components/IconNotificationsPaused' -import { IconOfflineBolt } from './components/IconOfflineBolt' -import { IconOfflinePin } from './components/IconOfflinePin' -import { IconOndemandVideo } from './components/IconOndemandVideo' -import { IconOnlinePrediction } from './components/IconOnlinePrediction' -import { IconOpacity } from './components/IconOpacity' -import { IconOpenInBrowser } from './components/IconOpenInBrowser' -import { IconOpenInFull } from './components/IconOpenInFull' -import { IconOpenInNew } from './components/IconOpenInNew' -import { IconOpenWith } from './components/IconOpenWith' -import { IconOutbond } from './components/IconOutbond' -import { IconOutdoorGrill } from './components/IconOutdoorGrill' -import { IconOutlet } from './components/IconOutlet' -import { IconOutlinedFlag } from './components/IconOutlinedFlag' -import { IconPages } from './components/IconPages' -import { IconPageview } from './components/IconPageview' -import { IconPalette } from './components/IconPalette' -import { IconPanTool } from './components/IconPanTool' -import { IconPanorama } from './components/IconPanorama' -import { IconPanoramaFishEye } from './components/IconPanoramaFishEye' -import { IconPanoramaHorizontal } from './components/IconPanoramaHorizontal' -import { IconPanoramaVertical } from './components/IconPanoramaVertical' -import { IconPanoramaWideAngle } from './components/IconPanoramaWideAngle' -import { IconPartyMode } from './components/IconPartyMode' -import { IconPause } from './components/IconPause' -import { IconPauseCircleFilled } from './components/IconPauseCircleFilled' -import { IconPauseCircleOutline } from './components/IconPauseCircleOutline' -import { IconPausePresentation } from './components/IconPausePresentation' -import { IconPayment } from './components/IconPayment' -import { IconPayments } from './components/IconPayments' -import { IconPedalBike } from './components/IconPedalBike' -import { IconPending } from './components/IconPending' -import { IconPendingActions } from './components/IconPendingActions' -import { IconPeople } from './components/IconPeople' -import { IconPeopleAlt } from './components/IconPeopleAlt' -import { IconPeopleOutline } from './components/IconPeopleOutline' -import { IconPermCameraMic } from './components/IconPermCameraMic' -import { IconPermContactCalendar } from './components/IconPermContactCalendar' -import { IconPermDataSetting } from './components/IconPermDataSetting' -import { IconPermDeviceInformation } from './components/IconPermDeviceInformation' -import { IconPermIdentity } from './components/IconPermIdentity' -import { IconPermMedia } from './components/IconPermMedia' -import { IconPermPhoneMsg } from './components/IconPermPhoneMsg' -import { IconPermScanWifi } from './components/IconPermScanWifi' -import { IconPerson } from './components/IconPerson' -import { IconPersonAdd } from './components/IconPersonAdd' -import { IconPersonAddAlt1 } from './components/IconPersonAddAlt1' -import { IconPersonAddDisabled } from './components/IconPersonAddDisabled' -import { IconPersonOutline } from './components/IconPersonOutline' -import { IconPersonPin } from './components/IconPersonPin' -import { IconPersonPinCircle } from './components/IconPersonPinCircle' -import { IconPersonRemove } from './components/IconPersonRemove' -import { IconPersonRemoveAlt1 } from './components/IconPersonRemoveAlt1' -import { IconPersonSearch } from './components/IconPersonSearch' -import { IconPersonalVideo } from './components/IconPersonalVideo' -import { IconPestControl } from './components/IconPestControl' -import { IconPestControlRodent } from './components/IconPestControlRodent' -import { IconPets } from './components/IconPets' -import { IconPhone } from './components/IconPhone' -import { IconPhoneAndroid } from './components/IconPhoneAndroid' -import { IconPhoneBluetoothSpeaker } from './components/IconPhoneBluetoothSpeaker' -import { IconPhoneCallback } from './components/IconPhoneCallback' -import { IconPhoneDisabled } from './components/IconPhoneDisabled' -import { IconPhoneEnabled } from './components/IconPhoneEnabled' -import { IconPhoneForwarded } from './components/IconPhoneForwarded' -import { IconPhoneInTalk } from './components/IconPhoneInTalk' -import { IconPhoneIphone } from './components/IconPhoneIphone' -import { IconPhoneLocked } from './components/IconPhoneLocked' -import { IconPhoneMissed } from './components/IconPhoneMissed' -import { IconPhonePaused } from './components/IconPhonePaused' -import { IconPhonelink } from './components/IconPhonelink' -import { IconPhonelinkErase } from './components/IconPhonelinkErase' -import { IconPhonelinkLock } from './components/IconPhonelinkLock' -import { IconPhonelinkOff } from './components/IconPhonelinkOff' -import { IconPhonelinkRing } from './components/IconPhonelinkRing' -import { IconPhonelinkSetup } from './components/IconPhonelinkSetup' -import { IconPhoto } from './components/IconPhoto' -import { IconPhotoAlbum } from './components/IconPhotoAlbum' -import { IconPhotoCamera } from './components/IconPhotoCamera' -import { IconPhotoFilter } from './components/IconPhotoFilter' -import { IconPhotoLibrary } from './components/IconPhotoLibrary' -import { IconPhotoSizeSelectActual } from './components/IconPhotoSizeSelectActual' -import { IconPhotoSizeSelectLarge } from './components/IconPhotoSizeSelectLarge' -import { IconPhotoSizeSelectSmall } from './components/IconPhotoSizeSelectSmall' -import { IconPictureAsPdf } from './components/IconPictureAsPdf' -import { IconPictureInPicture } from './components/IconPictureInPicture' -import { IconPictureInPictureAlt } from './components/IconPictureInPictureAlt' -import { IconPieChart } from './components/IconPieChart' -import { IconPinDrop } from './components/IconPinDrop' -import { IconPlace } from './components/IconPlace' -import { IconPlagiarism } from './components/IconPlagiarism' -import { IconPlayArrow } from './components/IconPlayArrow' -import { IconPlayCircleFilled } from './components/IconPlayCircleFilled' -import { IconPlayCircleOutline } from './components/IconPlayCircleOutline' -import { IconPlayForWork } from './components/IconPlayForWork' -import { IconPlaylistAdd } from './components/IconPlaylistAdd' -import { IconPlaylistAddCheck } from './components/IconPlaylistAddCheck' -import { IconPlaylistPlay } from './components/IconPlaylistPlay' -import { IconPlumbing } from './components/IconPlumbing' -import { IconPlusOne } from './components/IconPlusOne' -import { IconPointOfSale } from './components/IconPointOfSale' -import { IconPolicy } from './components/IconPolicy' -import { IconPoll } from './components/IconPoll' -import { IconPolymer } from './components/IconPolymer' -import { IconPool } from './components/IconPool' -import { IconPortableWifiOff } from './components/IconPortableWifiOff' -import { IconPortrait } from './components/IconPortrait' -import { IconPostAdd } from './components/IconPostAdd' -import { IconPower } from './components/IconPower' -import { IconPowerInput } from './components/IconPowerInput' -import { IconPowerOff } from './components/IconPowerOff' -import { IconPowerSettingsNew } from './components/IconPowerSettingsNew' -import { IconPregnantWoman } from './components/IconPregnantWoman' -import { IconPresentToAll } from './components/IconPresentToAll' -import { IconPreview } from './components/IconPreview' -import { IconPrint } from './components/IconPrint' -import { IconPrintDisabled } from './components/IconPrintDisabled' -import { IconPriorityHigh } from './components/IconPriorityHigh' -import { IconPrivacyTip } from './components/IconPrivacyTip' -import { IconPsychology } from './components/IconPsychology' -import { IconPublic } from './components/IconPublic' -import { IconPublicOff } from './components/IconPublicOff' -import { IconPublish } from './components/IconPublish' -import { IconPublishedWithChanges } from './components/IconPublishedWithChanges' -import { IconPushPin } from './components/IconPushPin' -import { IconQrCode } from './components/IconQrCode' -import { IconQrCode2 } from './components/IconQrCode2' -import { IconQrCodeScanner } from './components/IconQrCodeScanner' -import { IconQueryBuilder } from './components/IconQueryBuilder' -import { IconQuestionAnswer } from './components/IconQuestionAnswer' -import { IconQueue } from './components/IconQueue' -import { IconQueueMusic } from './components/IconQueueMusic' -import { IconQueuePlayNext } from './components/IconQueuePlayNext' -import { IconQuickreply } from './components/IconQuickreply' -import { IconRadio } from './components/IconRadio' -import { IconRadioButtonChecked } from './components/IconRadioButtonChecked' -import { IconRadioButtonUnchecked } from './components/IconRadioButtonUnchecked' -import { IconRateReview } from './components/IconRateReview' -import { IconReadMore } from './components/IconReadMore' -import { IconReceipt } from './components/IconReceipt' -import { IconReceiptLong } from './components/IconReceiptLong' -import { IconRecentActors } from './components/IconRecentActors' -import { IconRecordVoiceOver } from './components/IconRecordVoiceOver' -import { IconRedeem } from './components/IconRedeem' -import { IconRedo } from './components/IconRedo' -import { IconReduceCapacity } from './components/IconReduceCapacity' -import { IconRefresh } from './components/IconRefresh' -import { IconRemove } from './components/IconRemove' -import { IconRemoveCircle } from './components/IconRemoveCircle' -import { IconRemoveCircleOutline } from './components/IconRemoveCircleOutline' -import { IconRemoveFromQueue } from './components/IconRemoveFromQueue' -import { IconRemoveRedEye } from './components/IconRemoveRedEye' -import { IconRemoveShoppingCart } from './components/IconRemoveShoppingCart' -import { IconReorder } from './components/IconReorder' -import { IconRepeat } from './components/IconRepeat' -import { IconRepeatOne } from './components/IconRepeatOne' -import { IconReplay } from './components/IconReplay' -import { IconReplay10 } from './components/IconReplay10' -import { IconReplay30 } from './components/IconReplay30' -import { IconReplay5 } from './components/IconReplay5' -import { IconReply } from './components/IconReply' -import { IconReplyAll } from './components/IconReplyAll' -import { IconReport } from './components/IconReport' -import { IconReportOff } from './components/IconReportOff' -import { IconReportProblem } from './components/IconReportProblem' -import { IconRequestPage } from './components/IconRequestPage' -import { IconRequestQuote } from './components/IconRequestQuote' -import { IconRestaurant } from './components/IconRestaurant' -import { IconRestaurantMenu } from './components/IconRestaurantMenu' -import { IconRestore } from './components/IconRestore' -import { IconRestoreFromTrash } from './components/IconRestoreFromTrash' -import { IconRestorePage } from './components/IconRestorePage' -import { IconRiceBowl } from './components/IconRiceBowl' -import { IconRingVolume } from './components/IconRingVolume' -import { IconRoofing } from './components/IconRoofing' -import { IconRoom } from './components/IconRoom' -import { IconRoomPreferences } from './components/IconRoomPreferences' -import { IconRoomService } from './components/IconRoomService' -import { IconRotate90DegreesCcw } from './components/IconRotate90DegreesCcw' -import { IconRotateLeft } from './components/IconRotateLeft' -import { IconRotateRight } from './components/IconRotateRight' -import { IconRoundedCorner } from './components/IconRoundedCorner' -import { IconRouter } from './components/IconRouter' -import { IconRowing } from './components/IconRowing' -import { IconRssFeed } from './components/IconRssFeed' -import { IconRule } from './components/IconRule' -import { IconRuleFolder } from './components/IconRuleFolder' -import { IconRunCircle } from './components/IconRunCircle' -import { IconRvHookup } from './components/IconRvHookup' -import { IconSanitizer } from './components/IconSanitizer' -import { IconSatellite } from './components/IconSatellite' -import { IconSave } from './components/IconSave' -import { IconSaveAlt } from './components/IconSaveAlt' -import { IconScanner } from './components/IconScanner' -import { IconScatterPlot } from './components/IconScatterPlot' -import { IconSchedule } from './components/IconSchedule' -import { IconSchool } from './components/IconSchool' -import { IconScience } from './components/IconScience' -import { IconScore } from './components/IconScore' -import { IconScreenLockLandscape } from './components/IconScreenLockLandscape' -import { IconScreenLockPortrait } from './components/IconScreenLockPortrait' -import { IconScreenLockRotation } from './components/IconScreenLockRotation' -import { IconScreenRotation } from './components/IconScreenRotation' -import { IconScreenShare } from './components/IconScreenShare' -import { IconSdCard } from './components/IconSdCard' -import { IconSdStorage } from './components/IconSdStorage' -import { IconSearch } from './components/IconSearch' -import { IconSearchOff } from './components/IconSearchOff' -import { IconSecurity } from './components/IconSecurity' -import { IconSelectAll } from './components/IconSelectAll' -import { IconSelfImprovement } from './components/IconSelfImprovement' -import { IconSend } from './components/IconSend' -import { IconSensorDoor } from './components/IconSensorDoor' -import { IconSensorWindow } from './components/IconSensorWindow' -import { IconSentimentDissatisfied } from './components/IconSentimentDissatisfied' -import { IconSentimentSatisfied } from './components/IconSentimentSatisfied' -import { IconSentimentSatisfiedAlt } from './components/IconSentimentSatisfiedAlt' -import { IconSentimentVeryDissatisfied } from './components/IconSentimentVeryDissatisfied' -import { IconSentimentVerySatisfied } from './components/IconSentimentVerySatisfied' -import { IconSetMeal } from './components/IconSetMeal' -import { IconSettings } from './components/IconSettings' -import { IconSettingsApplications } from './components/IconSettingsApplications' -import { IconSettingsBackupRestore } from './components/IconSettingsBackupRestore' -import { IconSettingsBluetooth } from './components/IconSettingsBluetooth' -import { IconSettingsBrightness } from './components/IconSettingsBrightness' -import { IconSettingsCell } from './components/IconSettingsCell' -import { IconSettingsEthernet } from './components/IconSettingsEthernet' -import { IconSettingsInputAntenna } from './components/IconSettingsInputAntenna' -import { IconSettingsInputComponent } from './components/IconSettingsInputComponent' -import { IconSettingsInputComposite } from './components/IconSettingsInputComposite' -import { IconSettingsInputHdmi } from './components/IconSettingsInputHdmi' -import { IconSettingsInputSvideo } from './components/IconSettingsInputSvideo' -import { IconSettingsOverscan } from './components/IconSettingsOverscan' -import { IconSettingsPhone } from './components/IconSettingsPhone' -import { IconSettingsPower } from './components/IconSettingsPower' -import { IconSettingsRemote } from './components/IconSettingsRemote' -import { IconSettingsSystemDaydream } from './components/IconSettingsSystemDaydream' -import { IconSettingsVoice } from './components/IconSettingsVoice' -import { IconShare } from './components/IconShare' -import { IconShop } from './components/IconShop' -import { IconShopTwo } from './components/IconShopTwo' -import { IconShoppingBag } from './components/IconShoppingBag' -import { IconShoppingBasket } from './components/IconShoppingBasket' -import { IconShoppingCart } from './components/IconShoppingCart' -import { IconShortText } from './components/IconShortText' -import { IconShowChart } from './components/IconShowChart' -import { IconShuffle } from './components/IconShuffle' -import { IconShutterSpeed } from './components/IconShutterSpeed' -import { IconSick } from './components/IconSick' -import { IconSignalCellular4Bar } from './components/IconSignalCellular4Bar' -import { IconSignalCellularAlt } from './components/IconSignalCellularAlt' -import { IconSignalCellularConnectedNoInternet4Bar } from './components/IconSignalCellularConnectedNoInternet4Bar' -import { IconSignalCellularNoSim } from './components/IconSignalCellularNoSim' -import { IconSignalCellularNull } from './components/IconSignalCellularNull' -import { IconSignalCellularOff } from './components/IconSignalCellularOff' -import { IconSignalWifi4Bar } from './components/IconSignalWifi4Bar' -import { IconSignalWifi4BarLock } from './components/IconSignalWifi4BarLock' -import { IconSignalWifiOff } from './components/IconSignalWifiOff' -import { IconSimCard } from './components/IconSimCard' -import { IconSingleBed } from './components/IconSingleBed' -import { IconSkipNext } from './components/IconSkipNext' -import { IconSkipPrevious } from './components/IconSkipPrevious' -import { IconSlideshow } from './components/IconSlideshow' -import { IconSlowMotionVideo } from './components/IconSlowMotionVideo' -import { IconSmartButton } from './components/IconSmartButton' -import { IconSmartphone } from './components/IconSmartphone' -import { IconSmokeFree } from './components/IconSmokeFree' -import { IconSmokingRooms } from './components/IconSmokingRooms' -import { IconSms } from './components/IconSms' -import { IconSmsFailed } from './components/IconSmsFailed' -import { IconSnippetFolder } from './components/IconSnippetFolder' -import { IconSnooze } from './components/IconSnooze' -import { IconSoap } from './components/IconSoap' -import { IconSort } from './components/IconSort' -import { IconSortByAlpha } from './components/IconSortByAlpha' -import { IconSource } from './components/IconSource' -import { IconSouth } from './components/IconSouth' -import { IconSouthEast } from './components/IconSouthEast' -import { IconSouthWest } from './components/IconSouthWest' -import { IconSpa } from './components/IconSpa' -import { IconSpaceBar } from './components/IconSpaceBar' -import { IconSpeaker } from './components/IconSpeaker' -import { IconSpeakerGroup } from './components/IconSpeakerGroup' -import { IconSpeakerNotes } from './components/IconSpeakerNotes' -import { IconSpeakerNotesOff } from './components/IconSpeakerNotesOff' -import { IconSpeakerPhone } from './components/IconSpeakerPhone' -import { IconSpeed } from './components/IconSpeed' -import { IconSpellcheck } from './components/IconSpellcheck' -import { IconSports } from './components/IconSports' -import { IconSportsBar } from './components/IconSportsBar' -import { IconSportsBaseball } from './components/IconSportsBaseball' -import { IconSportsBasketball } from './components/IconSportsBasketball' -import { IconSportsCricket } from './components/IconSportsCricket' -import { IconSportsEsports } from './components/IconSportsEsports' -import { IconSportsFootball } from './components/IconSportsFootball' -import { IconSportsGolf } from './components/IconSportsGolf' -import { IconSportsHandball } from './components/IconSportsHandball' -import { IconSportsHockey } from './components/IconSportsHockey' -import { IconSportsKabaddi } from './components/IconSportsKabaddi' -import { IconSportsMma } from './components/IconSportsMma' -import { IconSportsMotorsports } from './components/IconSportsMotorsports' -import { IconSportsRugby } from './components/IconSportsRugby' -import { IconSportsSoccer } from './components/IconSportsSoccer' -import { IconSportsTennis } from './components/IconSportsTennis' -import { IconSportsVolleyball } from './components/IconSportsVolleyball' -import { IconSquareFoot } from './components/IconSquareFoot' -import { IconStackedLineChart } from './components/IconStackedLineChart' -import { IconStairs } from './components/IconStairs' -import { IconStar } from './components/IconStar' -import { IconStarBorder } from './components/IconStarBorder' -import { IconStarHalf } from './components/IconStarHalf' -import { IconStarOutline } from './components/IconStarOutline' -import { IconStarRate } from './components/IconStarRate' -import { IconStars } from './components/IconStars' -import { IconStayCurrentLandscape } from './components/IconStayCurrentLandscape' -import { IconStayCurrentPortrait } from './components/IconStayCurrentPortrait' -import { IconStayPrimaryLandscape } from './components/IconStayPrimaryLandscape' -import { IconStayPrimaryPortrait } from './components/IconStayPrimaryPortrait' -import { IconStickyNote2 } from './components/IconStickyNote2' -import { IconStop } from './components/IconStop' -import { IconStopCircle } from './components/IconStopCircle' -import { IconStopScreenShare } from './components/IconStopScreenShare' -import { IconStorage } from './components/IconStorage' -import { IconStore } from './components/IconStore' -import { IconStoreMallDirectory } from './components/IconStoreMallDirectory' -import { IconStorefront } from './components/IconStorefront' -import { IconStraighten } from './components/IconStraighten' -import { IconStreetview } from './components/IconStreetview' -import { IconStrikethroughS } from './components/IconStrikethroughS' -import { IconStroller } from './components/IconStroller' -import { IconStyle } from './components/IconStyle' -import { IconSubdirectoryArrowLeft } from './components/IconSubdirectoryArrowLeft' -import { IconSubdirectoryArrowRight } from './components/IconSubdirectoryArrowRight' -import { IconSubject } from './components/IconSubject' -import { IconSubscript } from './components/IconSubscript' -import { IconSubscriptions } from './components/IconSubscriptions' -import { IconSubtitles } from './components/IconSubtitles' -import { IconSubtitlesOff } from './components/IconSubtitlesOff' -import { IconSubway } from './components/IconSubway' -import { IconSuperscript } from './components/IconSuperscript' -import { IconSupervisedUserCircle } from './components/IconSupervisedUserCircle' -import { IconSupervisorAccount } from './components/IconSupervisorAccount' -import { IconSupport } from './components/IconSupport' -import { IconSupportAgent } from './components/IconSupportAgent' -import { IconSurroundSound } from './components/IconSurroundSound' -import { IconSwapCalls } from './components/IconSwapCalls' -import { IconSwapHoriz } from './components/IconSwapHoriz' -import { IconSwapHorizontalCircle } from './components/IconSwapHorizontalCircle' -import { IconSwapVert } from './components/IconSwapVert' -import { IconSwapVerticalCircle } from './components/IconSwapVerticalCircle' -import { IconSwitchCamera } from './components/IconSwitchCamera' -import { IconSwitchLeft } from './components/IconSwitchLeft' -import { IconSwitchRight } from './components/IconSwitchRight' -import { IconSwitchVideo } from './components/IconSwitchVideo' -import { IconSync } from './components/IconSync' -import { IconSyncAlt } from './components/IconSyncAlt' -import { IconSyncDisabled } from './components/IconSyncDisabled' -import { IconSyncProblem } from './components/IconSyncProblem' -import { IconSystemUpdate } from './components/IconSystemUpdate' -import { IconSystemUpdateAlt } from './components/IconSystemUpdateAlt' -import { IconTab } from './components/IconTab' -import { IconTabUnselected } from './components/IconTabUnselected' -import { IconTableChart } from './components/IconTableChart' -import { IconTableRows } from './components/IconTableRows' -import { IconTableView } from './components/IconTableView' -import { IconTablet } from './components/IconTablet' -import { IconTabletAndroid } from './components/IconTabletAndroid' -import { IconTabletMac } from './components/IconTabletMac' -import { IconTagFaces } from './components/IconTagFaces' -import { IconTapAndPlay } from './components/IconTapAndPlay' -import { IconTapas } from './components/IconTapas' -import { IconTerrain } from './components/IconTerrain' -import { IconTextFields } from './components/IconTextFields' -import { IconTextFormat } from './components/IconTextFormat' -import { IconTextRotateUp } from './components/IconTextRotateUp' -import { IconTextRotateVertical } from './components/IconTextRotateVertical' -import { IconTextRotationAngledown } from './components/IconTextRotationAngledown' -import { IconTextRotationAngleup } from './components/IconTextRotationAngleup' -import { IconTextRotationDown } from './components/IconTextRotationDown' -import { IconTextRotationNone } from './components/IconTextRotationNone' -import { IconTextSnippet } from './components/IconTextSnippet' -import { IconTextsms } from './components/IconTextsms' -import { IconTexture } from './components/IconTexture' -import { IconTheaters } from './components/IconTheaters' -import { IconThumbDown } from './components/IconThumbDown' -import { IconThumbDownAlt } from './components/IconThumbDownAlt' -import { IconThumbUp } from './components/IconThumbUp' -import { IconThumbUpAlt } from './components/IconThumbUpAlt' -import { IconThumbsUpDown } from './components/IconThumbsUpDown' -import { IconTimeToLeave } from './components/IconTimeToLeave' -import { IconTimelapse } from './components/IconTimelapse' -import { IconTimeline } from './components/IconTimeline' -import { IconTimer } from './components/IconTimer' -import { IconTimer10 } from './components/IconTimer10' -import { IconTimer3 } from './components/IconTimer3' -import { IconTimerOff } from './components/IconTimerOff' -import { IconTitle } from './components/IconTitle' -import { IconToc } from './components/IconToc' -import { IconToday } from './components/IconToday' -import { IconToggleOff } from './components/IconToggleOff' -import { IconToggleOn } from './components/IconToggleOn' -import { IconToll } from './components/IconToll' -import { IconTonality } from './components/IconTonality' -import { IconTopic } from './components/IconTopic' -import { IconTouchApp } from './components/IconTouchApp' -import { IconTour } from './components/IconTour' -import { IconToys } from './components/IconToys' -import { IconTrackChanges } from './components/IconTrackChanges' -import { IconTraffic } from './components/IconTraffic' -import { IconTrain } from './components/IconTrain' -import { IconTram } from './components/IconTram' -import { IconTransferWithinAStation } from './components/IconTransferWithinAStation' -import { IconTransform } from './components/IconTransform' -import { IconTransitEnterexit } from './components/IconTransitEnterexit' -import { IconTranslate } from './components/IconTranslate' -import { IconTrendingDown } from './components/IconTrendingDown' -import { IconTrendingFlat } from './components/IconTrendingFlat' -import { IconTrendingUp } from './components/IconTrendingUp' -import { IconTripOrigin } from './components/IconTripOrigin' -import { IconTty } from './components/IconTty' -import { IconTune } from './components/IconTune' -import { IconTurnedIn } from './components/IconTurnedIn' -import { IconTurnedInNot } from './components/IconTurnedInNot' -import { IconTv } from './components/IconTv' -import { IconTvOff } from './components/IconTvOff' -import { IconTwoWheeler } from './components/IconTwoWheeler' -import { IconUmbrella } from './components/IconUmbrella' -import { IconUnarchive } from './components/IconUnarchive' -import { IconUndo } from './components/IconUndo' -import { IconUnfoldLess } from './components/IconUnfoldLess' -import { IconUnfoldMore } from './components/IconUnfoldMore' -import { IconUnpublished } from './components/IconUnpublished' -import { IconUnsubscribe } from './components/IconUnsubscribe' -import { IconUpdate } from './components/IconUpdate' -import { IconUpdateDisabled } from './components/IconUpdateDisabled' -import { IconUpgrade } from './components/IconUpgrade' -import { IconUsb } from './components/IconUsb' -import { IconVerified } from './components/IconVerified' -import { IconVerifiedUser } from './components/IconVerifiedUser' -import { IconVerticalAlignBottom } from './components/IconVerticalAlignBottom' -import { IconVerticalAlignCenter } from './components/IconVerticalAlignCenter' -import { IconVerticalAlignTop } from './components/IconVerticalAlignTop' -import { IconVerticalDistribute } from './components/IconVerticalDistribute' -import { IconVerticalSplit } from './components/IconVerticalSplit' -import { IconVibration } from './components/IconVibration' -import { IconVideoCall } from './components/IconVideoCall' -import { IconVideoLabel } from './components/IconVideoLabel' -import { IconVideoLibrary } from './components/IconVideoLibrary' -import { IconVideoSettings } from './components/IconVideoSettings' -import { IconVideocam } from './components/IconVideocam' -import { IconVideocamOff } from './components/IconVideocamOff' -import { IconVideogameAsset } from './components/IconVideogameAsset' -import { IconViewAgenda } from './components/IconViewAgenda' -import { IconViewArray } from './components/IconViewArray' -import { IconViewCarousel } from './components/IconViewCarousel' -import { IconViewColumn } from './components/IconViewColumn' -import { IconViewComfy } from './components/IconViewComfy' -import { IconViewCompact } from './components/IconViewCompact' -import { IconViewDay } from './components/IconViewDay' -import { IconViewHeadline } from './components/IconViewHeadline' -import { IconViewList } from './components/IconViewList' -import { IconViewModule } from './components/IconViewModule' -import { IconViewQuilt } from './components/IconViewQuilt' -import { IconViewSidebar } from './components/IconViewSidebar' -import { IconViewStream } from './components/IconViewStream' -import { IconViewWeek } from './components/IconViewWeek' -import { IconVignette } from './components/IconVignette' -import { IconVisibility } from './components/IconVisibility' -import { IconVisibilityOff } from './components/IconVisibilityOff' -import { IconVoiceChat } from './components/IconVoiceChat' -import { IconVoiceOverOff } from './components/IconVoiceOverOff' -import { IconVoicemail } from './components/IconVoicemail' -import { IconVolumeDown } from './components/IconVolumeDown' -import { IconVolumeMute } from './components/IconVolumeMute' -import { IconVolumeOff } from './components/IconVolumeOff' -import { IconVolumeUp } from './components/IconVolumeUp' -import { IconVpnKey } from './components/IconVpnKey' -import { IconVpnLock } from './components/IconVpnLock' -import { IconWallpaper } from './components/IconWallpaper' -import { IconWarning } from './components/IconWarning' -import { IconWash } from './components/IconWash' -import { IconWatch } from './components/IconWatch' -import { IconWatchLater } from './components/IconWatchLater' -import { IconWaterDamage } from './components/IconWaterDamage' -import { IconWaves } from './components/IconWaves' -import { IconWbAuto } from './components/IconWbAuto' -import { IconWbCloudy } from './components/IconWbCloudy' -import { IconWbIncandescent } from './components/IconWbIncandescent' -import { IconWbIridescent } from './components/IconWbIridescent' -import { IconWbSunny } from './components/IconWbSunny' -import { IconWc } from './components/IconWc' -import { IconWeb } from './components/IconWeb' -import { IconWebAsset } from './components/IconWebAsset' -import { IconWeekend } from './components/IconWeekend' -import { IconWest } from './components/IconWest' -import { IconWhatshot } from './components/IconWhatshot' -import { IconWheelchairPickup } from './components/IconWheelchairPickup' -import { IconWhereToVote } from './components/IconWhereToVote' -import { IconWidgets } from './components/IconWidgets' -import { IconWifi } from './components/IconWifi' -import { IconWifiCalling } from './components/IconWifiCalling' -import { IconWifiLock } from './components/IconWifiLock' -import { IconWifiOff } from './components/IconWifiOff' -import { IconWifiProtectedSetup } from './components/IconWifiProtectedSetup' -import { IconWifiTethering } from './components/IconWifiTethering' -import { IconWineBar } from './components/IconWineBar' -import { IconWork } from './components/IconWork' -import { IconWorkOff } from './components/IconWorkOff' -import { IconWorkOutline } from './components/IconWorkOutline' -import { IconWrapText } from './components/IconWrapText' -import { IconWrongLocation } from './components/IconWrongLocation' -import { IconWysiwyg } from './components/IconWysiwyg' -import { IconYoutubeSearchedFor } from './components/IconYoutubeSearchedFor' -import { IconZoomIn } from './components/IconZoomIn' -import { IconZoomOut } from './components/IconZoomOut' -import { IconZoomOutMap } from './components/IconZoomOutMap' - -export { - Icon360, - Icon3dRotation, - Icon4k, - Icon5g, - Icon6FtApart, - IconAcUnit, - IconAccessAlarm, - IconAccessAlarms, - IconAccessTime, - IconAccessibility, - IconAccessibilityNew, - IconAccessible, - IconAccessibleForward, - IconAccountBalance, - IconAccountBalanceWallet, - IconAccountBox, - IconAccountCircle, - IconAccountTree, - IconAdUnits, - IconAdb, - IconAdd, - IconAddAPhoto, - IconAddAlarm, - IconAddAlert, - IconAddBox, - IconAddBusiness, - IconAddCircle, - IconAddCircleOutline, - IconAddComment, - IconAddIcCall, - IconAddLocation, - IconAddLocationAlt, - IconAddPhotoAlternate, - IconAddRoad, - IconAddShoppingCart, - IconAddTask, - IconAddToHomeScreen, - IconAddToPhotos, - IconAddToQueue, - IconAddchart, - IconAdjust, - IconAdminPanelSettings, - IconAgriculture, - IconAirlineSeatFlat, - IconAirlineSeatFlatAngled, - IconAirlineSeatIndividualSuite, - IconAirlineSeatLegroomExtra, - IconAirlineSeatLegroomNormal, - IconAirlineSeatLegroomReduced, - IconAirlineSeatReclineExtra, - IconAirlineSeatReclineNormal, - IconAirplanemodeActive, - IconAirplanemodeInactive, - IconAirplay, - IconAirportShuttle, - IconAlarm, - IconAlarmAdd, - IconAlarmOff, - IconAlarmOn, - IconAlbum, - IconAlignHorizontalCenter, - IconAlignHorizontalLeft, - IconAlignHorizontalRight, - IconAlignVerticalBottom, - IconAlignVerticalCenter, - IconAlignVerticalTop, - IconAllInbox, - IconAllInclusive, - IconAllOut, - IconAltRoute, - IconAlternateEmail, - IconAmpStories, - IconAnalytics, - IconAnchor, - IconAndroid, - IconAnnouncement, - IconApartment, - IconApi, - IconAppBlocking, - IconAppSettingsAlt, - IconApps, - IconArchitecture, - IconArchive, - IconArrowBack, - IconArrowBackIos, - IconArrowCircleDown, - IconArrowCircleUp, - IconArrowDownward, - IconArrowDropDown, - IconArrowDropDownCircle, - IconArrowDropUp, - IconArrowForward, - IconArrowForwardIos, - IconArrowLeft, - IconArrowRight, - IconArrowRightAlt, - IconArrowUpward, - IconArtTrack, - IconArticle, - IconAspectRatio, - IconAssessment, - IconAssignment, - IconAssignmentInd, - IconAssignmentLate, - IconAssignmentReturn, - IconAssignmentReturned, - IconAssignmentTurnedIn, - IconAssistant, - IconAssistantPhoto, - IconAtm, - IconAttachEmail, - IconAttachFile, - IconAttachMoney, - IconAttachment, - IconAudiotrack, - IconAutoDelete, - IconAutorenew, - IconAvTimer, - IconBabyChangingStation, - IconBackpack, - IconBackspace, - IconBackup, - IconBackupTable, - IconBallot, - IconBarChart, - IconBatchPrediction, - IconBathtub, - IconBatteryAlert, - IconBatteryChargingFull, - IconBatteryFull, - IconBatteryStd, - IconBatteryUnknown, - IconBeachAccess, - IconBedtime, - IconBeenhere, - IconBento, - IconBikeScooter, - IconBiotech, - IconBlock, - IconBluetooth, - IconBluetoothAudio, - IconBluetoothConnected, - IconBluetoothDisabled, - IconBluetoothSearching, - IconBlurCircular, - IconBlurLinear, - IconBlurOff, - IconBlurOn, - IconBook, - IconBookOnline, - IconBookmark, - IconBookmarkBorder, - IconBookmarks, - IconBorderAll, - IconBorderBottom, - IconBorderClear, - IconBorderHorizontal, - IconBorderInner, - IconBorderLeft, - IconBorderOuter, - IconBorderRight, - IconBorderStyle, - IconBorderTop, - IconBorderVertical, - IconBrandingWatermark, - IconBrightness1, - IconBrightness2, - IconBrightness3, - IconBrightness4, - IconBrightness5, - IconBrightness6, - IconBrightness7, - IconBrightnessAuto, - IconBrightnessHigh, - IconBrightnessLow, - IconBrightnessMedium, - IconBrokenImage, - IconBrowserNotSupported, - IconBrush, - IconBubbleChart, - IconBugReport, - IconBuild, - IconBuildCircle, - IconBurstMode, - IconBusiness, - IconBusinessCenter, - IconCached, - IconCake, - IconCalculate, - IconCalendarToday, - IconCalendarViewDay, - IconCall, - IconCallEnd, - IconCallMade, - IconCallMerge, - IconCallMissed, - IconCallMissedOutgoing, - IconCallReceived, - IconCallSplit, - IconCallToAction, - IconCamera, - IconCameraAlt, - IconCameraEnhance, - IconCameraFront, - IconCameraRear, - IconCameraRoll, - IconCampaign, - IconCancel, - IconCancelPresentation, - IconCancelScheduleSend, - IconCardGiftcard, - IconCardMembership, - IconCardTravel, - IconCarpenter, - IconCasino, - IconCast, - IconCastConnected, - IconCastForEducation, - IconCategory, - IconCenterFocusStrong, - IconCenterFocusWeak, - IconChangeHistory, - IconChargingStation, - IconChat, - IconChatBubble, - IconChatBubbleOutline, - IconCheck, - IconCheckBox, - IconCheckBoxOutlineBlank, - IconCheckCircle, - IconCheckCircleOutline, - IconCheckroom, - IconChevronLeft, - IconChevronRight, - IconChildCare, - IconChildFriendly, - IconChromeReaderMode, - IconClass, - IconCleanHands, - IconCleaningServices, - IconClear, - IconClearAll, - IconClose, - IconCloseFullscreen, - IconClosedCaption, - IconClosedCaptionDisabled, - IconCloud, - IconCloudCircle, - IconCloudDone, - IconCloudDownload, - IconCloudOff, - IconCloudQueue, - IconCloudUpload, - IconCode, - IconCollections, - IconCollectionsBookmark, - IconColorLens, - IconColorize, - IconComment, - IconCommentBank, - IconCommute, - IconCompare, - IconCompareArrows, - IconCompassCalibration, - IconComputer, - IconConfirmationNumber, - IconConnectWithoutContact, - IconConstruction, - IconContactMail, - IconContactPage, - IconContactPhone, - IconContactSupport, - IconContactless, - IconContacts, - IconContentCopy, - IconContentCut, - IconContentPaste, - IconControlCamera, - IconControlPoint, - IconControlPointDuplicate, - IconCopyright, - IconCoronavirus, - IconCorporateFare, - IconCountertops, - IconCreate, - IconCreateNewFolder, - IconCreditCard, - IconCrop, - IconCrop169, - IconCrop32, - IconCrop54, - IconCrop75, - IconCropDin, - IconCropFree, - IconCropLandscape, - IconCropOriginal, - IconCropPortrait, - IconCropRotate, - IconCropSquare, - IconDashboard, - IconDataUsage, - IconDateRange, - IconDeck, - IconDehaze, - IconDelete, - IconDeleteForever, - IconDeleteOutline, - IconDeleteSweep, - IconDepartureBoard, - IconDescription, - IconDesignServices, - IconDesktopAccessDisabled, - IconDesktopMac, - IconDesktopWindows, - IconDetails, - IconDeveloperBoard, - IconDeveloperMode, - IconDeviceHub, - IconDeviceUnknown, - IconDevices, - IconDevicesOther, - IconDialerSip, - IconDialpad, - IconDirections, - IconDirectionsBike, - IconDirectionsBoat, - IconDirectionsBus, - IconDirectionsCar, - IconDirectionsOff, - IconDirectionsRailway, - IconDirectionsRun, - IconDirectionsSubway, - IconDirectionsTransit, - IconDirectionsWalk, - IconDisabledByDefault, - IconDiscFull, - IconDns, - IconDoNotStep, - IconDoNotTouch, - IconDock, - IconDomain, - IconDomainDisabled, - IconDomainVerification, - IconDone, - IconDoneAll, - IconDoneOutline, - IconDonutLarge, - IconDonutSmall, - IconDoubleArrow, - IconDrafts, - IconDragHandle, - IconDragIndicator, - IconDriveEta, - IconDry, - IconDuo, - IconDvr, - IconDynamicFeed, - IconDynamicForm, - IconEast, - IconEco, - IconEdit, - IconEditAttributes, - IconEditLocation, - IconEditRoad, - IconEject, - IconElderly, - IconElectricBike, - IconElectricCar, - IconElectricMoped, - IconElectricScooter, - IconElectricalServices, - IconElevator, - IconEmail, - IconEmojiEmotions, - IconEmojiEvents, - IconEmojiFlags, - IconEmojiFoodBeverage, - IconEmojiNature, - IconEmojiObjects, - IconEmojiPeople, - IconEmojiSymbols, - IconEmojiTransportation, - IconEngineering, - IconEnhancedEncryption, - IconEqualizer, - IconError, - IconErrorOutline, - IconEscalator, - IconEscalatorWarning, - IconEuro, - IconEuroSymbol, - IconEvStation, - IconEvent, - IconEventAvailable, - IconEventBusy, - IconEventNote, - IconEventSeat, - IconExitToApp, - IconExpandLess, - IconExpandMore, - IconExplicit, - IconExplore, - IconExploreOff, - IconExposure, - IconExposureNeg1, - IconExposureNeg2, - IconExposurePlus1, - IconExposurePlus2, - IconExposureZero, - IconExtension, - IconFace, - IconFacebook, - IconFactCheck, - IconFamilyRestroom, - IconFastForward, - IconFastRewind, - IconFastfood, - IconFavorite, - IconFavoriteBorder, - IconFeaturedPlayList, - IconFeaturedVideo, - IconFeedback, - IconFence, - IconFiberDvr, - IconFiberManualRecord, - IconFiberNew, - IconFiberPin, - IconFiberSmartRecord, - IconFileCopy, - IconFilter, - IconFilter1, - IconFilter2, - IconFilter3, - IconFilter4, - IconFilter5, - IconFilter6, - IconFilter7, - IconFilter8, - IconFilter9, - IconFilter9Plus, - IconFilterAlt, - IconFilterBAndW, - IconFilterCenterFocus, - IconFilterDrama, - IconFilterFrames, - IconFilterHdr, - IconFilterList, - IconFilterNone, - IconFilterTiltShift, - IconFilterVintage, - IconFindInPage, - IconFindReplace, - IconFingerprint, - IconFireExtinguisher, - IconFireplace, - IconFirstPage, - IconFitnessCenter, - IconFlag, - IconFlaky, - IconFlare, - IconFlashAuto, - IconFlashOff, - IconFlashOn, - IconFlight, - IconFlightLand, - IconFlightTakeoff, - IconFlip, - IconFlipCameraAndroid, - IconFlipCameraIos, - IconFlipToBack, - IconFlipToFront, - IconFolder, - IconFolderOpen, - IconFolderShared, - IconFolderSpecial, - IconFollowTheSigns, - IconFontDownload, - IconFoodBank, - IconFormatAlignCenter, - IconFormatAlignJustify, - IconFormatAlignLeft, - IconFormatAlignRight, - IconFormatBold, - IconFormatClear, - IconFormatColorReset, - IconFormatIndentDecrease, - IconFormatIndentIncrease, - IconFormatItalic, - IconFormatLineSpacing, - IconFormatListBulleted, - IconFormatListNumbered, - IconFormatListNumberedRtl, - IconFormatPaint, - IconFormatQuote, - IconFormatShapes, - IconFormatSize, - IconFormatStrikethrough, - IconFormatTextdirectionLToR, - IconFormatTextdirectionRToL, - IconFormatUnderlined, - IconForum, - IconForward, - IconForward10, - IconForward30, - IconForward5, - IconForwardToInbox, - IconFoundation, - IconFreeBreakfast, - IconFullscreen, - IconFullscreenExit, - IconFunctions, - IconGTranslate, - IconGamepad, - IconGames, - IconGavel, - IconGesture, - IconGetApp, - IconGif, - IconGolfCourse, - IconGpsFixed, - IconGpsNotFixed, - IconGpsOff, - IconGrade, - IconGradient, - IconGrading, - IconGrain, - IconGraphicEq, - IconGrass, - IconGridOff, - IconGridOn, - IconGroup, - IconGroupAdd, - IconGroupWork, - IconGroups, - IconHandyman, - IconHd, - IconHdrOff, - IconHdrOn, - IconHdrStrong, - IconHdrWeak, - IconHeadset, - IconHeadsetMic, - IconHealing, - IconHearing, - IconHearingDisabled, - IconHeight, - IconHelp, - IconHelpCenter, - IconHelpOutline, - IconHighQuality, - IconHighlight, - IconHighlightAlt, - IconHighlightOff, - IconHistory, - IconHistoryEdu, - IconHistoryToggleOff, - IconHome, - IconHomeRepairService, - IconHomeWork, - IconHorizontalDistribute, - IconHorizontalRule, - IconHorizontalSplit, - IconHotTub, - IconHotel, - IconHourglassBottom, - IconHourglassDisabled, - IconHourglassEmpty, - IconHourglassFull, - IconHourglassTop, - IconHouse, - IconHouseSiding, - IconHowToReg, - IconHowToVote, - IconHttp, - IconHttps, - IconHvac, - IconImage, - IconImageAspectRatio, - IconImageNotSupported, - IconImageSearch, - IconImportContacts, - IconImportExport, - IconImportantDevices, - IconInbox, - IconIndeterminateCheckBox, - IconInfo, - IconInput, - IconInsertChart, - IconInsertChartOutlined, - IconInsertComment, - IconInsertDriveFile, - IconInsertEmoticon, - IconInsertInvitation, - IconInsertLink, - IconInsertPhoto, - IconInsights, - IconIntegrationInstructions, - IconInvertColors, - IconInvertColorsOff, - IconIso, - IconKeyboard, - IconKeyboardArrowDown, - IconKeyboardArrowLeft, - IconKeyboardArrowRight, - IconKeyboardArrowUp, - IconKeyboardBackspace, - IconKeyboardCapslock, - IconKeyboardHide, - IconKeyboardReturn, - IconKeyboardTab, - IconKeyboardVoice, - IconKingBed, - IconKitchen, - IconLabel, - IconLabelImportant, - IconLabelOff, - IconLandscape, - IconLanguage, - IconLaptop, - IconLaptopChromebook, - IconLaptopMac, - IconLaptopWindows, - IconLastPage, - IconLaunch, - IconLayers, - IconLayersClear, - IconLeaderboard, - IconLeakAdd, - IconLeakRemove, - IconLegendToggle, - IconLens, - IconLibraryAdd, - IconLibraryAddCheck, - IconLibraryBooks, - IconLibraryMusic, - IconLineStyle, - IconLineWeight, - IconLinearScale, - IconLink, - IconLinkOff, - IconLinkedCamera, - IconList, - IconListAlt, - IconLiveHelp, - IconLiveTv, - IconLocalActivity, - IconLocalAirport, - IconLocalAtm, - IconLocalBar, - IconLocalCafe, - IconLocalCarWash, - IconLocalConvenienceStore, - IconLocalDining, - IconLocalDrink, - IconLocalFireDepartment, - IconLocalFlorist, - IconLocalGasStation, - IconLocalGroceryStore, - IconLocalHospital, - IconLocalHotel, - IconLocalLaundryService, - IconLocalLibrary, - IconLocalMall, - IconLocalMovies, - IconLocalOffer, - IconLocalParking, - IconLocalPharmacy, - IconLocalPhone, - IconLocalPizza, - IconLocalPlay, - IconLocalPolice, - IconLocalPostOffice, - IconLocalPrintshop, - IconLocalSee, - IconLocalShipping, - IconLocalTaxi, - IconLocationCity, - IconLocationDisabled, - IconLocationOff, - IconLocationOn, - IconLocationSearching, - IconLock, - IconLockOpen, - IconLogin, - IconLooks, - IconLooks3, - IconLooks4, - IconLooks5, - IconLooks6, - IconLooksOne, - IconLooksTwo, - IconLoop, - IconLoupe, - IconLowPriority, - IconLoyalty, - IconLuggage, - IconMail, - IconMailOutline, - IconMap, - IconMapsUgc, - IconMarkChatRead, - IconMarkChatUnread, - IconMarkEmailRead, - IconMarkEmailUnread, - IconMarkunread, - IconMarkunreadMailbox, - IconMasks, - IconMaximize, - IconMediation, - IconMedicalServices, - IconMeetingRoom, - IconMemory, - IconMenu, - IconMenuBook, - IconMenuOpen, - IconMergeType, - IconMessage, - IconMic, - IconMicNone, - IconMicOff, - IconMicrowave, - IconMilitaryTech, - IconMinimize, - IconMiscellaneousServices, - IconMissedVideoCall, - IconMms, - IconMobileFriendly, - IconMobileOff, - IconMobileScreenShare, - IconModeComment, - IconModelTraining, - IconMonetizationOn, - IconMoney, - IconMoneyOff, - IconMonochromePhotos, - IconMood, - IconMoodBad, - IconMoped, - IconMore, - IconMoreHoriz, - IconMoreTime, - IconMoreVert, - IconMotionPhotosOn, - IconMotionPhotosPause, - IconMotionPhotosPaused, - IconMouse, - IconMoveToInbox, - IconMovie, - IconMovieCreation, - IconMovieFilter, - IconMultilineChart, - IconMultipleStop, - IconMuseum, - IconMusicNote, - IconMusicOff, - IconMusicVideo, - IconMyLocation, - IconNat, - IconNature, - IconNaturePeople, - IconNavigateBefore, - IconNavigateNext, - IconNavigation, - IconNearMe, - IconNearMeDisabled, - IconNetworkCheck, - IconNetworkLocked, - IconNewReleases, - IconNextPlan, - IconNextWeek, - IconNfc, - IconNightShelter, - IconNightsStay, - IconNoBackpack, - IconNoCell, - IconNoDrinks, - IconNoEncryption, - IconNoFlash, - IconNoFood, - IconNoLuggage, - IconNoMeals, - IconNoMeetingRoom, - IconNoPhotography, - IconNoSim, - IconNoStroller, - IconNoTransfer, - IconNorth, - IconNorthEast, - IconNorthWest, - IconNotAccessible, - IconNotInterested, - IconNotListedLocation, - IconNotStarted, - IconNote, - IconNoteAdd, - IconNotes, - IconNotificationImportant, - IconNotifications, - IconNotificationsActive, - IconNotificationsNone, - IconNotificationsOff, - IconNotificationsPaused, - IconOfflineBolt, - IconOfflinePin, - IconOndemandVideo, - IconOnlinePrediction, - IconOpacity, - IconOpenInBrowser, - IconOpenInFull, - IconOpenInNew, - IconOpenWith, - IconOutbond, - IconOutdoorGrill, - IconOutlet, - IconOutlinedFlag, - IconPages, - IconPageview, - IconPalette, - IconPanTool, - IconPanorama, - IconPanoramaFishEye, - IconPanoramaHorizontal, - IconPanoramaVertical, - IconPanoramaWideAngle, - IconPartyMode, - IconPause, - IconPauseCircleFilled, - IconPauseCircleOutline, - IconPausePresentation, - IconPayment, - IconPayments, - IconPedalBike, - IconPending, - IconPendingActions, - IconPeople, - IconPeopleAlt, - IconPeopleOutline, - IconPermCameraMic, - IconPermContactCalendar, - IconPermDataSetting, - IconPermDeviceInformation, - IconPermIdentity, - IconPermMedia, - IconPermPhoneMsg, - IconPermScanWifi, - IconPerson, - IconPersonAdd, - IconPersonAddAlt1, - IconPersonAddDisabled, - IconPersonOutline, - IconPersonPin, - IconPersonPinCircle, - IconPersonRemove, - IconPersonRemoveAlt1, - IconPersonSearch, - IconPersonalVideo, - IconPestControl, - IconPestControlRodent, - IconPets, - IconPhone, - IconPhoneAndroid, - IconPhoneBluetoothSpeaker, - IconPhoneCallback, - IconPhoneDisabled, - IconPhoneEnabled, - IconPhoneForwarded, - IconPhoneInTalk, - IconPhoneIphone, - IconPhoneLocked, - IconPhoneMissed, - IconPhonePaused, - IconPhonelink, - IconPhonelinkErase, - IconPhonelinkLock, - IconPhonelinkOff, - IconPhonelinkRing, - IconPhonelinkSetup, - IconPhoto, - IconPhotoAlbum, - IconPhotoCamera, - IconPhotoFilter, - IconPhotoLibrary, - IconPhotoSizeSelectActual, - IconPhotoSizeSelectLarge, - IconPhotoSizeSelectSmall, - IconPictureAsPdf, - IconPictureInPicture, - IconPictureInPictureAlt, - IconPieChart, - IconPinDrop, - IconPlace, - IconPlagiarism, - IconPlayArrow, - IconPlayCircleFilled, - IconPlayCircleOutline, - IconPlayForWork, - IconPlaylistAdd, - IconPlaylistAddCheck, - IconPlaylistPlay, - IconPlumbing, - IconPlusOne, - IconPointOfSale, - IconPolicy, - IconPoll, - IconPolymer, - IconPool, - IconPortableWifiOff, - IconPortrait, - IconPostAdd, - IconPower, - IconPowerInput, - IconPowerOff, - IconPowerSettingsNew, - IconPregnantWoman, - IconPresentToAll, - IconPreview, - IconPrint, - IconPrintDisabled, - IconPriorityHigh, - IconPrivacyTip, - IconPsychology, - IconPublic, - IconPublicOff, - IconPublish, - IconPublishedWithChanges, - IconPushPin, - IconQrCode, - IconQrCode2, - IconQrCodeScanner, - IconQueryBuilder, - IconQuestionAnswer, - IconQueue, - IconQueueMusic, - IconQueuePlayNext, - IconQuickreply, - IconRadio, - IconRadioButtonChecked, - IconRadioButtonUnchecked, - IconRateReview, - IconReadMore, - IconReceipt, - IconReceiptLong, - IconRecentActors, - IconRecordVoiceOver, - IconRedeem, - IconRedo, - IconReduceCapacity, - IconRefresh, - IconRemove, - IconRemoveCircle, - IconRemoveCircleOutline, - IconRemoveFromQueue, - IconRemoveRedEye, - IconRemoveShoppingCart, - IconReorder, - IconRepeat, - IconRepeatOne, - IconReplay, - IconReplay10, - IconReplay30, - IconReplay5, - IconReply, - IconReplyAll, - IconReport, - IconReportOff, - IconReportProblem, - IconRequestPage, - IconRequestQuote, - IconRestaurant, - IconRestaurantMenu, - IconRestore, - IconRestoreFromTrash, - IconRestorePage, - IconRiceBowl, - IconRingVolume, - IconRoofing, - IconRoom, - IconRoomPreferences, - IconRoomService, - IconRotate90DegreesCcw, - IconRotateLeft, - IconRotateRight, - IconRoundedCorner, - IconRouter, - IconRowing, - IconRssFeed, - IconRule, - IconRuleFolder, - IconRunCircle, - IconRvHookup, - IconSanitizer, - IconSatellite, - IconSave, - IconSaveAlt, - IconScanner, - IconScatterPlot, - IconSchedule, - IconSchool, - IconScience, - IconScore, - IconScreenLockLandscape, - IconScreenLockPortrait, - IconScreenLockRotation, - IconScreenRotation, - IconScreenShare, - IconSdCard, - IconSdStorage, - IconSearch, - IconSearchOff, - IconSecurity, - IconSelectAll, - IconSelfImprovement, - IconSend, - IconSensorDoor, - IconSensorWindow, - IconSentimentDissatisfied, - IconSentimentSatisfied, - IconSentimentSatisfiedAlt, - IconSentimentVeryDissatisfied, - IconSentimentVerySatisfied, - IconSetMeal, - IconSettings, - IconSettingsApplications, - IconSettingsBackupRestore, - IconSettingsBluetooth, - IconSettingsBrightness, - IconSettingsCell, - IconSettingsEthernet, - IconSettingsInputAntenna, - IconSettingsInputComponent, - IconSettingsInputComposite, - IconSettingsInputHdmi, - IconSettingsInputSvideo, - IconSettingsOverscan, - IconSettingsPhone, - IconSettingsPower, - IconSettingsRemote, - IconSettingsSystemDaydream, - IconSettingsVoice, - IconShare, - IconShop, - IconShopTwo, - IconShoppingBag, - IconShoppingBasket, - IconShoppingCart, - IconShortText, - IconShowChart, - IconShuffle, - IconShutterSpeed, - IconSick, - IconSignalCellular4Bar, - IconSignalCellularAlt, - IconSignalCellularConnectedNoInternet4Bar, - IconSignalCellularNoSim, - IconSignalCellularNull, - IconSignalCellularOff, - IconSignalWifi4Bar, - IconSignalWifi4BarLock, - IconSignalWifiOff, - IconSimCard, - IconSingleBed, - IconSkipNext, - IconSkipPrevious, - IconSlideshow, - IconSlowMotionVideo, - IconSmartButton, - IconSmartphone, - IconSmokeFree, - IconSmokingRooms, - IconSms, - IconSmsFailed, - IconSnippetFolder, - IconSnooze, - IconSoap, - IconSort, - IconSortByAlpha, - IconSource, - IconSouth, - IconSouthEast, - IconSouthWest, - IconSpa, - IconSpaceBar, - IconSpeaker, - IconSpeakerGroup, - IconSpeakerNotes, - IconSpeakerNotesOff, - IconSpeakerPhone, - IconSpeed, - IconSpellcheck, - IconSports, - IconSportsBar, - IconSportsBaseball, - IconSportsBasketball, - IconSportsCricket, - IconSportsEsports, - IconSportsFootball, - IconSportsGolf, - IconSportsHandball, - IconSportsHockey, - IconSportsKabaddi, - IconSportsMma, - IconSportsMotorsports, - IconSportsRugby, - IconSportsSoccer, - IconSportsTennis, - IconSportsVolleyball, - IconSquareFoot, - IconStackedLineChart, - IconStairs, - IconStar, - IconStarBorder, - IconStarHalf, - IconStarOutline, - IconStarRate, - IconStars, - IconStayCurrentLandscape, - IconStayCurrentPortrait, - IconStayPrimaryLandscape, - IconStayPrimaryPortrait, - IconStickyNote2, - IconStop, - IconStopCircle, - IconStopScreenShare, - IconStorage, - IconStore, - IconStoreMallDirectory, - IconStorefront, - IconStraighten, - IconStreetview, - IconStrikethroughS, - IconStroller, - IconStyle, - IconSubdirectoryArrowLeft, - IconSubdirectoryArrowRight, - IconSubject, - IconSubscript, - IconSubscriptions, - IconSubtitles, - IconSubtitlesOff, - IconSubway, - IconSuperscript, - IconSupervisedUserCircle, - IconSupervisorAccount, - IconSupport, - IconSupportAgent, - IconSurroundSound, - IconSwapCalls, - IconSwapHoriz, - IconSwapHorizontalCircle, - IconSwapVert, - IconSwapVerticalCircle, - IconSwitchCamera, - IconSwitchLeft, - IconSwitchRight, - IconSwitchVideo, - IconSync, - IconSyncAlt, - IconSyncDisabled, - IconSyncProblem, - IconSystemUpdate, - IconSystemUpdateAlt, - IconTab, - IconTabUnselected, - IconTableChart, - IconTableRows, - IconTableView, - IconTablet, - IconTabletAndroid, - IconTabletMac, - IconTagFaces, - IconTapAndPlay, - IconTapas, - IconTerrain, - IconTextFields, - IconTextFormat, - IconTextRotateUp, - IconTextRotateVertical, - IconTextRotationAngledown, - IconTextRotationAngleup, - IconTextRotationDown, - IconTextRotationNone, - IconTextSnippet, - IconTextsms, - IconTexture, - IconTheaters, - IconThumbDown, - IconThumbDownAlt, - IconThumbUp, - IconThumbUpAlt, - IconThumbsUpDown, - IconTimeToLeave, - IconTimelapse, - IconTimeline, - IconTimer, - IconTimer10, - IconTimer3, - IconTimerOff, - IconTitle, - IconToc, - IconToday, - IconToggleOff, - IconToggleOn, - IconToll, - IconTonality, - IconTopic, - IconTouchApp, - IconTour, - IconToys, - IconTrackChanges, - IconTraffic, - IconTrain, - IconTram, - IconTransferWithinAStation, - IconTransform, - IconTransitEnterexit, - IconTranslate, - IconTrendingDown, - IconTrendingFlat, - IconTrendingUp, - IconTripOrigin, - IconTty, - IconTune, - IconTurnedIn, - IconTurnedInNot, - IconTv, - IconTvOff, - IconTwoWheeler, - IconUmbrella, - IconUnarchive, - IconUndo, - IconUnfoldLess, - IconUnfoldMore, - IconUnpublished, - IconUnsubscribe, - IconUpdate, - IconUpdateDisabled, - IconUpgrade, - IconUsb, - IconVerified, - IconVerifiedUser, - IconVerticalAlignBottom, - IconVerticalAlignCenter, - IconVerticalAlignTop, - IconVerticalDistribute, - IconVerticalSplit, - IconVibration, - IconVideoCall, - IconVideoLabel, - IconVideoLibrary, - IconVideoSettings, - IconVideocam, - IconVideocamOff, - IconVideogameAsset, - IconViewAgenda, - IconViewArray, - IconViewCarousel, - IconViewColumn, - IconViewComfy, - IconViewCompact, - IconViewDay, - IconViewHeadline, - IconViewList, - IconViewModule, - IconViewQuilt, - IconViewSidebar, - IconViewStream, - IconViewWeek, - IconVignette, - IconVisibility, - IconVisibilityOff, - IconVoiceChat, - IconVoiceOverOff, - IconVoicemail, - IconVolumeDown, - IconVolumeMute, - IconVolumeOff, - IconVolumeUp, - IconVpnKey, - IconVpnLock, - IconWallpaper, - IconWarning, - IconWash, - IconWatch, - IconWatchLater, - IconWaterDamage, - IconWaves, - IconWbAuto, - IconWbCloudy, - IconWbIncandescent, - IconWbIridescent, - IconWbSunny, - IconWc, - IconWeb, - IconWebAsset, - IconWeekend, - IconWest, - IconWhatshot, - IconWheelchairPickup, - IconWhereToVote, - IconWidgets, - IconWifi, - IconWifiCalling, - IconWifiLock, - IconWifiOff, - IconWifiProtectedSetup, - IconWifiTethering, - IconWineBar, - IconWork, - IconWorkOff, - IconWorkOutline, - IconWrapText, - IconWrongLocation, - IconWysiwyg, - IconYoutubeSearchedFor, - IconZoomIn, - IconZoomOut, - IconZoomOutMap, -} From bdf9c59fa1669b889e107a1a6159a2e89586549b Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Mon, 5 Oct 2020 17:16:44 +0200 Subject: [PATCH 16/20] Add new icon generated icon components --- src/components/Icon360.tsx | 10 +++++ src/components/Icon3dRotation.tsx | 10 +++++ src/components/Icon4k.tsx | 10 +++++ src/components/Icon5g.tsx | 22 ++++++++++ src/components/Icon6FtApart.tsx | 15 +++++++ src/components/IconAcUnit.tsx | 10 +++++ src/components/IconAccessAlarm.tsx | 10 +++++ src/components/IconAccessAlarms.tsx | 10 +++++ src/components/IconAccessTime.tsx | 11 +++++ src/components/IconAccessibility.tsx | 10 +++++ src/components/IconAccessibilityNew.tsx | 10 +++++ src/components/IconAccessible.tsx | 11 +++++ src/components/IconAccessibleForward.tsx | 11 +++++ src/components/IconAccountBalance.tsx | 25 +++++++++++ src/components/IconAccountBalanceWallet.tsx | 12 +++++ src/components/IconAccountBox.tsx | 10 +++++ src/components/IconAccountCircle.tsx | 10 +++++ src/components/IconAccountTree.tsx | 10 +++++ src/components/IconAdUnits.tsx | 10 +++++ src/components/IconAdb.tsx | 10 +++++ src/components/IconAdd.tsx | 10 +++++ src/components/IconAddAPhoto.tsx | 15 +++++++ src/components/IconAddAlarm.tsx | 10 +++++ src/components/IconAddAlert.tsx | 10 +++++ src/components/IconAddBox.tsx | 10 +++++ src/components/IconAddBusiness.tsx | 23 ++++++++++ src/components/IconAddCircle.tsx | 10 +++++ src/components/IconAddCircleOutline.tsx | 10 +++++ src/components/IconAddComment.tsx | 10 +++++ src/components/IconAddIcCall.tsx | 10 +++++ src/components/IconAddLocation.tsx | 10 +++++ src/components/IconAddLocationAlt.tsx | 10 +++++ src/components/IconAddPhotoAlternate.tsx | 10 +++++ src/components/IconAddRoad.tsx | 26 +++++++++++ src/components/IconAddShoppingCart.tsx | 10 +++++ src/components/IconAddTask.tsx | 15 +++++++ src/components/IconAddToHomeScreen.tsx | 11 +++++ src/components/IconAddToPhotos.tsx | 10 +++++ src/components/IconAddToQueue.tsx | 10 +++++ src/components/IconAddchart.tsx | 10 +++++ src/components/IconAdjust.tsx | 10 +++++ src/components/IconAdminPanelSettings.tsx | 22 ++++++++++ src/components/IconAgriculture.tsx | 24 ++++++++++ src/components/IconAirlineSeatFlat.tsx | 10 +++++ src/components/IconAirlineSeatFlatAngled.tsx | 12 +++++ .../IconAirlineSeatIndividualSuite.tsx | 12 +++++ .../IconAirlineSeatLegroomExtra.tsx | 12 +++++ .../IconAirlineSeatLegroomNormal.tsx | 12 +++++ .../IconAirlineSeatLegroomReduced.tsx | 12 +++++ .../IconAirlineSeatReclineExtra.tsx | 12 +++++ .../IconAirlineSeatReclineNormal.tsx | 12 +++++ src/components/IconAirplanemodeActive.tsx | 17 +++++++ src/components/IconAirplanemodeInactive.tsx | 19 ++++++++ src/components/IconAirplay.tsx | 18 ++++++++ src/components/IconAirportShuttle.tsx | 10 +++++ src/components/IconAlarm.tsx | 10 +++++ src/components/IconAlarmAdd.tsx | 10 +++++ src/components/IconAlarmOff.tsx | 10 +++++ src/components/IconAlarmOn.tsx | 10 +++++ src/components/IconAlbum.tsx | 10 +++++ src/components/IconAlignHorizontalCenter.tsx | 17 +++++++ src/components/IconAlignHorizontalLeft.tsx | 17 +++++++ src/components/IconAlignHorizontalRight.tsx | 17 +++++++ src/components/IconAlignVerticalBottom.tsx | 17 +++++++ src/components/IconAlignVerticalCenter.tsx | 17 +++++++ src/components/IconAlignVerticalTop.tsx | 15 +++++++ src/components/IconAllInbox.tsx | 10 +++++ src/components/IconAllInclusive.tsx | 10 +++++ src/components/IconAllOut.tsx | 10 +++++ src/components/IconAltRoute.tsx | 17 +++++++ src/components/IconAlternateEmail.tsx | 10 +++++ src/components/IconAmpStories.tsx | 24 ++++++++++ src/components/IconAnalytics.tsx | 10 +++++ src/components/IconAnchor.tsx | 17 +++++++ src/components/IconAndroid.tsx | 17 +++++++ src/components/IconAnnouncement.tsx | 10 +++++ src/components/IconApartment.tsx | 19 ++++++++ src/components/IconApi.tsx | 17 +++++++ src/components/IconAppBlocking.tsx | 10 +++++ src/components/IconAppSettingsAlt.tsx | 10 +++++ src/components/IconApps.tsx | 10 +++++ src/components/IconArchitecture.tsx | 23 ++++++++++ src/components/IconArchive.tsx | 10 +++++ src/components/IconArrowBack.tsx | 10 +++++ src/components/IconArrowBackIos.tsx | 10 +++++ src/components/IconArrowCircleDown.tsx | 17 +++++++ src/components/IconArrowCircleUp.tsx | 17 +++++++ src/components/IconArrowDownward.tsx | 10 +++++ src/components/IconArrowDropDown.tsx | 10 +++++ src/components/IconArrowDropDownCircle.tsx | 12 +++++ src/components/IconArrowDropUp.tsx | 10 +++++ src/components/IconArrowForward.tsx | 10 +++++ src/components/IconArrowForwardIos.tsx | 10 +++++ src/components/IconArrowLeft.tsx | 10 +++++ src/components/IconArrowRight.tsx | 10 +++++ src/components/IconArrowRightAlt.tsx | 10 +++++ src/components/IconArrowUpward.tsx | 10 +++++ src/components/IconArtTrack.tsx | 10 +++++ src/components/IconArticle.tsx | 10 +++++ src/components/IconAspectRatio.tsx | 10 +++++ src/components/IconAssessment.tsx | 10 +++++ src/components/IconAssignment.tsx | 10 +++++ src/components/IconAssignmentInd.tsx | 10 +++++ src/components/IconAssignmentLate.tsx | 10 +++++ src/components/IconAssignmentReturn.tsx | 10 +++++ src/components/IconAssignmentReturned.tsx | 10 +++++ src/components/IconAssignmentTurnedIn.tsx | 10 +++++ src/components/IconAssistant.tsx | 10 +++++ src/components/IconAssistantPhoto.tsx | 10 +++++ src/components/IconAtm.tsx | 10 +++++ src/components/IconAttachEmail.tsx | 22 ++++++++++ src/components/IconAttachFile.tsx | 10 +++++ src/components/IconAttachMoney.tsx | 10 +++++ src/components/IconAttachment.tsx | 10 +++++ src/components/IconAudiotrack.tsx | 10 +++++ src/components/IconAutoDelete.tsx | 23 ++++++++++ src/components/IconAutorenew.tsx | 10 +++++ src/components/IconAvTimer.tsx | 10 +++++ src/components/IconBabyChangingStation.tsx | 19 ++++++++ src/components/IconBackpack.tsx | 21 +++++++++ src/components/IconBackspace.tsx | 10 +++++ src/components/IconBackup.tsx | 10 +++++ src/components/IconBackupTable.tsx | 22 ++++++++++ src/components/IconBallot.tsx | 18 ++++++++ src/components/IconBarChart.tsx | 10 +++++ src/components/IconBatchPrediction.tsx | 17 +++++++ src/components/IconBathtub.tsx | 26 +++++++++++ src/components/IconBatteryAlert.tsx | 10 +++++ src/components/IconBatteryChargingFull.tsx | 12 +++++ src/components/IconBatteryFull.tsx | 10 +++++ src/components/IconBatteryStd.tsx | 10 +++++ src/components/IconBatteryUnknown.tsx | 10 +++++ src/components/IconBeachAccess.tsx | 10 +++++ src/components/IconBedtime.tsx | 21 +++++++++ src/components/IconBeenhere.tsx | 10 +++++ src/components/IconBento.tsx | 17 +++++++ src/components/IconBikeScooter.tsx | 23 ++++++++++ src/components/IconBiotech.tsx | 23 ++++++++++ src/components/IconBlock.tsx | 10 +++++ src/components/IconBluetooth.tsx | 10 +++++ src/components/IconBluetoothAudio.tsx | 10 +++++ src/components/IconBluetoothConnected.tsx | 10 +++++ src/components/IconBluetoothDisabled.tsx | 10 +++++ src/components/IconBluetoothSearching.tsx | 10 +++++ src/components/IconBlurCircular.tsx | 10 +++++ src/components/IconBlurLinear.tsx | 10 +++++ src/components/IconBlurOff.tsx | 10 +++++ src/components/IconBlurOn.tsx | 10 +++++ src/components/IconBook.tsx | 10 +++++ src/components/IconBookOnline.tsx | 17 +++++++ src/components/IconBookmark.tsx | 10 +++++ src/components/IconBookmarkBorder.tsx | 10 +++++ src/components/IconBookmarks.tsx | 10 +++++ src/components/IconBorderAll.tsx | 10 +++++ src/components/IconBorderBottom.tsx | 10 +++++ src/components/IconBorderClear.tsx | 10 +++++ src/components/IconBorderHorizontal.tsx | 10 +++++ src/components/IconBorderInner.tsx | 10 +++++ src/components/IconBorderLeft.tsx | 10 +++++ src/components/IconBorderOuter.tsx | 10 +++++ src/components/IconBorderRight.tsx | 10 +++++ src/components/IconBorderStyle.tsx | 10 +++++ src/components/IconBorderTop.tsx | 10 +++++ src/components/IconBorderVertical.tsx | 10 +++++ src/components/IconBrandingWatermark.tsx | 10 +++++ src/components/IconBrightness1.tsx | 10 +++++ src/components/IconBrightness2.tsx | 10 +++++ src/components/IconBrightness3.tsx | 10 +++++ src/components/IconBrightness4.tsx | 10 +++++ src/components/IconBrightness5.tsx | 10 +++++ src/components/IconBrightness6.tsx | 10 +++++ src/components/IconBrightness7.tsx | 10 +++++ src/components/IconBrightnessAuto.tsx | 10 +++++ src/components/IconBrightnessHigh.tsx | 10 +++++ src/components/IconBrightnessLow.tsx | 10 +++++ src/components/IconBrightnessMedium.tsx | 10 +++++ src/components/IconBrokenImage.tsx | 14 ++++++ src/components/IconBrowserNotSupported.tsx | 24 ++++++++++ src/components/IconBrush.tsx | 10 +++++ src/components/IconBubbleChart.tsx | 12 +++++ src/components/IconBugReport.tsx | 10 +++++ src/components/IconBuild.tsx | 10 +++++ src/components/IconBuildCircle.tsx | 24 ++++++++++ src/components/IconBurstMode.tsx | 10 +++++ src/components/IconBusiness.tsx | 10 +++++ src/components/IconBusinessCenter.tsx | 10 +++++ src/components/IconCached.tsx | 10 +++++ src/components/IconCake.tsx | 10 +++++ src/components/IconCalculate.tsx | 19 ++++++++ src/components/IconCalendarToday.tsx | 10 +++++ src/components/IconCalendarViewDay.tsx | 10 +++++ src/components/IconCall.tsx | 10 +++++ src/components/IconCallEnd.tsx | 10 +++++ src/components/IconCallMade.tsx | 10 +++++ src/components/IconCallMerge.tsx | 10 +++++ src/components/IconCallMissed.tsx | 10 +++++ src/components/IconCallMissedOutgoing.tsx | 23 ++++++++++ src/components/IconCallReceived.tsx | 10 +++++ src/components/IconCallSplit.tsx | 10 +++++ src/components/IconCallToAction.tsx | 10 +++++ src/components/IconCamera.tsx | 10 +++++ src/components/IconCameraAlt.tsx | 11 +++++ src/components/IconCameraEnhance.tsx | 11 +++++ src/components/IconCameraFront.tsx | 10 +++++ src/components/IconCameraRear.tsx | 10 +++++ src/components/IconCameraRoll.tsx | 10 +++++ src/components/IconCampaign.tsx | 10 +++++ src/components/IconCancel.tsx | 10 +++++ src/components/IconCancelPresentation.tsx | 15 +++++++ src/components/IconCancelScheduleSend.tsx | 22 ++++++++++ src/components/IconCardGiftcard.tsx | 10 +++++ src/components/IconCardMembership.tsx | 10 +++++ src/components/IconCardTravel.tsx | 10 +++++ src/components/IconCarpenter.tsx | 15 +++++++ src/components/IconCasino.tsx | 13 ++++++ src/components/IconCast.tsx | 11 +++++ src/components/IconCastConnected.tsx | 11 +++++ src/components/IconCastForEducation.tsx | 17 +++++++ src/components/IconCategory.tsx | 12 +++++ src/components/IconCenterFocusStrong.tsx | 10 +++++ src/components/IconCenterFocusWeak.tsx | 10 +++++ src/components/IconChangeHistory.tsx | 10 +++++ src/components/IconChargingStation.tsx | 17 +++++++ src/components/IconChat.tsx | 10 +++++ src/components/IconChatBubble.tsx | 10 +++++ src/components/IconChatBubbleOutline.tsx | 10 +++++ src/components/IconCheck.tsx | 10 +++++ src/components/IconCheckBox.tsx | 10 +++++ src/components/IconCheckBoxOutlineBlank.tsx | 12 +++++ src/components/IconCheckCircle.tsx | 10 +++++ src/components/IconCheckCircleOutline.tsx | 10 +++++ src/components/IconCheckroom.tsx | 17 +++++++ src/components/IconChevronLeft.tsx | 10 +++++ src/components/IconChevronRight.tsx | 10 +++++ src/components/IconChildCare.tsx | 12 +++++ src/components/IconChildFriendly.tsx | 10 +++++ src/components/IconChromeReaderMode.tsx | 10 +++++ src/components/IconClass.tsx | 10 +++++ src/components/IconCleanHands.tsx | 15 +++++++ src/components/IconCleaningServices.tsx | 19 ++++++++ src/components/IconClear.tsx | 10 +++++ src/components/IconClearAll.tsx | 10 +++++ src/components/IconClose.tsx | 10 +++++ src/components/IconCloseFullscreen.tsx | 15 +++++++ src/components/IconClosedCaption.tsx | 10 +++++ src/components/IconClosedCaptionDisabled.tsx | 17 +++++++ src/components/IconCloud.tsx | 10 +++++ src/components/IconCloudCircle.tsx | 10 +++++ src/components/IconCloudDone.tsx | 10 +++++ src/components/IconCloudDownload.tsx | 10 +++++ src/components/IconCloudOff.tsx | 10 +++++ src/components/IconCloudQueue.tsx | 10 +++++ src/components/IconCloudUpload.tsx | 10 +++++ src/components/IconCode.tsx | 10 +++++ src/components/IconCollections.tsx | 10 +++++ src/components/IconCollectionsBookmark.tsx | 14 ++++++ src/components/IconColorLens.tsx | 10 +++++ src/components/IconColorize.tsx | 10 +++++ src/components/IconComment.tsx | 10 +++++ src/components/IconCommentBank.tsx | 19 ++++++++ src/components/IconCommute.tsx | 10 +++++ src/components/IconCompare.tsx | 10 +++++ src/components/IconCompareArrows.tsx | 23 ++++++++++ src/components/IconCompassCalibration.tsx | 11 +++++ src/components/IconComputer.tsx | 10 +++++ src/components/IconConfirmationNumber.tsx | 23 ++++++++++ src/components/IconConnectWithoutContact.tsx | 17 +++++++ src/components/IconConstruction.tsx | 28 ++++++++++++ src/components/IconContactMail.tsx | 11 +++++ src/components/IconContactPage.tsx | 15 +++++++ src/components/IconContactPhone.tsx | 10 +++++ src/components/IconContactSupport.tsx | 10 +++++ src/components/IconContactless.tsx | 19 ++++++++ src/components/IconContacts.tsx | 10 +++++ src/components/IconContentCopy.tsx | 10 +++++ src/components/IconContentCut.tsx | 13 ++++++ src/components/IconContentPaste.tsx | 10 +++++ src/components/IconControlCamera.tsx | 11 +++++ src/components/IconControlPoint.tsx | 10 +++++ src/components/IconControlPointDuplicate.tsx | 12 +++++ src/components/IconCopyright.tsx | 23 ++++++++++ src/components/IconCoronavirus.tsx | 15 +++++++ src/components/IconCorporateFare.tsx | 15 +++++++ src/components/IconCountertops.tsx | 15 +++++++ src/components/IconCreate.tsx | 10 +++++ src/components/IconCreateNewFolder.tsx | 10 +++++ src/components/IconCreditCard.tsx | 10 +++++ src/components/IconCrop.tsx | 10 +++++ src/components/IconCrop169.tsx | 10 +++++ src/components/IconCrop32.tsx | 10 +++++ src/components/IconCrop54.tsx | 10 +++++ src/components/IconCrop75.tsx | 10 +++++ src/components/IconCropDin.tsx | 10 +++++ src/components/IconCropFree.tsx | 10 +++++ src/components/IconCropLandscape.tsx | 10 +++++ src/components/IconCropOriginal.tsx | 10 +++++ src/components/IconCropPortrait.tsx | 10 +++++ src/components/IconCropRotate.tsx | 10 +++++ src/components/IconCropSquare.tsx | 10 +++++ src/components/IconDashboard.tsx | 10 +++++ src/components/IconDataUsage.tsx | 10 +++++ src/components/IconDateRange.tsx | 10 +++++ src/components/IconDeck.tsx | 23 ++++++++++ src/components/IconDehaze.tsx | 10 +++++ src/components/IconDelete.tsx | 10 +++++ src/components/IconDeleteForever.tsx | 11 +++++ src/components/IconDeleteOutline.tsx | 10 +++++ src/components/IconDeleteSweep.tsx | 10 +++++ src/components/IconDepartureBoard.tsx | 10 +++++ src/components/IconDescription.tsx | 10 +++++ src/components/IconDesignServices.tsx | 23 ++++++++++ src/components/IconDesktopAccessDisabled.tsx | 12 +++++ src/components/IconDesktopMac.tsx | 10 +++++ src/components/IconDesktopWindows.tsx | 10 +++++ src/components/IconDetails.tsx | 15 +++++++ src/components/IconDeveloperBoard.tsx | 10 +++++ src/components/IconDeveloperMode.tsx | 10 +++++ src/components/IconDeviceHub.tsx | 11 +++++ src/components/IconDeviceUnknown.tsx | 10 +++++ src/components/IconDevices.tsx | 10 +++++ src/components/IconDevicesOther.tsx | 10 +++++ src/components/IconDialerSip.tsx | 10 +++++ src/components/IconDialpad.tsx | 10 +++++ src/components/IconDirections.tsx | 10 +++++ src/components/IconDirectionsBike.tsx | 10 +++++ src/components/IconDirectionsBoat.tsx | 10 +++++ src/components/IconDirectionsBus.tsx | 10 +++++ src/components/IconDirectionsCar.tsx | 10 +++++ src/components/IconDirectionsOff.tsx | 29 ++++++++++++ src/components/IconDirectionsRailway.tsx | 10 +++++ src/components/IconDirectionsRun.tsx | 10 +++++ src/components/IconDirectionsSubway.tsx | 10 +++++ src/components/IconDirectionsTransit.tsx | 10 +++++ src/components/IconDirectionsWalk.tsx | 10 +++++ src/components/IconDisabledByDefault.tsx | 15 +++++++ src/components/IconDiscFull.tsx | 10 +++++ src/components/IconDns.tsx | 10 +++++ src/components/IconDoNotStep.tsx | 17 +++++++ src/components/IconDoNotTouch.tsx | 17 +++++++ src/components/IconDock.tsx | 10 +++++ src/components/IconDomain.tsx | 17 +++++++ src/components/IconDomainDisabled.tsx | 10 +++++ src/components/IconDomainVerification.tsx | 22 ++++++++++ src/components/IconDone.tsx | 10 +++++ src/components/IconDoneAll.tsx | 10 +++++ src/components/IconDoneOutline.tsx | 10 +++++ src/components/IconDonutLarge.tsx | 23 ++++++++++ src/components/IconDonutSmall.tsx | 10 +++++ src/components/IconDoubleArrow.tsx | 22 ++++++++++ src/components/IconDrafts.tsx | 10 +++++ src/components/IconDragHandle.tsx | 23 ++++++++++ src/components/IconDragIndicator.tsx | 10 +++++ src/components/IconDriveEta.tsx | 10 +++++ src/components/IconDry.tsx | 17 +++++++ src/components/IconDuo.tsx | 10 +++++ src/components/IconDvr.tsx | 10 +++++ src/components/IconDynamicFeed.tsx | 32 ++++++++++++++ src/components/IconDynamicForm.tsx | 17 +++++++ src/components/IconEast.tsx | 15 +++++++ src/components/IconEco.tsx | 21 +++++++++ src/components/IconEdit.tsx | 10 +++++ src/components/IconEditAttributes.tsx | 10 +++++ src/components/IconEditLocation.tsx | 10 +++++ src/components/IconEditRoad.tsx | 26 +++++++++++ src/components/IconEject.tsx | 10 +++++ src/components/IconElderly.tsx | 15 +++++++ src/components/IconElectricBike.tsx | 22 ++++++++++ src/components/IconElectricCar.tsx | 20 +++++++++ src/components/IconElectricMoped.tsx | 24 ++++++++++ src/components/IconElectricScooter.tsx | 23 ++++++++++ src/components/IconElectricalServices.tsx | 24 ++++++++++ src/components/IconElevator.tsx | 17 +++++++ src/components/IconEmail.tsx | 10 +++++ src/components/IconEmojiEmotions.tsx | 20 +++++++++ src/components/IconEmojiEvents.tsx | 15 +++++++ src/components/IconEmojiFlags.tsx | 20 +++++++++ src/components/IconEmojiFoodBeverage.tsx | 23 ++++++++++ src/components/IconEmojiNature.tsx | 23 ++++++++++ src/components/IconEmojiObjects.tsx | 20 +++++++++ src/components/IconEmojiPeople.tsx | 23 ++++++++++ src/components/IconEmojiSymbols.tsx | 34 ++++++++++++++ src/components/IconEmojiTransportation.tsx | 29 ++++++++++++ src/components/IconEngineering.tsx | 25 +++++++++++ src/components/IconEnhancedEncryption.tsx | 11 +++++ src/components/IconEqualizer.tsx | 10 +++++ src/components/IconError.tsx | 10 +++++ src/components/IconErrorOutline.tsx | 10 +++++ src/components/IconEscalator.tsx | 19 ++++++++ src/components/IconEscalatorWarning.tsx | 17 +++++++ src/components/IconEuro.tsx | 20 +++++++++ src/components/IconEuroSymbol.tsx | 10 +++++ src/components/IconEvStation.tsx | 10 +++++ src/components/IconEvent.tsx | 10 +++++ src/components/IconEventAvailable.tsx | 10 +++++ src/components/IconEventBusy.tsx | 10 +++++ src/components/IconEventNote.tsx | 10 +++++ src/components/IconEventSeat.tsx | 23 ++++++++++ src/components/IconExitToApp.tsx | 10 +++++ src/components/IconExpandLess.tsx | 10 +++++ src/components/IconExpandMore.tsx | 10 +++++ src/components/IconExplicit.tsx | 10 +++++ src/components/IconExplore.tsx | 10 +++++ src/components/IconExploreOff.tsx | 10 +++++ src/components/IconExposure.tsx | 10 +++++ src/components/IconExposureNeg1.tsx | 10 +++++ src/components/IconExposureNeg2.tsx | 10 +++++ src/components/IconExposurePlus1.tsx | 10 +++++ src/components/IconExposurePlus2.tsx | 10 +++++ src/components/IconExposureZero.tsx | 13 ++++++ src/components/IconExtension.tsx | 10 +++++ src/components/IconFace.tsx | 10 +++++ src/components/IconFacebook.tsx | 15 +++++++ src/components/IconFactCheck.tsx | 24 ++++++++++ src/components/IconFamilyRestroom.tsx | 17 +++++++ src/components/IconFastForward.tsx | 10 +++++ src/components/IconFastRewind.tsx | 10 +++++ src/components/IconFastfood.tsx | 10 +++++ src/components/IconFavorite.tsx | 10 +++++ src/components/IconFavoriteBorder.tsx | 10 +++++ src/components/IconFeaturedPlayList.tsx | 10 +++++ src/components/IconFeaturedVideo.tsx | 10 +++++ src/components/IconFeedback.tsx | 10 +++++ src/components/IconFence.tsx | 19 ++++++++ src/components/IconFiberDvr.tsx | 23 ++++++++++ src/components/IconFiberManualRecord.tsx | 10 +++++ src/components/IconFiberNew.tsx | 23 ++++++++++ src/components/IconFiberPin.tsx | 10 +++++ src/components/IconFiberSmartRecord.tsx | 13 ++++++ src/components/IconFileCopy.tsx | 10 +++++ src/components/IconFilter.tsx | 10 +++++ src/components/IconFilter1.tsx | 10 +++++ src/components/IconFilter2.tsx | 10 +++++ src/components/IconFilter3.tsx | 10 +++++ src/components/IconFilter4.tsx | 10 +++++ src/components/IconFilter5.tsx | 10 +++++ src/components/IconFilter6.tsx | 10 +++++ src/components/IconFilter7.tsx | 10 +++++ src/components/IconFilter8.tsx | 10 +++++ src/components/IconFilter9.tsx | 10 +++++ src/components/IconFilter9Plus.tsx | 10 +++++ src/components/IconFilterAlt.tsx | 18 ++++++++ src/components/IconFilterBAndW.tsx | 10 +++++ src/components/IconFilterCenterFocus.tsx | 10 +++++ src/components/IconFilterDrama.tsx | 10 +++++ src/components/IconFilterFrames.tsx | 10 +++++ src/components/IconFilterHdr.tsx | 10 +++++ src/components/IconFilterList.tsx | 10 +++++ src/components/IconFilterNone.tsx | 10 +++++ src/components/IconFilterTiltShift.tsx | 10 +++++ src/components/IconFilterVintage.tsx | 10 +++++ src/components/IconFindInPage.tsx | 10 +++++ src/components/IconFindReplace.tsx | 10 +++++ src/components/IconFingerprint.tsx | 10 +++++ src/components/IconFireExtinguisher.tsx | 17 +++++++ src/components/IconFireplace.tsx | 19 ++++++++ src/components/IconFirstPage.tsx | 10 +++++ src/components/IconFitnessCenter.tsx | 10 +++++ src/components/IconFlag.tsx | 10 +++++ src/components/IconFlaky.tsx | 22 ++++++++++ src/components/IconFlare.tsx | 10 +++++ src/components/IconFlashAuto.tsx | 10 +++++ src/components/IconFlashOff.tsx | 10 +++++ src/components/IconFlashOn.tsx | 10 +++++ src/components/IconFlight.tsx | 10 +++++ src/components/IconFlightLand.tsx | 23 ++++++++++ src/components/IconFlightTakeoff.tsx | 23 ++++++++++ src/components/IconFlip.tsx | 10 +++++ src/components/IconFlipCameraAndroid.tsx | 23 ++++++++++ src/components/IconFlipCameraIos.tsx | 21 +++++++++ src/components/IconFlipToBack.tsx | 10 +++++ src/components/IconFlipToFront.tsx | 10 +++++ src/components/IconFolder.tsx | 10 +++++ src/components/IconFolderOpen.tsx | 10 +++++ src/components/IconFolderShared.tsx | 10 +++++ src/components/IconFolderSpecial.tsx | 10 +++++ src/components/IconFollowTheSigns.tsx | 15 +++++++ src/components/IconFontDownload.tsx | 15 +++++++ src/components/IconFoodBank.tsx | 15 +++++++ src/components/IconFormatAlignCenter.tsx | 10 +++++ src/components/IconFormatAlignJustify.tsx | 10 +++++ src/components/IconFormatAlignLeft.tsx | 10 +++++ src/components/IconFormatAlignRight.tsx | 10 +++++ src/components/IconFormatBold.tsx | 10 +++++ src/components/IconFormatClear.tsx | 10 +++++ src/components/IconFormatColorReset.tsx | 10 +++++ src/components/IconFormatIndentDecrease.tsx | 12 +++++ src/components/IconFormatIndentIncrease.tsx | 12 +++++ src/components/IconFormatItalic.tsx | 10 +++++ src/components/IconFormatLineSpacing.tsx | 10 +++++ src/components/IconFormatListBulleted.tsx | 10 +++++ src/components/IconFormatListNumbered.tsx | 10 +++++ src/components/IconFormatListNumberedRtl.tsx | 12 +++++ src/components/IconFormatPaint.tsx | 10 +++++ src/components/IconFormatQuote.tsx | 10 +++++ src/components/IconFormatShapes.tsx | 10 +++++ src/components/IconFormatSize.tsx | 10 +++++ src/components/IconFormatStrikethrough.tsx | 12 +++++ .../IconFormatTextdirectionLToR.tsx | 12 +++++ .../IconFormatTextdirectionRToL.tsx | 12 +++++ src/components/IconFormatUnderlined.tsx | 10 +++++ src/components/IconForum.tsx | 10 +++++ src/components/IconForward.tsx | 10 +++++ src/components/IconForward10.tsx | 23 ++++++++++ src/components/IconForward30.tsx | 23 ++++++++++ src/components/IconForward5.tsx | 22 ++++++++++ src/components/IconForwardToInbox.tsx | 17 +++++++ src/components/IconFoundation.tsx | 15 +++++++ src/components/IconFreeBreakfast.tsx | 10 +++++ src/components/IconFullscreen.tsx | 10 +++++ src/components/IconFullscreenExit.tsx | 10 +++++ src/components/IconFunctions.tsx | 10 +++++ src/components/IconGTranslate.tsx | 10 +++++ src/components/IconGamepad.tsx | 10 +++++ src/components/IconGames.tsx | 10 +++++ src/components/IconGavel.tsx | 42 ++++++++++++++++++ src/components/IconGesture.tsx | 10 +++++ src/components/IconGetApp.tsx | 10 +++++ src/components/IconGif.tsx | 23 ++++++++++ src/components/IconGolfCourse.tsx | 11 +++++ src/components/IconGpsFixed.tsx | 10 +++++ src/components/IconGpsNotFixed.tsx | 10 +++++ src/components/IconGpsOff.tsx | 10 +++++ src/components/IconGrade.tsx | 10 +++++ src/components/IconGradient.tsx | 10 +++++ src/components/IconGrading.tsx | 19 ++++++++ src/components/IconGrain.tsx | 10 +++++ src/components/IconGraphicEq.tsx | 10 +++++ src/components/IconGrass.tsx | 15 +++++++ src/components/IconGridOff.tsx | 10 +++++ src/components/IconGridOn.tsx | 10 +++++ src/components/IconGroup.tsx | 10 +++++ src/components/IconGroupAdd.tsx | 10 +++++ src/components/IconGroupWork.tsx | 10 +++++ src/components/IconGroups.tsx | 17 +++++++ src/components/IconHandyman.tsx | 26 +++++++++++ src/components/IconHd.tsx | 10 +++++ src/components/IconHdrOff.tsx | 9 ++++ src/components/IconHdrOn.tsx | 10 +++++ src/components/IconHdrStrong.tsx | 10 +++++ src/components/IconHdrWeak.tsx | 10 +++++ src/components/IconHeadset.tsx | 10 +++++ src/components/IconHeadsetMic.tsx | 10 +++++ src/components/IconHealing.tsx | 10 +++++ src/components/IconHearing.tsx | 10 +++++ src/components/IconHearingDisabled.tsx | 17 +++++++ src/components/IconHeight.tsx | 20 +++++++++ src/components/IconHelp.tsx | 10 +++++ src/components/IconHelpCenter.tsx | 17 +++++++ src/components/IconHelpOutline.tsx | 10 +++++ src/components/IconHighQuality.tsx | 10 +++++ src/components/IconHighlight.tsx | 23 ++++++++++ src/components/IconHighlightAlt.tsx | 10 +++++ src/components/IconHighlightOff.tsx | 10 +++++ src/components/IconHistory.tsx | 10 +++++ src/components/IconHistoryEdu.tsx | 21 +++++++++ src/components/IconHistoryToggleOff.tsx | 17 +++++++ src/components/IconHome.tsx | 10 +++++ src/components/IconHomeRepairService.tsx | 22 ++++++++++ src/components/IconHomeWork.tsx | 12 +++++ src/components/IconHorizontalDistribute.tsx | 17 +++++++ src/components/IconHorizontalRule.tsx | 17 +++++++ src/components/IconHorizontalSplit.tsx | 10 +++++ src/components/IconHotTub.tsx | 11 +++++ src/components/IconHotel.tsx | 10 +++++ src/components/IconHourglassBottom.tsx | 19 ++++++++ src/components/IconHourglassDisabled.tsx | 22 ++++++++++ src/components/IconHourglassEmpty.tsx | 10 +++++ src/components/IconHourglassFull.tsx | 10 +++++ src/components/IconHourglassTop.tsx | 19 ++++++++ src/components/IconHouse.tsx | 19 ++++++++ src/components/IconHouseSiding.tsx | 15 +++++++ src/components/IconHowToReg.tsx | 13 ++++++ src/components/IconHowToVote.tsx | 10 +++++ src/components/IconHttp.tsx | 10 +++++ src/components/IconHttps.tsx | 10 +++++ src/components/IconHvac.tsx | 35 +++++++++++++++ src/components/IconImage.tsx | 10 +++++ src/components/IconImageAspectRatio.tsx | 10 +++++ src/components/IconImageNotSupported.tsx | 17 +++++++ src/components/IconImageSearch.tsx | 11 +++++ src/components/IconImportContacts.tsx | 23 ++++++++++ src/components/IconImportExport.tsx | 10 +++++ src/components/IconImportantDevices.tsx | 10 +++++ src/components/IconInbox.tsx | 10 +++++ src/components/IconIndeterminateCheckBox.tsx | 25 +++++++++++ src/components/IconInfo.tsx | 10 +++++ src/components/IconInput.tsx | 10 +++++ src/components/IconInsertChart.tsx | 10 +++++ src/components/IconInsertChartOutlined.tsx | 12 +++++ src/components/IconInsertComment.tsx | 10 +++++ src/components/IconInsertDriveFile.tsx | 10 +++++ src/components/IconInsertEmoticon.tsx | 10 +++++ src/components/IconInsertInvitation.tsx | 10 +++++ src/components/IconInsertLink.tsx | 10 +++++ src/components/IconInsertPhoto.tsx | 10 +++++ src/components/IconInsights.tsx | 23 ++++++++++ .../IconIntegrationInstructions.tsx | 22 ++++++++++ src/components/IconInvertColors.tsx | 10 +++++ src/components/IconInvertColorsOff.tsx | 10 +++++ src/components/IconIso.tsx | 10 +++++ src/components/IconKeyboard.tsx | 10 +++++ src/components/IconKeyboardArrowDown.tsx | 10 +++++ src/components/IconKeyboardArrowLeft.tsx | 10 +++++ src/components/IconKeyboardArrowRight.tsx | 10 +++++ src/components/IconKeyboardArrowUp.tsx | 10 +++++ src/components/IconKeyboardBackspace.tsx | 10 +++++ src/components/IconKeyboardCapslock.tsx | 10 +++++ src/components/IconKeyboardHide.tsx | 10 +++++ src/components/IconKeyboardReturn.tsx | 10 +++++ src/components/IconKeyboardTab.tsx | 10 +++++ src/components/IconKeyboardVoice.tsx | 10 +++++ src/components/IconKingBed.tsx | 23 ++++++++++ src/components/IconKitchen.tsx | 10 +++++ src/components/IconLabel.tsx | 10 +++++ src/components/IconLabelImportant.tsx | 10 +++++ src/components/IconLabelOff.tsx | 10 +++++ src/components/IconLandscape.tsx | 10 +++++ src/components/IconLanguage.tsx | 10 +++++ src/components/IconLaptop.tsx | 23 ++++++++++ src/components/IconLaptopChromebook.tsx | 10 +++++ src/components/IconLaptopMac.tsx | 10 +++++ src/components/IconLaptopWindows.tsx | 10 +++++ src/components/IconLastPage.tsx | 10 +++++ src/components/IconLaunch.tsx | 10 +++++ src/components/IconLayers.tsx | 10 +++++ src/components/IconLayersClear.tsx | 10 +++++ src/components/IconLeaderboard.tsx | 17 +++++++ src/components/IconLeakAdd.tsx | 10 +++++ src/components/IconLeakRemove.tsx | 10 +++++ src/components/IconLegendToggle.tsx | 17 +++++++ src/components/IconLens.tsx | 10 +++++ src/components/IconLibraryAdd.tsx | 10 +++++ src/components/IconLibraryAddCheck.tsx | 10 +++++ src/components/IconLibraryBooks.tsx | 10 +++++ src/components/IconLibraryMusic.tsx | 10 +++++ src/components/IconLineStyle.tsx | 23 ++++++++++ src/components/IconLineWeight.tsx | 23 ++++++++++ src/components/IconLinearScale.tsx | 23 ++++++++++ src/components/IconLink.tsx | 10 +++++ src/components/IconLinkOff.tsx | 11 +++++ src/components/IconLinkedCamera.tsx | 13 ++++++ src/components/IconList.tsx | 10 +++++ src/components/IconListAlt.tsx | 10 +++++ src/components/IconLiveHelp.tsx | 10 +++++ src/components/IconLiveTv.tsx | 10 +++++ src/components/IconLocalActivity.tsx | 10 +++++ src/components/IconLocalAirport.tsx | 17 +++++++ src/components/IconLocalAtm.tsx | 10 +++++ src/components/IconLocalBar.tsx | 10 +++++ src/components/IconLocalCafe.tsx | 10 +++++ src/components/IconLocalCarWash.tsx | 10 +++++ src/components/IconLocalConvenienceStore.tsx | 12 +++++ src/components/IconLocalDining.tsx | 10 +++++ src/components/IconLocalDrink.tsx | 10 +++++ src/components/IconLocalFireDepartment.tsx | 21 +++++++++ src/components/IconLocalFlorist.tsx | 10 +++++ src/components/IconLocalGasStation.tsx | 10 +++++ src/components/IconLocalGroceryStore.tsx | 10 +++++ src/components/IconLocalHospital.tsx | 10 +++++ src/components/IconLocalHotel.tsx | 10 +++++ src/components/IconLocalLaundryService.tsx | 12 +++++ src/components/IconLocalLibrary.tsx | 10 +++++ src/components/IconLocalMall.tsx | 10 +++++ src/components/IconLocalMovies.tsx | 10 +++++ src/components/IconLocalOffer.tsx | 10 +++++ src/components/IconLocalParking.tsx | 10 +++++ src/components/IconLocalPharmacy.tsx | 10 +++++ src/components/IconLocalPhone.tsx | 10 +++++ src/components/IconLocalPizza.tsx | 10 +++++ src/components/IconLocalPlay.tsx | 10 +++++ src/components/IconLocalPolice.tsx | 15 +++++++ src/components/IconLocalPostOffice.tsx | 10 +++++ src/components/IconLocalPrintshop.tsx | 10 +++++ src/components/IconLocalSee.tsx | 11 +++++ src/components/IconLocalShipping.tsx | 10 +++++ src/components/IconLocalTaxi.tsx | 10 +++++ src/components/IconLocationCity.tsx | 10 +++++ src/components/IconLocationDisabled.tsx | 10 +++++ src/components/IconLocationOff.tsx | 10 +++++ src/components/IconLocationOn.tsx | 10 +++++ src/components/IconLocationSearching.tsx | 10 +++++ src/components/IconLock.tsx | 10 +++++ src/components/IconLockOpen.tsx | 10 +++++ src/components/IconLogin.tsx | 19 ++++++++ src/components/IconLooks.tsx | 10 +++++ src/components/IconLooks3.tsx | 10 +++++ src/components/IconLooks4.tsx | 10 +++++ src/components/IconLooks5.tsx | 10 +++++ src/components/IconLooks6.tsx | 10 +++++ src/components/IconLooksOne.tsx | 10 +++++ src/components/IconLooksTwo.tsx | 10 +++++ src/components/IconLoop.tsx | 10 +++++ src/components/IconLoupe.tsx | 10 +++++ src/components/IconLowPriority.tsx | 10 +++++ src/components/IconLoyalty.tsx | 10 +++++ src/components/IconLuggage.tsx | 17 +++++++ src/components/IconMail.tsx | 10 +++++ src/components/IconMailOutline.tsx | 10 +++++ src/components/IconMap.tsx | 10 +++++ src/components/IconMapsUgc.tsx | 18 ++++++++ src/components/IconMarkChatRead.tsx | 17 +++++++ src/components/IconMarkChatUnread.tsx | 17 +++++++ src/components/IconMarkEmailRead.tsx | 17 +++++++ src/components/IconMarkEmailUnread.tsx | 17 +++++++ src/components/IconMarkunread.tsx | 10 +++++ src/components/IconMarkunreadMailbox.tsx | 10 +++++ src/components/IconMasks.tsx | 15 +++++++ src/components/IconMaximize.tsx | 10 +++++ src/components/IconMediation.tsx | 10 +++++ src/components/IconMedicalServices.tsx | 21 +++++++++ src/components/IconMeetingRoom.tsx | 9 ++++ src/components/IconMemory.tsx | 10 +++++ src/components/IconMenu.tsx | 10 +++++ src/components/IconMenuBook.tsx | 27 ++++++++++++ src/components/IconMenuOpen.tsx | 10 +++++ src/components/IconMergeType.tsx | 10 +++++ src/components/IconMessage.tsx | 10 +++++ src/components/IconMic.tsx | 10 +++++ src/components/IconMicNone.tsx | 10 +++++ src/components/IconMicOff.tsx | 10 +++++ src/components/IconMicrowave.tsx | 15 +++++++ src/components/IconMilitaryTech.tsx | 19 ++++++++ src/components/IconMinimize.tsx | 10 +++++ src/components/IconMiscellaneousServices.tsx | 24 ++++++++++ src/components/IconMissedVideoCall.tsx | 10 +++++ src/components/IconMms.tsx | 10 +++++ src/components/IconMobileFriendly.tsx | 10 +++++ src/components/IconMobileOff.tsx | 10 +++++ src/components/IconMobileScreenShare.tsx | 10 +++++ src/components/IconModeComment.tsx | 10 +++++ src/components/IconModelTraining.tsx | 17 +++++++ src/components/IconMonetizationOn.tsx | 10 +++++ src/components/IconMoney.tsx | 12 +++++ src/components/IconMoneyOff.tsx | 10 +++++ src/components/IconMonochromePhotos.tsx | 11 +++++ src/components/IconMood.tsx | 10 +++++ src/components/IconMoodBad.tsx | 10 +++++ src/components/IconMoped.tsx | 23 ++++++++++ src/components/IconMore.tsx | 10 +++++ src/components/IconMoreHoriz.tsx | 10 +++++ src/components/IconMoreTime.tsx | 23 ++++++++++ src/components/IconMoreVert.tsx | 10 +++++ src/components/IconMotionPhotosOn.tsx | 17 +++++++ src/components/IconMotionPhotosPause.tsx | 15 +++++++ src/components/IconMotionPhotosPaused.tsx | 17 +++++++ src/components/IconMouse.tsx | 10 +++++ src/components/IconMoveToInbox.tsx | 10 +++++ src/components/IconMovie.tsx | 10 +++++ src/components/IconMovieCreation.tsx | 10 +++++ src/components/IconMovieFilter.tsx | 10 +++++ src/components/IconMultilineChart.tsx | 10 +++++ src/components/IconMultipleStop.tsx | 17 +++++++ src/components/IconMuseum.tsx | 19 ++++++++ src/components/IconMusicNote.tsx | 10 +++++ src/components/IconMusicOff.tsx | 10 +++++ src/components/IconMusicVideo.tsx | 10 +++++ src/components/IconMyLocation.tsx | 10 +++++ src/components/IconNat.tsx | 22 ++++++++++ src/components/IconNature.tsx | 10 +++++ src/components/IconNaturePeople.tsx | 10 +++++ src/components/IconNavigateBefore.tsx | 10 +++++ src/components/IconNavigateNext.tsx | 10 +++++ src/components/IconNavigation.tsx | 10 +++++ src/components/IconNearMe.tsx | 10 +++++ src/components/IconNearMeDisabled.tsx | 15 +++++++ src/components/IconNetworkCheck.tsx | 10 +++++ src/components/IconNetworkLocked.tsx | 10 +++++ src/components/IconNewReleases.tsx | 10 +++++ src/components/IconNextPlan.tsx | 19 ++++++++ src/components/IconNextWeek.tsx | 23 ++++++++++ src/components/IconNfc.tsx | 11 +++++ src/components/IconNightShelter.tsx | 15 +++++++ src/components/IconNightsStay.tsx | 24 ++++++++++ src/components/IconNoBackpack.tsx | 15 +++++++ src/components/IconNoCell.tsx | 17 +++++++ src/components/IconNoDrinks.tsx | 17 +++++++ src/components/IconNoEncryption.tsx | 13 ++++++ src/components/IconNoFlash.tsx | 17 +++++++ src/components/IconNoFood.tsx | 17 +++++++ src/components/IconNoLuggage.tsx | 15 +++++++ src/components/IconNoMeals.tsx | 15 +++++++ src/components/IconNoMeetingRoom.tsx | 9 ++++ src/components/IconNoPhotography.tsx | 17 +++++++ src/components/IconNoSim.tsx | 10 +++++ src/components/IconNoStroller.tsx | 17 +++++++ src/components/IconNoTransfer.tsx | 15 +++++++ src/components/IconNorth.tsx | 15 +++++++ src/components/IconNorthEast.tsx | 15 +++++++ src/components/IconNorthWest.tsx | 15 +++++++ src/components/IconNotAccessible.tsx | 17 +++++++ src/components/IconNotInterested.tsx | 10 +++++ src/components/IconNotListedLocation.tsx | 10 +++++ src/components/IconNotStarted.tsx | 17 +++++++ src/components/IconNote.tsx | 10 +++++ src/components/IconNoteAdd.tsx | 10 +++++ src/components/IconNotes.tsx | 10 +++++ src/components/IconNotificationImportant.tsx | 12 +++++ src/components/IconNotifications.tsx | 9 ++++ src/components/IconNotificationsActive.tsx | 12 +++++ src/components/IconNotificationsNone.tsx | 10 +++++ src/components/IconNotificationsOff.tsx | 10 +++++ src/components/IconNotificationsPaused.tsx | 12 +++++ src/components/IconOfflineBolt.tsx | 10 +++++ src/components/IconOfflinePin.tsx | 23 ++++++++++ src/components/IconOndemandVideo.tsx | 10 +++++ src/components/IconOnlinePrediction.tsx | 17 +++++++ src/components/IconOpacity.tsx | 10 +++++ src/components/IconOpenInBrowser.tsx | 10 +++++ src/components/IconOpenInFull.tsx | 15 +++++++ src/components/IconOpenInNew.tsx | 10 +++++ src/components/IconOpenWith.tsx | 10 +++++ src/components/IconOutbond.tsx | 15 +++++++ src/components/IconOutdoorGrill.tsx | 24 ++++++++++ src/components/IconOutlet.tsx | 15 +++++++ src/components/IconOutlinedFlag.tsx | 10 +++++ src/components/IconPages.tsx | 10 +++++ src/components/IconPageview.tsx | 10 +++++ src/components/IconPalette.tsx | 10 +++++ src/components/IconPanTool.tsx | 23 ++++++++++ src/components/IconPanorama.tsx | 10 +++++ src/components/IconPanoramaFishEye.tsx | 10 +++++ src/components/IconPanoramaHorizontal.tsx | 10 +++++ src/components/IconPanoramaVertical.tsx | 10 +++++ src/components/IconPanoramaWideAngle.tsx | 10 +++++ src/components/IconPartyMode.tsx | 10 +++++ src/components/IconPause.tsx | 10 +++++ src/components/IconPauseCircleFilled.tsx | 10 +++++ src/components/IconPauseCircleOutline.tsx | 10 +++++ src/components/IconPausePresentation.tsx | 15 +++++++ src/components/IconPayment.tsx | 10 +++++ src/components/IconPayments.tsx | 10 +++++ src/components/IconPedalBike.tsx | 19 ++++++++ src/components/IconPending.tsx | 19 ++++++++ src/components/IconPendingActions.tsx | 17 +++++++ src/components/IconPeople.tsx | 10 +++++ src/components/IconPeopleAlt.tsx | 42 ++++++++++++++++++ src/components/IconPeopleOutline.tsx | 10 +++++ src/components/IconPermCameraMic.tsx | 10 +++++ src/components/IconPermContactCalendar.tsx | 12 +++++ src/components/IconPermDataSetting.tsx | 10 +++++ src/components/IconPermDeviceInformation.tsx | 12 +++++ src/components/IconPermIdentity.tsx | 10 +++++ src/components/IconPermMedia.tsx | 10 +++++ src/components/IconPermPhoneMsg.tsx | 10 +++++ src/components/IconPermScanWifi.tsx | 10 +++++ src/components/IconPerson.tsx | 10 +++++ src/components/IconPersonAdd.tsx | 10 +++++ src/components/IconPersonAddAlt1.tsx | 19 ++++++++ src/components/IconPersonAddDisabled.tsx | 11 +++++ src/components/IconPersonOutline.tsx | 10 +++++ src/components/IconPersonPin.tsx | 10 +++++ src/components/IconPersonPinCircle.tsx | 23 ++++++++++ src/components/IconPersonRemove.tsx | 19 ++++++++ src/components/IconPersonRemoveAlt1.tsx | 19 ++++++++ src/components/IconPersonSearch.tsx | 23 ++++++++++ src/components/IconPersonalVideo.tsx | 10 +++++ src/components/IconPestControl.tsx | 21 +++++++++ src/components/IconPestControlRodent.tsx | 19 ++++++++ src/components/IconPets.tsx | 14 ++++++ src/components/IconPhone.tsx | 10 +++++ src/components/IconPhoneAndroid.tsx | 10 +++++ src/components/IconPhoneBluetoothSpeaker.tsx | 12 +++++ src/components/IconPhoneCallback.tsx | 10 +++++ src/components/IconPhoneDisabled.tsx | 10 +++++ src/components/IconPhoneEnabled.tsx | 10 +++++ src/components/IconPhoneForwarded.tsx | 10 +++++ src/components/IconPhoneInTalk.tsx | 10 +++++ src/components/IconPhoneIphone.tsx | 10 +++++ src/components/IconPhoneLocked.tsx | 10 +++++ src/components/IconPhoneMissed.tsx | 10 +++++ src/components/IconPhonePaused.tsx | 10 +++++ src/components/IconPhonelink.tsx | 10 +++++ src/components/IconPhonelinkErase.tsx | 10 +++++ src/components/IconPhonelinkLock.tsx | 10 +++++ src/components/IconPhonelinkOff.tsx | 10 +++++ src/components/IconPhonelinkRing.tsx | 10 +++++ src/components/IconPhonelinkSetup.tsx | 10 +++++ src/components/IconPhoto.tsx | 10 +++++ src/components/IconPhotoAlbum.tsx | 10 +++++ src/components/IconPhotoCamera.tsx | 11 +++++ src/components/IconPhotoFilter.tsx | 10 +++++ src/components/IconPhotoLibrary.tsx | 10 +++++ src/components/IconPhotoSizeSelectActual.tsx | 12 +++++ src/components/IconPhotoSizeSelectLarge.tsx | 12 +++++ src/components/IconPhotoSizeSelectSmall.tsx | 12 +++++ src/components/IconPictureAsPdf.tsx | 10 +++++ src/components/IconPictureInPicture.tsx | 10 +++++ src/components/IconPictureInPictureAlt.tsx | 12 +++++ src/components/IconPieChart.tsx | 10 +++++ src/components/IconPinDrop.tsx | 10 +++++ src/components/IconPlace.tsx | 10 +++++ src/components/IconPlagiarism.tsx | 22 ++++++++++ src/components/IconPlayArrow.tsx | 10 +++++ src/components/IconPlayCircleFilled.tsx | 10 +++++ src/components/IconPlayCircleOutline.tsx | 10 +++++ src/components/IconPlayForWork.tsx | 10 +++++ src/components/IconPlaylistAdd.tsx | 10 +++++ src/components/IconPlaylistAddCheck.tsx | 23 ++++++++++ src/components/IconPlaylistPlay.tsx | 10 +++++ src/components/IconPlumbing.tsx | 23 ++++++++++ src/components/IconPlusOne.tsx | 10 +++++ src/components/IconPointOfSale.tsx | 17 +++++++ src/components/IconPolicy.tsx | 23 ++++++++++ src/components/IconPoll.tsx | 10 +++++ src/components/IconPolymer.tsx | 10 +++++ src/components/IconPool.tsx | 11 +++++ src/components/IconPortableWifiOff.tsx | 10 +++++ src/components/IconPortrait.tsx | 10 +++++ src/components/IconPostAdd.tsx | 26 +++++++++++ src/components/IconPower.tsx | 10 +++++ src/components/IconPowerInput.tsx | 10 +++++ src/components/IconPowerOff.tsx | 10 +++++ src/components/IconPowerSettingsNew.tsx | 10 +++++ src/components/IconPregnantWoman.tsx | 23 ++++++++++ src/components/IconPresentToAll.tsx | 10 +++++ src/components/IconPreview.tsx | 17 +++++++ src/components/IconPrint.tsx | 10 +++++ src/components/IconPrintDisabled.tsx | 10 +++++ src/components/IconPriorityHigh.tsx | 11 +++++ src/components/IconPrivacyTip.tsx | 17 +++++++ src/components/IconPsychology.tsx | 22 ++++++++++ src/components/IconPublic.tsx | 10 +++++ src/components/IconPublicOff.tsx | 17 +++++++ src/components/IconPublish.tsx | 10 +++++ src/components/IconPublishedWithChanges.tsx | 17 +++++++ src/components/IconPushPin.tsx | 22 ++++++++++ src/components/IconQrCode.tsx | 31 +++++++++++++ src/components/IconQrCode2.tsx | 17 +++++++ src/components/IconQrCodeScanner.tsx | 15 +++++++ src/components/IconQueryBuilder.tsx | 11 +++++ src/components/IconQuestionAnswer.tsx | 10 +++++ src/components/IconQueue.tsx | 10 +++++ src/components/IconQueueMusic.tsx | 10 +++++ src/components/IconQueuePlayNext.tsx | 23 ++++++++++ src/components/IconQuickreply.tsx | 26 +++++++++++ src/components/IconRadio.tsx | 10 +++++ src/components/IconRadioButtonChecked.tsx | 10 +++++ src/components/IconRadioButtonUnchecked.tsx | 12 +++++ src/components/IconRateReview.tsx | 13 ++++++ src/components/IconReadMore.tsx | 24 ++++++++++ src/components/IconReceipt.tsx | 10 +++++ src/components/IconReceiptLong.tsx | 21 +++++++++ src/components/IconRecentActors.tsx | 10 +++++ src/components/IconRecordVoiceOver.tsx | 11 +++++ src/components/IconRedeem.tsx | 10 +++++ src/components/IconRedo.tsx | 10 +++++ src/components/IconReduceCapacity.tsx | 15 +++++++ src/components/IconRefresh.tsx | 10 +++++ src/components/IconRemove.tsx | 10 +++++ src/components/IconRemoveCircle.tsx | 10 +++++ src/components/IconRemoveCircleOutline.tsx | 12 +++++ src/components/IconRemoveFromQueue.tsx | 23 ++++++++++ src/components/IconRemoveRedEye.tsx | 10 +++++ src/components/IconRemoveShoppingCart.tsx | 10 +++++ src/components/IconReorder.tsx | 10 +++++ src/components/IconRepeat.tsx | 10 +++++ src/components/IconRepeatOne.tsx | 10 +++++ src/components/IconReplay.tsx | 10 +++++ src/components/IconReplay10.tsx | 25 +++++++++++ src/components/IconReplay30.tsx | 25 +++++++++++ src/components/IconReplay5.tsx | 24 ++++++++++ src/components/IconReply.tsx | 10 +++++ src/components/IconReplyAll.tsx | 10 +++++ src/components/IconReport.tsx | 10 +++++ src/components/IconReportOff.tsx | 10 +++++ src/components/IconReportProblem.tsx | 10 +++++ src/components/IconRequestPage.tsx | 15 +++++++ src/components/IconRequestQuote.tsx | 17 +++++++ src/components/IconRestaurant.tsx | 10 +++++ src/components/IconRestaurantMenu.tsx | 10 +++++ src/components/IconRestore.tsx | 10 +++++ src/components/IconRestoreFromTrash.tsx | 10 +++++ src/components/IconRestorePage.tsx | 10 +++++ src/components/IconRiceBowl.tsx | 15 +++++++ src/components/IconRingVolume.tsx | 10 +++++ src/components/IconRoofing.tsx | 15 +++++++ src/components/IconRoom.tsx | 10 +++++ src/components/IconRoomPreferences.tsx | 17 +++++++ src/components/IconRoomService.tsx | 10 +++++ src/components/IconRotate90DegreesCcw.tsx | 10 +++++ src/components/IconRotateLeft.tsx | 10 +++++ src/components/IconRotateRight.tsx | 10 +++++ src/components/IconRoundedCorner.tsx | 23 ++++++++++ src/components/IconRouter.tsx | 10 +++++ src/components/IconRowing.tsx | 23 ++++++++++ src/components/IconRssFeed.tsx | 11 +++++ src/components/IconRule.tsx | 17 +++++++ src/components/IconRuleFolder.tsx | 17 +++++++ src/components/IconRunCircle.tsx | 19 ++++++++ src/components/IconRvHookup.tsx | 11 +++++ src/components/IconSanitizer.tsx | 15 +++++++ src/components/IconSatellite.tsx | 10 +++++ src/components/IconSave.tsx | 10 +++++ src/components/IconSaveAlt.tsx | 10 +++++ src/components/IconScanner.tsx | 10 +++++ src/components/IconScatterPlot.tsx | 14 ++++++ src/components/IconSchedule.tsx | 11 +++++ src/components/IconSchool.tsx | 10 +++++ src/components/IconScience.tsx | 19 ++++++++ src/components/IconScore.tsx | 10 +++++ src/components/IconScreenLockLandscape.tsx | 12 +++++ src/components/IconScreenLockPortrait.tsx | 10 +++++ src/components/IconScreenLockRotation.tsx | 10 +++++ src/components/IconScreenRotation.tsx | 10 +++++ src/components/IconScreenShare.tsx | 10 +++++ src/components/IconSdCard.tsx | 10 +++++ src/components/IconSdStorage.tsx | 10 +++++ src/components/IconSearch.tsx | 10 +++++ src/components/IconSearchOff.tsx | 22 ++++++++++ src/components/IconSecurity.tsx | 10 +++++ src/components/IconSelectAll.tsx | 10 +++++ src/components/IconSelfImprovement.tsx | 22 ++++++++++ src/components/IconSend.tsx | 10 +++++ src/components/IconSensorDoor.tsx | 17 +++++++ src/components/IconSensorWindow.tsx | 17 +++++++ src/components/IconSentimentDissatisfied.tsx | 14 ++++++ src/components/IconSentimentSatisfied.tsx | 12 +++++ src/components/IconSentimentSatisfiedAlt.tsx | 17 +++++++ .../IconSentimentVeryDissatisfied.tsx | 14 ++++++ src/components/IconSentimentVerySatisfied.tsx | 14 ++++++ src/components/IconSetMeal.tsx | 15 +++++++ src/components/IconSettings.tsx | 17 +++++++ src/components/IconSettingsApplications.tsx | 12 +++++ src/components/IconSettingsBackupRestore.tsx | 12 +++++ src/components/IconSettingsBluetooth.tsx | 10 +++++ src/components/IconSettingsBrightness.tsx | 10 +++++ src/components/IconSettingsCell.tsx | 10 +++++ src/components/IconSettingsEthernet.tsx | 10 +++++ src/components/IconSettingsInputAntenna.tsx | 12 +++++ src/components/IconSettingsInputComponent.tsx | 12 +++++ src/components/IconSettingsInputComposite.tsx | 12 +++++ src/components/IconSettingsInputHdmi.tsx | 10 +++++ src/components/IconSettingsInputSvideo.tsx | 12 +++++ src/components/IconSettingsOverscan.tsx | 10 +++++ src/components/IconSettingsPhone.tsx | 10 +++++ src/components/IconSettingsPower.tsx | 10 +++++ src/components/IconSettingsRemote.tsx | 10 +++++ src/components/IconSettingsSystemDaydream.tsx | 12 +++++ src/components/IconSettingsVoice.tsx | 10 +++++ src/components/IconShare.tsx | 10 +++++ src/components/IconShop.tsx | 10 +++++ src/components/IconShopTwo.tsx | 10 +++++ src/components/IconShoppingBag.tsx | 17 +++++++ src/components/IconShoppingBasket.tsx | 10 +++++ src/components/IconShoppingCart.tsx | 10 +++++ src/components/IconShortText.tsx | 23 ++++++++++ src/components/IconShowChart.tsx | 10 +++++ src/components/IconShuffle.tsx | 10 +++++ src/components/IconShutterSpeed.tsx | 10 +++++ src/components/IconSick.tsx | 15 +++++++ src/components/IconSignalCellular4Bar.tsx | 10 +++++ src/components/IconSignalCellularAlt.tsx | 10 +++++ ...nSignalCellularConnectedNoInternet4Bar.tsx | 12 +++++ src/components/IconSignalCellularNoSim.tsx | 16 +++++++ src/components/IconSignalCellularNull.tsx | 10 +++++ src/components/IconSignalCellularOff.tsx | 10 +++++ src/components/IconSignalWifi4Bar.tsx | 10 +++++ src/components/IconSignalWifi4BarLock.tsx | 10 +++++ src/components/IconSignalWifiOff.tsx | 10 +++++ src/components/IconSimCard.tsx | 10 +++++ src/components/IconSingleBed.tsx | 19 ++++++++ src/components/IconSkipNext.tsx | 10 +++++ src/components/IconSkipPrevious.tsx | 10 +++++ src/components/IconSlideshow.tsx | 10 +++++ src/components/IconSlowMotionVideo.tsx | 10 +++++ src/components/IconSmartButton.tsx | 17 +++++++ src/components/IconSmartphone.tsx | 10 +++++ src/components/IconSmokeFree.tsx | 10 +++++ src/components/IconSmokingRooms.tsx | 10 +++++ src/components/IconSms.tsx | 10 +++++ src/components/IconSmsFailed.tsx | 10 +++++ src/components/IconSnippetFolder.tsx | 17 +++++++ src/components/IconSnooze.tsx | 10 +++++ src/components/IconSoap.tsx | 17 +++++++ src/components/IconSort.tsx | 10 +++++ src/components/IconSortByAlpha.tsx | 13 ++++++ src/components/IconSource.tsx | 17 +++++++ src/components/IconSouth.tsx | 15 +++++++ src/components/IconSouthEast.tsx | 15 +++++++ src/components/IconSouthWest.tsx | 15 +++++++ src/components/IconSpa.tsx | 14 ++++++ src/components/IconSpaceBar.tsx | 10 +++++ src/components/IconSpeaker.tsx | 10 +++++ src/components/IconSpeakerGroup.tsx | 12 +++++ src/components/IconSpeakerNotes.tsx | 10 +++++ src/components/IconSpeakerNotesOff.tsx | 10 +++++ src/components/IconSpeakerPhone.tsx | 10 +++++ src/components/IconSpeed.tsx | 10 +++++ src/components/IconSpellcheck.tsx | 10 +++++ src/components/IconSports.tsx | 26 +++++++++++ src/components/IconSportsBar.tsx | 15 +++++++ src/components/IconSportsBaseball.tsx | 29 ++++++++++++ src/components/IconSportsBasketball.tsx | 44 +++++++++++++++++++ src/components/IconSportsCricket.tsx | 31 +++++++++++++ src/components/IconSportsEsports.tsx | 21 +++++++++ src/components/IconSportsFootball.tsx | 23 ++++++++++ src/components/IconSportsGolf.tsx | 25 +++++++++++ src/components/IconSportsHandball.tsx | 23 ++++++++++ src/components/IconSportsHockey.tsx | 26 +++++++++++ src/components/IconSportsKabaddi.tsx | 24 ++++++++++ src/components/IconSportsMma.tsx | 22 ++++++++++ src/components/IconSportsMotorsports.tsx | 22 ++++++++++ src/components/IconSportsRugby.tsx | 21 +++++++++ src/components/IconSportsSoccer.tsx | 21 +++++++++ src/components/IconSportsTennis.tsx | 20 +++++++++ src/components/IconSportsVolleyball.tsx | 26 +++++++++++ src/components/IconSquareFoot.tsx | 21 +++++++++ src/components/IconStackedLineChart.tsx | 15 +++++++ src/components/IconStairs.tsx | 21 +++++++++ src/components/IconStar.tsx | 11 +++++ src/components/IconStarBorder.tsx | 10 +++++ src/components/IconStarHalf.tsx | 23 ++++++++++ src/components/IconStarOutline.tsx | 9 ++++ src/components/IconStarRate.tsx | 17 +++++++ src/components/IconStars.tsx | 10 +++++ src/components/IconStayCurrentLandscape.tsx | 12 +++++ src/components/IconStayCurrentPortrait.tsx | 12 +++++ src/components/IconStayPrimaryLandscape.tsx | 12 +++++ src/components/IconStayPrimaryPortrait.tsx | 12 +++++ src/components/IconStickyNote2.tsx | 15 +++++++ src/components/IconStop.tsx | 10 +++++ src/components/IconStopCircle.tsx | 22 ++++++++++ src/components/IconStopScreenShare.tsx | 10 +++++ src/components/IconStorage.tsx | 10 +++++ src/components/IconStore.tsx | 10 +++++ src/components/IconStoreMallDirectory.tsx | 10 +++++ src/components/IconStorefront.tsx | 22 ++++++++++ src/components/IconStraighten.tsx | 10 +++++ src/components/IconStreetview.tsx | 12 +++++ src/components/IconStrikethroughS.tsx | 23 ++++++++++ src/components/IconStroller.tsx | 22 ++++++++++ src/components/IconStyle.tsx | 10 +++++ src/components/IconSubdirectoryArrowLeft.tsx | 12 +++++ src/components/IconSubdirectoryArrowRight.tsx | 12 +++++ src/components/IconSubject.tsx | 10 +++++ src/components/IconSubscript.tsx | 17 +++++++ src/components/IconSubscriptions.tsx | 10 +++++ src/components/IconSubtitles.tsx | 10 +++++ src/components/IconSubtitlesOff.tsx | 22 ++++++++++ src/components/IconSubway.tsx | 15 +++++++ src/components/IconSuperscript.tsx | 17 +++++++ src/components/IconSupervisedUserCircle.tsx | 12 +++++ src/components/IconSupervisorAccount.tsx | 10 +++++ src/components/IconSupport.tsx | 19 ++++++++ src/components/IconSupportAgent.tsx | 24 ++++++++++ src/components/IconSurroundSound.tsx | 10 +++++ src/components/IconSwapCalls.tsx | 10 +++++ src/components/IconSwapHoriz.tsx | 10 +++++ src/components/IconSwapHorizontalCircle.tsx | 12 +++++ src/components/IconSwapVert.tsx | 10 +++++ src/components/IconSwapVerticalCircle.tsx | 10 +++++ src/components/IconSwitchCamera.tsx | 10 +++++ src/components/IconSwitchLeft.tsx | 15 +++++++ src/components/IconSwitchRight.tsx | 20 +++++++++ src/components/IconSwitchVideo.tsx | 10 +++++ src/components/IconSync.tsx | 10 +++++ src/components/IconSyncAlt.tsx | 23 ++++++++++ src/components/IconSyncDisabled.tsx | 10 +++++ src/components/IconSyncProblem.tsx | 10 +++++ src/components/IconSystemUpdate.tsx | 10 +++++ src/components/IconSystemUpdateAlt.tsx | 10 +++++ src/components/IconTab.tsx | 10 +++++ src/components/IconTabUnselected.tsx | 10 +++++ src/components/IconTableChart.tsx | 10 +++++ src/components/IconTableRows.tsx | 17 +++++++ src/components/IconTableView.tsx | 17 +++++++ src/components/IconTablet.tsx | 10 +++++ src/components/IconTabletAndroid.tsx | 23 ++++++++++ src/components/IconTabletMac.tsx | 9 ++++ src/components/IconTagFaces.tsx | 10 +++++ src/components/IconTapAndPlay.tsx | 10 +++++ src/components/IconTapas.tsx | 15 +++++++ src/components/IconTerrain.tsx | 10 +++++ src/components/IconTextFields.tsx | 23 ++++++++++ src/components/IconTextFormat.tsx | 10 +++++ src/components/IconTextRotateUp.tsx | 10 +++++ src/components/IconTextRotateVertical.tsx | 10 +++++ src/components/IconTextRotationAngledown.tsx | 12 +++++ src/components/IconTextRotationAngleup.tsx | 12 +++++ src/components/IconTextRotationDown.tsx | 10 +++++ src/components/IconTextRotationNone.tsx | 10 +++++ src/components/IconTextSnippet.tsx | 17 +++++++ src/components/IconTextsms.tsx | 10 +++++ src/components/IconTexture.tsx | 10 +++++ src/components/IconTheaters.tsx | 10 +++++ src/components/IconThumbDown.tsx | 10 +++++ src/components/IconThumbDownAlt.tsx | 10 +++++ src/components/IconThumbUp.tsx | 10 +++++ src/components/IconThumbUpAlt.tsx | 10 +++++ src/components/IconThumbsUpDown.tsx | 10 +++++ src/components/IconTimeToLeave.tsx | 10 +++++ src/components/IconTimelapse.tsx | 10 +++++ src/components/IconTimeline.tsx | 23 ++++++++++ src/components/IconTimer.tsx | 10 +++++ src/components/IconTimer10.tsx | 10 +++++ src/components/IconTimer3.tsx | 10 +++++ src/components/IconTimerOff.tsx | 13 ++++++ src/components/IconTitle.tsx | 10 +++++ src/components/IconToc.tsx | 10 +++++ src/components/IconToday.tsx | 10 +++++ src/components/IconToggleOff.tsx | 10 +++++ src/components/IconToggleOn.tsx | 10 +++++ src/components/IconToll.tsx | 11 +++++ src/components/IconTonality.tsx | 10 +++++ src/components/IconTopic.tsx | 17 +++++++ src/components/IconTouchApp.tsx | 23 ++++++++++ src/components/IconTour.tsx | 10 +++++ src/components/IconToys.tsx | 10 +++++ src/components/IconTrackChanges.tsx | 10 +++++ src/components/IconTraffic.tsx | 10 +++++ src/components/IconTrain.tsx | 10 +++++ src/components/IconTram.tsx | 10 +++++ src/components/IconTransferWithinAStation.tsx | 12 +++++ src/components/IconTransform.tsx | 10 +++++ src/components/IconTransitEnterexit.tsx | 10 +++++ src/components/IconTranslate.tsx | 10 +++++ src/components/IconTrendingDown.tsx | 10 +++++ src/components/IconTrendingFlat.tsx | 10 +++++ src/components/IconTrendingUp.tsx | 10 +++++ src/components/IconTripOrigin.tsx | 11 +++++ src/components/IconTty.tsx | 17 +++++++ src/components/IconTune.tsx | 10 +++++ src/components/IconTurnedIn.tsx | 10 +++++ src/components/IconTurnedInNot.tsx | 10 +++++ src/components/IconTv.tsx | 10 +++++ src/components/IconTvOff.tsx | 10 +++++ src/components/IconTwoWheeler.tsx | 24 ++++++++++ src/components/IconUmbrella.tsx | 17 +++++++ src/components/IconUnarchive.tsx | 23 ++++++++++ src/components/IconUndo.tsx | 10 +++++ src/components/IconUnfoldLess.tsx | 10 +++++ src/components/IconUnfoldMore.tsx | 10 +++++ src/components/IconUnpublished.tsx | 15 +++++++ src/components/IconUnsubscribe.tsx | 9 ++++ src/components/IconUpdate.tsx | 23 ++++++++++ src/components/IconUpdateDisabled.tsx | 17 +++++++ src/components/IconUpgrade.tsx | 17 +++++++ src/components/IconUsb.tsx | 10 +++++ src/components/IconVerified.tsx | 19 ++++++++ src/components/IconVerifiedUser.tsx | 10 +++++ src/components/IconVerticalAlignBottom.tsx | 12 +++++ src/components/IconVerticalAlignCenter.tsx | 12 +++++ src/components/IconVerticalAlignTop.tsx | 10 +++++ src/components/IconVerticalDistribute.tsx | 15 +++++++ src/components/IconVerticalSplit.tsx | 10 +++++ src/components/IconVibration.tsx | 10 +++++ src/components/IconVideoCall.tsx | 10 +++++ src/components/IconVideoLabel.tsx | 10 +++++ src/components/IconVideoLibrary.tsx | 10 +++++ src/components/IconVideoSettings.tsx | 23 ++++++++++ src/components/IconVideocam.tsx | 10 +++++ src/components/IconVideocamOff.tsx | 10 +++++ src/components/IconVideogameAsset.tsx | 13 ++++++ src/components/IconViewAgenda.tsx | 10 +++++ src/components/IconViewArray.tsx | 10 +++++ src/components/IconViewCarousel.tsx | 10 +++++ src/components/IconViewColumn.tsx | 10 +++++ src/components/IconViewComfy.tsx | 10 +++++ src/components/IconViewCompact.tsx | 10 +++++ src/components/IconViewDay.tsx | 10 +++++ src/components/IconViewHeadline.tsx | 10 +++++ src/components/IconViewList.tsx | 10 +++++ src/components/IconViewModule.tsx | 10 +++++ src/components/IconViewQuilt.tsx | 10 +++++ src/components/IconViewSidebar.tsx | 17 +++++++ src/components/IconViewStream.tsx | 10 +++++ src/components/IconViewWeek.tsx | 10 +++++ src/components/IconVignette.tsx | 10 +++++ src/components/IconVisibility.tsx | 10 +++++ src/components/IconVisibilityOff.tsx | 13 ++++++ src/components/IconVoiceChat.tsx | 10 +++++ src/components/IconVoiceOverOff.tsx | 10 +++++ src/components/IconVoicemail.tsx | 10 +++++ src/components/IconVolumeDown.tsx | 10 +++++ src/components/IconVolumeMute.tsx | 10 +++++ src/components/IconVolumeOff.tsx | 10 +++++ src/components/IconVolumeUp.tsx | 10 +++++ src/components/IconVpnKey.tsx | 10 +++++ src/components/IconVpnLock.tsx | 10 +++++ src/components/IconWallpaper.tsx | 10 +++++ src/components/IconWarning.tsx | 10 +++++ src/components/IconWash.tsx | 17 +++++++ src/components/IconWatch.tsx | 10 +++++ src/components/IconWatchLater.tsx | 23 ++++++++++ src/components/IconWaterDamage.tsx | 15 +++++++ src/components/IconWaves.tsx | 9 ++++ src/components/IconWbAuto.tsx | 10 +++++ src/components/IconWbCloudy.tsx | 10 +++++ src/components/IconWbIncandescent.tsx | 10 +++++ src/components/IconWbIridescent.tsx | 10 +++++ src/components/IconWbSunny.tsx | 10 +++++ src/components/IconWc.tsx | 10 +++++ src/components/IconWeb.tsx | 10 +++++ src/components/IconWebAsset.tsx | 10 +++++ src/components/IconWeekend.tsx | 17 +++++++ src/components/IconWest.tsx | 15 +++++++ src/components/IconWhatshot.tsx | 10 +++++ src/components/IconWheelchairPickup.tsx | 17 +++++++ src/components/IconWhereToVote.tsx | 10 +++++ src/components/IconWidgets.tsx | 10 +++++ src/components/IconWifi.tsx | 10 +++++ src/components/IconWifiCalling.tsx | 22 ++++++++++ src/components/IconWifiLock.tsx | 10 +++++ src/components/IconWifiOff.tsx | 13 ++++++ src/components/IconWifiProtectedSetup.tsx | 26 +++++++++++ src/components/IconWifiTethering.tsx | 10 +++++ src/components/IconWineBar.tsx | 15 +++++++ src/components/IconWork.tsx | 10 +++++ src/components/IconWorkOff.tsx | 10 +++++ src/components/IconWorkOutline.tsx | 13 ++++++ src/components/IconWrapText.tsx | 10 +++++ src/components/IconWrongLocation.tsx | 22 ++++++++++ src/components/IconWysiwyg.tsx | 17 +++++++ src/components/IconYoutubeSearchedFor.tsx | 10 +++++ src/components/IconZoomIn.tsx | 11 +++++ src/components/IconZoomOut.tsx | 10 +++++ src/components/IconZoomOutMap.tsx | 23 ++++++++++ 1317 files changed, 16823 insertions(+) create mode 100644 src/components/Icon360.tsx create mode 100644 src/components/Icon3dRotation.tsx create mode 100644 src/components/Icon4k.tsx create mode 100644 src/components/Icon5g.tsx create mode 100644 src/components/Icon6FtApart.tsx create mode 100644 src/components/IconAcUnit.tsx create mode 100644 src/components/IconAccessAlarm.tsx create mode 100644 src/components/IconAccessAlarms.tsx create mode 100644 src/components/IconAccessTime.tsx create mode 100644 src/components/IconAccessibility.tsx create mode 100644 src/components/IconAccessibilityNew.tsx create mode 100644 src/components/IconAccessible.tsx create mode 100644 src/components/IconAccessibleForward.tsx create mode 100644 src/components/IconAccountBalance.tsx create mode 100644 src/components/IconAccountBalanceWallet.tsx create mode 100644 src/components/IconAccountBox.tsx create mode 100644 src/components/IconAccountCircle.tsx create mode 100644 src/components/IconAccountTree.tsx create mode 100644 src/components/IconAdUnits.tsx create mode 100644 src/components/IconAdb.tsx create mode 100644 src/components/IconAdd.tsx create mode 100644 src/components/IconAddAPhoto.tsx create mode 100644 src/components/IconAddAlarm.tsx create mode 100644 src/components/IconAddAlert.tsx create mode 100644 src/components/IconAddBox.tsx create mode 100644 src/components/IconAddBusiness.tsx create mode 100644 src/components/IconAddCircle.tsx create mode 100644 src/components/IconAddCircleOutline.tsx create mode 100644 src/components/IconAddComment.tsx create mode 100644 src/components/IconAddIcCall.tsx create mode 100644 src/components/IconAddLocation.tsx create mode 100644 src/components/IconAddLocationAlt.tsx create mode 100644 src/components/IconAddPhotoAlternate.tsx create mode 100644 src/components/IconAddRoad.tsx create mode 100644 src/components/IconAddShoppingCart.tsx create mode 100644 src/components/IconAddTask.tsx create mode 100644 src/components/IconAddToHomeScreen.tsx create mode 100644 src/components/IconAddToPhotos.tsx create mode 100644 src/components/IconAddToQueue.tsx create mode 100644 src/components/IconAddchart.tsx create mode 100644 src/components/IconAdjust.tsx create mode 100644 src/components/IconAdminPanelSettings.tsx create mode 100644 src/components/IconAgriculture.tsx create mode 100644 src/components/IconAirlineSeatFlat.tsx create mode 100644 src/components/IconAirlineSeatFlatAngled.tsx create mode 100644 src/components/IconAirlineSeatIndividualSuite.tsx create mode 100644 src/components/IconAirlineSeatLegroomExtra.tsx create mode 100644 src/components/IconAirlineSeatLegroomNormal.tsx create mode 100644 src/components/IconAirlineSeatLegroomReduced.tsx create mode 100644 src/components/IconAirlineSeatReclineExtra.tsx create mode 100644 src/components/IconAirlineSeatReclineNormal.tsx create mode 100644 src/components/IconAirplanemodeActive.tsx create mode 100644 src/components/IconAirplanemodeInactive.tsx create mode 100644 src/components/IconAirplay.tsx create mode 100644 src/components/IconAirportShuttle.tsx create mode 100644 src/components/IconAlarm.tsx create mode 100644 src/components/IconAlarmAdd.tsx create mode 100644 src/components/IconAlarmOff.tsx create mode 100644 src/components/IconAlarmOn.tsx create mode 100644 src/components/IconAlbum.tsx create mode 100644 src/components/IconAlignHorizontalCenter.tsx create mode 100644 src/components/IconAlignHorizontalLeft.tsx create mode 100644 src/components/IconAlignHorizontalRight.tsx create mode 100644 src/components/IconAlignVerticalBottom.tsx create mode 100644 src/components/IconAlignVerticalCenter.tsx create mode 100644 src/components/IconAlignVerticalTop.tsx create mode 100644 src/components/IconAllInbox.tsx create mode 100644 src/components/IconAllInclusive.tsx create mode 100644 src/components/IconAllOut.tsx create mode 100644 src/components/IconAltRoute.tsx create mode 100644 src/components/IconAlternateEmail.tsx create mode 100644 src/components/IconAmpStories.tsx create mode 100644 src/components/IconAnalytics.tsx create mode 100644 src/components/IconAnchor.tsx create mode 100644 src/components/IconAndroid.tsx create mode 100644 src/components/IconAnnouncement.tsx create mode 100644 src/components/IconApartment.tsx create mode 100644 src/components/IconApi.tsx create mode 100644 src/components/IconAppBlocking.tsx create mode 100644 src/components/IconAppSettingsAlt.tsx create mode 100644 src/components/IconApps.tsx create mode 100644 src/components/IconArchitecture.tsx create mode 100644 src/components/IconArchive.tsx create mode 100644 src/components/IconArrowBack.tsx create mode 100644 src/components/IconArrowBackIos.tsx create mode 100644 src/components/IconArrowCircleDown.tsx create mode 100644 src/components/IconArrowCircleUp.tsx create mode 100644 src/components/IconArrowDownward.tsx create mode 100644 src/components/IconArrowDropDown.tsx create mode 100644 src/components/IconArrowDropDownCircle.tsx create mode 100644 src/components/IconArrowDropUp.tsx create mode 100644 src/components/IconArrowForward.tsx create mode 100644 src/components/IconArrowForwardIos.tsx create mode 100644 src/components/IconArrowLeft.tsx create mode 100644 src/components/IconArrowRight.tsx create mode 100644 src/components/IconArrowRightAlt.tsx create mode 100644 src/components/IconArrowUpward.tsx create mode 100644 src/components/IconArtTrack.tsx create mode 100644 src/components/IconArticle.tsx create mode 100644 src/components/IconAspectRatio.tsx create mode 100644 src/components/IconAssessment.tsx create mode 100644 src/components/IconAssignment.tsx create mode 100644 src/components/IconAssignmentInd.tsx create mode 100644 src/components/IconAssignmentLate.tsx create mode 100644 src/components/IconAssignmentReturn.tsx create mode 100644 src/components/IconAssignmentReturned.tsx create mode 100644 src/components/IconAssignmentTurnedIn.tsx create mode 100644 src/components/IconAssistant.tsx create mode 100644 src/components/IconAssistantPhoto.tsx create mode 100644 src/components/IconAtm.tsx create mode 100644 src/components/IconAttachEmail.tsx create mode 100644 src/components/IconAttachFile.tsx create mode 100644 src/components/IconAttachMoney.tsx create mode 100644 src/components/IconAttachment.tsx create mode 100644 src/components/IconAudiotrack.tsx create mode 100644 src/components/IconAutoDelete.tsx create mode 100644 src/components/IconAutorenew.tsx create mode 100644 src/components/IconAvTimer.tsx create mode 100644 src/components/IconBabyChangingStation.tsx create mode 100644 src/components/IconBackpack.tsx create mode 100644 src/components/IconBackspace.tsx create mode 100644 src/components/IconBackup.tsx create mode 100644 src/components/IconBackupTable.tsx create mode 100644 src/components/IconBallot.tsx create mode 100644 src/components/IconBarChart.tsx create mode 100644 src/components/IconBatchPrediction.tsx create mode 100644 src/components/IconBathtub.tsx create mode 100644 src/components/IconBatteryAlert.tsx create mode 100644 src/components/IconBatteryChargingFull.tsx create mode 100644 src/components/IconBatteryFull.tsx create mode 100644 src/components/IconBatteryStd.tsx create mode 100644 src/components/IconBatteryUnknown.tsx create mode 100644 src/components/IconBeachAccess.tsx create mode 100644 src/components/IconBedtime.tsx create mode 100644 src/components/IconBeenhere.tsx create mode 100644 src/components/IconBento.tsx create mode 100644 src/components/IconBikeScooter.tsx create mode 100644 src/components/IconBiotech.tsx create mode 100644 src/components/IconBlock.tsx create mode 100644 src/components/IconBluetooth.tsx create mode 100644 src/components/IconBluetoothAudio.tsx create mode 100644 src/components/IconBluetoothConnected.tsx create mode 100644 src/components/IconBluetoothDisabled.tsx create mode 100644 src/components/IconBluetoothSearching.tsx create mode 100644 src/components/IconBlurCircular.tsx create mode 100644 src/components/IconBlurLinear.tsx create mode 100644 src/components/IconBlurOff.tsx create mode 100644 src/components/IconBlurOn.tsx create mode 100644 src/components/IconBook.tsx create mode 100644 src/components/IconBookOnline.tsx create mode 100644 src/components/IconBookmark.tsx create mode 100644 src/components/IconBookmarkBorder.tsx create mode 100644 src/components/IconBookmarks.tsx create mode 100644 src/components/IconBorderAll.tsx create mode 100644 src/components/IconBorderBottom.tsx create mode 100644 src/components/IconBorderClear.tsx create mode 100644 src/components/IconBorderHorizontal.tsx create mode 100644 src/components/IconBorderInner.tsx create mode 100644 src/components/IconBorderLeft.tsx create mode 100644 src/components/IconBorderOuter.tsx create mode 100644 src/components/IconBorderRight.tsx create mode 100644 src/components/IconBorderStyle.tsx create mode 100644 src/components/IconBorderTop.tsx create mode 100644 src/components/IconBorderVertical.tsx create mode 100644 src/components/IconBrandingWatermark.tsx create mode 100644 src/components/IconBrightness1.tsx create mode 100644 src/components/IconBrightness2.tsx create mode 100644 src/components/IconBrightness3.tsx create mode 100644 src/components/IconBrightness4.tsx create mode 100644 src/components/IconBrightness5.tsx create mode 100644 src/components/IconBrightness6.tsx create mode 100644 src/components/IconBrightness7.tsx create mode 100644 src/components/IconBrightnessAuto.tsx create mode 100644 src/components/IconBrightnessHigh.tsx create mode 100644 src/components/IconBrightnessLow.tsx create mode 100644 src/components/IconBrightnessMedium.tsx create mode 100644 src/components/IconBrokenImage.tsx create mode 100644 src/components/IconBrowserNotSupported.tsx create mode 100644 src/components/IconBrush.tsx create mode 100644 src/components/IconBubbleChart.tsx create mode 100644 src/components/IconBugReport.tsx create mode 100644 src/components/IconBuild.tsx create mode 100644 src/components/IconBuildCircle.tsx create mode 100644 src/components/IconBurstMode.tsx create mode 100644 src/components/IconBusiness.tsx create mode 100644 src/components/IconBusinessCenter.tsx create mode 100644 src/components/IconCached.tsx create mode 100644 src/components/IconCake.tsx create mode 100644 src/components/IconCalculate.tsx create mode 100644 src/components/IconCalendarToday.tsx create mode 100644 src/components/IconCalendarViewDay.tsx create mode 100644 src/components/IconCall.tsx create mode 100644 src/components/IconCallEnd.tsx create mode 100644 src/components/IconCallMade.tsx create mode 100644 src/components/IconCallMerge.tsx create mode 100644 src/components/IconCallMissed.tsx create mode 100644 src/components/IconCallMissedOutgoing.tsx create mode 100644 src/components/IconCallReceived.tsx create mode 100644 src/components/IconCallSplit.tsx create mode 100644 src/components/IconCallToAction.tsx create mode 100644 src/components/IconCamera.tsx create mode 100644 src/components/IconCameraAlt.tsx create mode 100644 src/components/IconCameraEnhance.tsx create mode 100644 src/components/IconCameraFront.tsx create mode 100644 src/components/IconCameraRear.tsx create mode 100644 src/components/IconCameraRoll.tsx create mode 100644 src/components/IconCampaign.tsx create mode 100644 src/components/IconCancel.tsx create mode 100644 src/components/IconCancelPresentation.tsx create mode 100644 src/components/IconCancelScheduleSend.tsx create mode 100644 src/components/IconCardGiftcard.tsx create mode 100644 src/components/IconCardMembership.tsx create mode 100644 src/components/IconCardTravel.tsx create mode 100644 src/components/IconCarpenter.tsx create mode 100644 src/components/IconCasino.tsx create mode 100644 src/components/IconCast.tsx create mode 100644 src/components/IconCastConnected.tsx create mode 100644 src/components/IconCastForEducation.tsx create mode 100644 src/components/IconCategory.tsx create mode 100644 src/components/IconCenterFocusStrong.tsx create mode 100644 src/components/IconCenterFocusWeak.tsx create mode 100644 src/components/IconChangeHistory.tsx create mode 100644 src/components/IconChargingStation.tsx create mode 100644 src/components/IconChat.tsx create mode 100644 src/components/IconChatBubble.tsx create mode 100644 src/components/IconChatBubbleOutline.tsx create mode 100644 src/components/IconCheck.tsx create mode 100644 src/components/IconCheckBox.tsx create mode 100644 src/components/IconCheckBoxOutlineBlank.tsx create mode 100644 src/components/IconCheckCircle.tsx create mode 100644 src/components/IconCheckCircleOutline.tsx create mode 100644 src/components/IconCheckroom.tsx create mode 100644 src/components/IconChevronLeft.tsx create mode 100644 src/components/IconChevronRight.tsx create mode 100644 src/components/IconChildCare.tsx create mode 100644 src/components/IconChildFriendly.tsx create mode 100644 src/components/IconChromeReaderMode.tsx create mode 100644 src/components/IconClass.tsx create mode 100644 src/components/IconCleanHands.tsx create mode 100644 src/components/IconCleaningServices.tsx create mode 100644 src/components/IconClear.tsx create mode 100644 src/components/IconClearAll.tsx create mode 100644 src/components/IconClose.tsx create mode 100644 src/components/IconCloseFullscreen.tsx create mode 100644 src/components/IconClosedCaption.tsx create mode 100644 src/components/IconClosedCaptionDisabled.tsx create mode 100644 src/components/IconCloud.tsx create mode 100644 src/components/IconCloudCircle.tsx create mode 100644 src/components/IconCloudDone.tsx create mode 100644 src/components/IconCloudDownload.tsx create mode 100644 src/components/IconCloudOff.tsx create mode 100644 src/components/IconCloudQueue.tsx create mode 100644 src/components/IconCloudUpload.tsx create mode 100644 src/components/IconCode.tsx create mode 100644 src/components/IconCollections.tsx create mode 100644 src/components/IconCollectionsBookmark.tsx create mode 100644 src/components/IconColorLens.tsx create mode 100644 src/components/IconColorize.tsx create mode 100644 src/components/IconComment.tsx create mode 100644 src/components/IconCommentBank.tsx create mode 100644 src/components/IconCommute.tsx create mode 100644 src/components/IconCompare.tsx create mode 100644 src/components/IconCompareArrows.tsx create mode 100644 src/components/IconCompassCalibration.tsx create mode 100644 src/components/IconComputer.tsx create mode 100644 src/components/IconConfirmationNumber.tsx create mode 100644 src/components/IconConnectWithoutContact.tsx create mode 100644 src/components/IconConstruction.tsx create mode 100644 src/components/IconContactMail.tsx create mode 100644 src/components/IconContactPage.tsx create mode 100644 src/components/IconContactPhone.tsx create mode 100644 src/components/IconContactSupport.tsx create mode 100644 src/components/IconContactless.tsx create mode 100644 src/components/IconContacts.tsx create mode 100644 src/components/IconContentCopy.tsx create mode 100644 src/components/IconContentCut.tsx create mode 100644 src/components/IconContentPaste.tsx create mode 100644 src/components/IconControlCamera.tsx create mode 100644 src/components/IconControlPoint.tsx create mode 100644 src/components/IconControlPointDuplicate.tsx create mode 100644 src/components/IconCopyright.tsx create mode 100644 src/components/IconCoronavirus.tsx create mode 100644 src/components/IconCorporateFare.tsx create mode 100644 src/components/IconCountertops.tsx create mode 100644 src/components/IconCreate.tsx create mode 100644 src/components/IconCreateNewFolder.tsx create mode 100644 src/components/IconCreditCard.tsx create mode 100644 src/components/IconCrop.tsx create mode 100644 src/components/IconCrop169.tsx create mode 100644 src/components/IconCrop32.tsx create mode 100644 src/components/IconCrop54.tsx create mode 100644 src/components/IconCrop75.tsx create mode 100644 src/components/IconCropDin.tsx create mode 100644 src/components/IconCropFree.tsx create mode 100644 src/components/IconCropLandscape.tsx create mode 100644 src/components/IconCropOriginal.tsx create mode 100644 src/components/IconCropPortrait.tsx create mode 100644 src/components/IconCropRotate.tsx create mode 100644 src/components/IconCropSquare.tsx create mode 100644 src/components/IconDashboard.tsx create mode 100644 src/components/IconDataUsage.tsx create mode 100644 src/components/IconDateRange.tsx create mode 100644 src/components/IconDeck.tsx create mode 100644 src/components/IconDehaze.tsx create mode 100644 src/components/IconDelete.tsx create mode 100644 src/components/IconDeleteForever.tsx create mode 100644 src/components/IconDeleteOutline.tsx create mode 100644 src/components/IconDeleteSweep.tsx create mode 100644 src/components/IconDepartureBoard.tsx create mode 100644 src/components/IconDescription.tsx create mode 100644 src/components/IconDesignServices.tsx create mode 100644 src/components/IconDesktopAccessDisabled.tsx create mode 100644 src/components/IconDesktopMac.tsx create mode 100644 src/components/IconDesktopWindows.tsx create mode 100644 src/components/IconDetails.tsx create mode 100644 src/components/IconDeveloperBoard.tsx create mode 100644 src/components/IconDeveloperMode.tsx create mode 100644 src/components/IconDeviceHub.tsx create mode 100644 src/components/IconDeviceUnknown.tsx create mode 100644 src/components/IconDevices.tsx create mode 100644 src/components/IconDevicesOther.tsx create mode 100644 src/components/IconDialerSip.tsx create mode 100644 src/components/IconDialpad.tsx create mode 100644 src/components/IconDirections.tsx create mode 100644 src/components/IconDirectionsBike.tsx create mode 100644 src/components/IconDirectionsBoat.tsx create mode 100644 src/components/IconDirectionsBus.tsx create mode 100644 src/components/IconDirectionsCar.tsx create mode 100644 src/components/IconDirectionsOff.tsx create mode 100644 src/components/IconDirectionsRailway.tsx create mode 100644 src/components/IconDirectionsRun.tsx create mode 100644 src/components/IconDirectionsSubway.tsx create mode 100644 src/components/IconDirectionsTransit.tsx create mode 100644 src/components/IconDirectionsWalk.tsx create mode 100644 src/components/IconDisabledByDefault.tsx create mode 100644 src/components/IconDiscFull.tsx create mode 100644 src/components/IconDns.tsx create mode 100644 src/components/IconDoNotStep.tsx create mode 100644 src/components/IconDoNotTouch.tsx create mode 100644 src/components/IconDock.tsx create mode 100644 src/components/IconDomain.tsx create mode 100644 src/components/IconDomainDisabled.tsx create mode 100644 src/components/IconDomainVerification.tsx create mode 100644 src/components/IconDone.tsx create mode 100644 src/components/IconDoneAll.tsx create mode 100644 src/components/IconDoneOutline.tsx create mode 100644 src/components/IconDonutLarge.tsx create mode 100644 src/components/IconDonutSmall.tsx create mode 100644 src/components/IconDoubleArrow.tsx create mode 100644 src/components/IconDrafts.tsx create mode 100644 src/components/IconDragHandle.tsx create mode 100644 src/components/IconDragIndicator.tsx create mode 100644 src/components/IconDriveEta.tsx create mode 100644 src/components/IconDry.tsx create mode 100644 src/components/IconDuo.tsx create mode 100644 src/components/IconDvr.tsx create mode 100644 src/components/IconDynamicFeed.tsx create mode 100644 src/components/IconDynamicForm.tsx create mode 100644 src/components/IconEast.tsx create mode 100644 src/components/IconEco.tsx create mode 100644 src/components/IconEdit.tsx create mode 100644 src/components/IconEditAttributes.tsx create mode 100644 src/components/IconEditLocation.tsx create mode 100644 src/components/IconEditRoad.tsx create mode 100644 src/components/IconEject.tsx create mode 100644 src/components/IconElderly.tsx create mode 100644 src/components/IconElectricBike.tsx create mode 100644 src/components/IconElectricCar.tsx create mode 100644 src/components/IconElectricMoped.tsx create mode 100644 src/components/IconElectricScooter.tsx create mode 100644 src/components/IconElectricalServices.tsx create mode 100644 src/components/IconElevator.tsx create mode 100644 src/components/IconEmail.tsx create mode 100644 src/components/IconEmojiEmotions.tsx create mode 100644 src/components/IconEmojiEvents.tsx create mode 100644 src/components/IconEmojiFlags.tsx create mode 100644 src/components/IconEmojiFoodBeverage.tsx create mode 100644 src/components/IconEmojiNature.tsx create mode 100644 src/components/IconEmojiObjects.tsx create mode 100644 src/components/IconEmojiPeople.tsx create mode 100644 src/components/IconEmojiSymbols.tsx create mode 100644 src/components/IconEmojiTransportation.tsx create mode 100644 src/components/IconEngineering.tsx create mode 100644 src/components/IconEnhancedEncryption.tsx create mode 100644 src/components/IconEqualizer.tsx create mode 100644 src/components/IconError.tsx create mode 100644 src/components/IconErrorOutline.tsx create mode 100644 src/components/IconEscalator.tsx create mode 100644 src/components/IconEscalatorWarning.tsx create mode 100644 src/components/IconEuro.tsx create mode 100644 src/components/IconEuroSymbol.tsx create mode 100644 src/components/IconEvStation.tsx create mode 100644 src/components/IconEvent.tsx create mode 100644 src/components/IconEventAvailable.tsx create mode 100644 src/components/IconEventBusy.tsx create mode 100644 src/components/IconEventNote.tsx create mode 100644 src/components/IconEventSeat.tsx create mode 100644 src/components/IconExitToApp.tsx create mode 100644 src/components/IconExpandLess.tsx create mode 100644 src/components/IconExpandMore.tsx create mode 100644 src/components/IconExplicit.tsx create mode 100644 src/components/IconExplore.tsx create mode 100644 src/components/IconExploreOff.tsx create mode 100644 src/components/IconExposure.tsx create mode 100644 src/components/IconExposureNeg1.tsx create mode 100644 src/components/IconExposureNeg2.tsx create mode 100644 src/components/IconExposurePlus1.tsx create mode 100644 src/components/IconExposurePlus2.tsx create mode 100644 src/components/IconExposureZero.tsx create mode 100644 src/components/IconExtension.tsx create mode 100644 src/components/IconFace.tsx create mode 100644 src/components/IconFacebook.tsx create mode 100644 src/components/IconFactCheck.tsx create mode 100644 src/components/IconFamilyRestroom.tsx create mode 100644 src/components/IconFastForward.tsx create mode 100644 src/components/IconFastRewind.tsx create mode 100644 src/components/IconFastfood.tsx create mode 100644 src/components/IconFavorite.tsx create mode 100644 src/components/IconFavoriteBorder.tsx create mode 100644 src/components/IconFeaturedPlayList.tsx create mode 100644 src/components/IconFeaturedVideo.tsx create mode 100644 src/components/IconFeedback.tsx create mode 100644 src/components/IconFence.tsx create mode 100644 src/components/IconFiberDvr.tsx create mode 100644 src/components/IconFiberManualRecord.tsx create mode 100644 src/components/IconFiberNew.tsx create mode 100644 src/components/IconFiberPin.tsx create mode 100644 src/components/IconFiberSmartRecord.tsx create mode 100644 src/components/IconFileCopy.tsx create mode 100644 src/components/IconFilter.tsx create mode 100644 src/components/IconFilter1.tsx create mode 100644 src/components/IconFilter2.tsx create mode 100644 src/components/IconFilter3.tsx create mode 100644 src/components/IconFilter4.tsx create mode 100644 src/components/IconFilter5.tsx create mode 100644 src/components/IconFilter6.tsx create mode 100644 src/components/IconFilter7.tsx create mode 100644 src/components/IconFilter8.tsx create mode 100644 src/components/IconFilter9.tsx create mode 100644 src/components/IconFilter9Plus.tsx create mode 100644 src/components/IconFilterAlt.tsx create mode 100644 src/components/IconFilterBAndW.tsx create mode 100644 src/components/IconFilterCenterFocus.tsx create mode 100644 src/components/IconFilterDrama.tsx create mode 100644 src/components/IconFilterFrames.tsx create mode 100644 src/components/IconFilterHdr.tsx create mode 100644 src/components/IconFilterList.tsx create mode 100644 src/components/IconFilterNone.tsx create mode 100644 src/components/IconFilterTiltShift.tsx create mode 100644 src/components/IconFilterVintage.tsx create mode 100644 src/components/IconFindInPage.tsx create mode 100644 src/components/IconFindReplace.tsx create mode 100644 src/components/IconFingerprint.tsx create mode 100644 src/components/IconFireExtinguisher.tsx create mode 100644 src/components/IconFireplace.tsx create mode 100644 src/components/IconFirstPage.tsx create mode 100644 src/components/IconFitnessCenter.tsx create mode 100644 src/components/IconFlag.tsx create mode 100644 src/components/IconFlaky.tsx create mode 100644 src/components/IconFlare.tsx create mode 100644 src/components/IconFlashAuto.tsx create mode 100644 src/components/IconFlashOff.tsx create mode 100644 src/components/IconFlashOn.tsx create mode 100644 src/components/IconFlight.tsx create mode 100644 src/components/IconFlightLand.tsx create mode 100644 src/components/IconFlightTakeoff.tsx create mode 100644 src/components/IconFlip.tsx create mode 100644 src/components/IconFlipCameraAndroid.tsx create mode 100644 src/components/IconFlipCameraIos.tsx create mode 100644 src/components/IconFlipToBack.tsx create mode 100644 src/components/IconFlipToFront.tsx create mode 100644 src/components/IconFolder.tsx create mode 100644 src/components/IconFolderOpen.tsx create mode 100644 src/components/IconFolderShared.tsx create mode 100644 src/components/IconFolderSpecial.tsx create mode 100644 src/components/IconFollowTheSigns.tsx create mode 100644 src/components/IconFontDownload.tsx create mode 100644 src/components/IconFoodBank.tsx create mode 100644 src/components/IconFormatAlignCenter.tsx create mode 100644 src/components/IconFormatAlignJustify.tsx create mode 100644 src/components/IconFormatAlignLeft.tsx create mode 100644 src/components/IconFormatAlignRight.tsx create mode 100644 src/components/IconFormatBold.tsx create mode 100644 src/components/IconFormatClear.tsx create mode 100644 src/components/IconFormatColorReset.tsx create mode 100644 src/components/IconFormatIndentDecrease.tsx create mode 100644 src/components/IconFormatIndentIncrease.tsx create mode 100644 src/components/IconFormatItalic.tsx create mode 100644 src/components/IconFormatLineSpacing.tsx create mode 100644 src/components/IconFormatListBulleted.tsx create mode 100644 src/components/IconFormatListNumbered.tsx create mode 100644 src/components/IconFormatListNumberedRtl.tsx create mode 100644 src/components/IconFormatPaint.tsx create mode 100644 src/components/IconFormatQuote.tsx create mode 100644 src/components/IconFormatShapes.tsx create mode 100644 src/components/IconFormatSize.tsx create mode 100644 src/components/IconFormatStrikethrough.tsx create mode 100644 src/components/IconFormatTextdirectionLToR.tsx create mode 100644 src/components/IconFormatTextdirectionRToL.tsx create mode 100644 src/components/IconFormatUnderlined.tsx create mode 100644 src/components/IconForum.tsx create mode 100644 src/components/IconForward.tsx create mode 100644 src/components/IconForward10.tsx create mode 100644 src/components/IconForward30.tsx create mode 100644 src/components/IconForward5.tsx create mode 100644 src/components/IconForwardToInbox.tsx create mode 100644 src/components/IconFoundation.tsx create mode 100644 src/components/IconFreeBreakfast.tsx create mode 100644 src/components/IconFullscreen.tsx create mode 100644 src/components/IconFullscreenExit.tsx create mode 100644 src/components/IconFunctions.tsx create mode 100644 src/components/IconGTranslate.tsx create mode 100644 src/components/IconGamepad.tsx create mode 100644 src/components/IconGames.tsx create mode 100644 src/components/IconGavel.tsx create mode 100644 src/components/IconGesture.tsx create mode 100644 src/components/IconGetApp.tsx create mode 100644 src/components/IconGif.tsx create mode 100644 src/components/IconGolfCourse.tsx create mode 100644 src/components/IconGpsFixed.tsx create mode 100644 src/components/IconGpsNotFixed.tsx create mode 100644 src/components/IconGpsOff.tsx create mode 100644 src/components/IconGrade.tsx create mode 100644 src/components/IconGradient.tsx create mode 100644 src/components/IconGrading.tsx create mode 100644 src/components/IconGrain.tsx create mode 100644 src/components/IconGraphicEq.tsx create mode 100644 src/components/IconGrass.tsx create mode 100644 src/components/IconGridOff.tsx create mode 100644 src/components/IconGridOn.tsx create mode 100644 src/components/IconGroup.tsx create mode 100644 src/components/IconGroupAdd.tsx create mode 100644 src/components/IconGroupWork.tsx create mode 100644 src/components/IconGroups.tsx create mode 100644 src/components/IconHandyman.tsx create mode 100644 src/components/IconHd.tsx create mode 100644 src/components/IconHdrOff.tsx create mode 100644 src/components/IconHdrOn.tsx create mode 100644 src/components/IconHdrStrong.tsx create mode 100644 src/components/IconHdrWeak.tsx create mode 100644 src/components/IconHeadset.tsx create mode 100644 src/components/IconHeadsetMic.tsx create mode 100644 src/components/IconHealing.tsx create mode 100644 src/components/IconHearing.tsx create mode 100644 src/components/IconHearingDisabled.tsx create mode 100644 src/components/IconHeight.tsx create mode 100644 src/components/IconHelp.tsx create mode 100644 src/components/IconHelpCenter.tsx create mode 100644 src/components/IconHelpOutline.tsx create mode 100644 src/components/IconHighQuality.tsx create mode 100644 src/components/IconHighlight.tsx create mode 100644 src/components/IconHighlightAlt.tsx create mode 100644 src/components/IconHighlightOff.tsx create mode 100644 src/components/IconHistory.tsx create mode 100644 src/components/IconHistoryEdu.tsx create mode 100644 src/components/IconHistoryToggleOff.tsx create mode 100644 src/components/IconHome.tsx create mode 100644 src/components/IconHomeRepairService.tsx create mode 100644 src/components/IconHomeWork.tsx create mode 100644 src/components/IconHorizontalDistribute.tsx create mode 100644 src/components/IconHorizontalRule.tsx create mode 100644 src/components/IconHorizontalSplit.tsx create mode 100644 src/components/IconHotTub.tsx create mode 100644 src/components/IconHotel.tsx create mode 100644 src/components/IconHourglassBottom.tsx create mode 100644 src/components/IconHourglassDisabled.tsx create mode 100644 src/components/IconHourglassEmpty.tsx create mode 100644 src/components/IconHourglassFull.tsx create mode 100644 src/components/IconHourglassTop.tsx create mode 100644 src/components/IconHouse.tsx create mode 100644 src/components/IconHouseSiding.tsx create mode 100644 src/components/IconHowToReg.tsx create mode 100644 src/components/IconHowToVote.tsx create mode 100644 src/components/IconHttp.tsx create mode 100644 src/components/IconHttps.tsx create mode 100644 src/components/IconHvac.tsx create mode 100644 src/components/IconImage.tsx create mode 100644 src/components/IconImageAspectRatio.tsx create mode 100644 src/components/IconImageNotSupported.tsx create mode 100644 src/components/IconImageSearch.tsx create mode 100644 src/components/IconImportContacts.tsx create mode 100644 src/components/IconImportExport.tsx create mode 100644 src/components/IconImportantDevices.tsx create mode 100644 src/components/IconInbox.tsx create mode 100644 src/components/IconIndeterminateCheckBox.tsx create mode 100644 src/components/IconInfo.tsx create mode 100644 src/components/IconInput.tsx create mode 100644 src/components/IconInsertChart.tsx create mode 100644 src/components/IconInsertChartOutlined.tsx create mode 100644 src/components/IconInsertComment.tsx create mode 100644 src/components/IconInsertDriveFile.tsx create mode 100644 src/components/IconInsertEmoticon.tsx create mode 100644 src/components/IconInsertInvitation.tsx create mode 100644 src/components/IconInsertLink.tsx create mode 100644 src/components/IconInsertPhoto.tsx create mode 100644 src/components/IconInsights.tsx create mode 100644 src/components/IconIntegrationInstructions.tsx create mode 100644 src/components/IconInvertColors.tsx create mode 100644 src/components/IconInvertColorsOff.tsx create mode 100644 src/components/IconIso.tsx create mode 100644 src/components/IconKeyboard.tsx create mode 100644 src/components/IconKeyboardArrowDown.tsx create mode 100644 src/components/IconKeyboardArrowLeft.tsx create mode 100644 src/components/IconKeyboardArrowRight.tsx create mode 100644 src/components/IconKeyboardArrowUp.tsx create mode 100644 src/components/IconKeyboardBackspace.tsx create mode 100644 src/components/IconKeyboardCapslock.tsx create mode 100644 src/components/IconKeyboardHide.tsx create mode 100644 src/components/IconKeyboardReturn.tsx create mode 100644 src/components/IconKeyboardTab.tsx create mode 100644 src/components/IconKeyboardVoice.tsx create mode 100644 src/components/IconKingBed.tsx create mode 100644 src/components/IconKitchen.tsx create mode 100644 src/components/IconLabel.tsx create mode 100644 src/components/IconLabelImportant.tsx create mode 100644 src/components/IconLabelOff.tsx create mode 100644 src/components/IconLandscape.tsx create mode 100644 src/components/IconLanguage.tsx create mode 100644 src/components/IconLaptop.tsx create mode 100644 src/components/IconLaptopChromebook.tsx create mode 100644 src/components/IconLaptopMac.tsx create mode 100644 src/components/IconLaptopWindows.tsx create mode 100644 src/components/IconLastPage.tsx create mode 100644 src/components/IconLaunch.tsx create mode 100644 src/components/IconLayers.tsx create mode 100644 src/components/IconLayersClear.tsx create mode 100644 src/components/IconLeaderboard.tsx create mode 100644 src/components/IconLeakAdd.tsx create mode 100644 src/components/IconLeakRemove.tsx create mode 100644 src/components/IconLegendToggle.tsx create mode 100644 src/components/IconLens.tsx create mode 100644 src/components/IconLibraryAdd.tsx create mode 100644 src/components/IconLibraryAddCheck.tsx create mode 100644 src/components/IconLibraryBooks.tsx create mode 100644 src/components/IconLibraryMusic.tsx create mode 100644 src/components/IconLineStyle.tsx create mode 100644 src/components/IconLineWeight.tsx create mode 100644 src/components/IconLinearScale.tsx create mode 100644 src/components/IconLink.tsx create mode 100644 src/components/IconLinkOff.tsx create mode 100644 src/components/IconLinkedCamera.tsx create mode 100644 src/components/IconList.tsx create mode 100644 src/components/IconListAlt.tsx create mode 100644 src/components/IconLiveHelp.tsx create mode 100644 src/components/IconLiveTv.tsx create mode 100644 src/components/IconLocalActivity.tsx create mode 100644 src/components/IconLocalAirport.tsx create mode 100644 src/components/IconLocalAtm.tsx create mode 100644 src/components/IconLocalBar.tsx create mode 100644 src/components/IconLocalCafe.tsx create mode 100644 src/components/IconLocalCarWash.tsx create mode 100644 src/components/IconLocalConvenienceStore.tsx create mode 100644 src/components/IconLocalDining.tsx create mode 100644 src/components/IconLocalDrink.tsx create mode 100644 src/components/IconLocalFireDepartment.tsx create mode 100644 src/components/IconLocalFlorist.tsx create mode 100644 src/components/IconLocalGasStation.tsx create mode 100644 src/components/IconLocalGroceryStore.tsx create mode 100644 src/components/IconLocalHospital.tsx create mode 100644 src/components/IconLocalHotel.tsx create mode 100644 src/components/IconLocalLaundryService.tsx create mode 100644 src/components/IconLocalLibrary.tsx create mode 100644 src/components/IconLocalMall.tsx create mode 100644 src/components/IconLocalMovies.tsx create mode 100644 src/components/IconLocalOffer.tsx create mode 100644 src/components/IconLocalParking.tsx create mode 100644 src/components/IconLocalPharmacy.tsx create mode 100644 src/components/IconLocalPhone.tsx create mode 100644 src/components/IconLocalPizza.tsx create mode 100644 src/components/IconLocalPlay.tsx create mode 100644 src/components/IconLocalPolice.tsx create mode 100644 src/components/IconLocalPostOffice.tsx create mode 100644 src/components/IconLocalPrintshop.tsx create mode 100644 src/components/IconLocalSee.tsx create mode 100644 src/components/IconLocalShipping.tsx create mode 100644 src/components/IconLocalTaxi.tsx create mode 100644 src/components/IconLocationCity.tsx create mode 100644 src/components/IconLocationDisabled.tsx create mode 100644 src/components/IconLocationOff.tsx create mode 100644 src/components/IconLocationOn.tsx create mode 100644 src/components/IconLocationSearching.tsx create mode 100644 src/components/IconLock.tsx create mode 100644 src/components/IconLockOpen.tsx create mode 100644 src/components/IconLogin.tsx create mode 100644 src/components/IconLooks.tsx create mode 100644 src/components/IconLooks3.tsx create mode 100644 src/components/IconLooks4.tsx create mode 100644 src/components/IconLooks5.tsx create mode 100644 src/components/IconLooks6.tsx create mode 100644 src/components/IconLooksOne.tsx create mode 100644 src/components/IconLooksTwo.tsx create mode 100644 src/components/IconLoop.tsx create mode 100644 src/components/IconLoupe.tsx create mode 100644 src/components/IconLowPriority.tsx create mode 100644 src/components/IconLoyalty.tsx create mode 100644 src/components/IconLuggage.tsx create mode 100644 src/components/IconMail.tsx create mode 100644 src/components/IconMailOutline.tsx create mode 100644 src/components/IconMap.tsx create mode 100644 src/components/IconMapsUgc.tsx create mode 100644 src/components/IconMarkChatRead.tsx create mode 100644 src/components/IconMarkChatUnread.tsx create mode 100644 src/components/IconMarkEmailRead.tsx create mode 100644 src/components/IconMarkEmailUnread.tsx create mode 100644 src/components/IconMarkunread.tsx create mode 100644 src/components/IconMarkunreadMailbox.tsx create mode 100644 src/components/IconMasks.tsx create mode 100644 src/components/IconMaximize.tsx create mode 100644 src/components/IconMediation.tsx create mode 100644 src/components/IconMedicalServices.tsx create mode 100644 src/components/IconMeetingRoom.tsx create mode 100644 src/components/IconMemory.tsx create mode 100644 src/components/IconMenu.tsx create mode 100644 src/components/IconMenuBook.tsx create mode 100644 src/components/IconMenuOpen.tsx create mode 100644 src/components/IconMergeType.tsx create mode 100644 src/components/IconMessage.tsx create mode 100644 src/components/IconMic.tsx create mode 100644 src/components/IconMicNone.tsx create mode 100644 src/components/IconMicOff.tsx create mode 100644 src/components/IconMicrowave.tsx create mode 100644 src/components/IconMilitaryTech.tsx create mode 100644 src/components/IconMinimize.tsx create mode 100644 src/components/IconMiscellaneousServices.tsx create mode 100644 src/components/IconMissedVideoCall.tsx create mode 100644 src/components/IconMms.tsx create mode 100644 src/components/IconMobileFriendly.tsx create mode 100644 src/components/IconMobileOff.tsx create mode 100644 src/components/IconMobileScreenShare.tsx create mode 100644 src/components/IconModeComment.tsx create mode 100644 src/components/IconModelTraining.tsx create mode 100644 src/components/IconMonetizationOn.tsx create mode 100644 src/components/IconMoney.tsx create mode 100644 src/components/IconMoneyOff.tsx create mode 100644 src/components/IconMonochromePhotos.tsx create mode 100644 src/components/IconMood.tsx create mode 100644 src/components/IconMoodBad.tsx create mode 100644 src/components/IconMoped.tsx create mode 100644 src/components/IconMore.tsx create mode 100644 src/components/IconMoreHoriz.tsx create mode 100644 src/components/IconMoreTime.tsx create mode 100644 src/components/IconMoreVert.tsx create mode 100644 src/components/IconMotionPhotosOn.tsx create mode 100644 src/components/IconMotionPhotosPause.tsx create mode 100644 src/components/IconMotionPhotosPaused.tsx create mode 100644 src/components/IconMouse.tsx create mode 100644 src/components/IconMoveToInbox.tsx create mode 100644 src/components/IconMovie.tsx create mode 100644 src/components/IconMovieCreation.tsx create mode 100644 src/components/IconMovieFilter.tsx create mode 100644 src/components/IconMultilineChart.tsx create mode 100644 src/components/IconMultipleStop.tsx create mode 100644 src/components/IconMuseum.tsx create mode 100644 src/components/IconMusicNote.tsx create mode 100644 src/components/IconMusicOff.tsx create mode 100644 src/components/IconMusicVideo.tsx create mode 100644 src/components/IconMyLocation.tsx create mode 100644 src/components/IconNat.tsx create mode 100644 src/components/IconNature.tsx create mode 100644 src/components/IconNaturePeople.tsx create mode 100644 src/components/IconNavigateBefore.tsx create mode 100644 src/components/IconNavigateNext.tsx create mode 100644 src/components/IconNavigation.tsx create mode 100644 src/components/IconNearMe.tsx create mode 100644 src/components/IconNearMeDisabled.tsx create mode 100644 src/components/IconNetworkCheck.tsx create mode 100644 src/components/IconNetworkLocked.tsx create mode 100644 src/components/IconNewReleases.tsx create mode 100644 src/components/IconNextPlan.tsx create mode 100644 src/components/IconNextWeek.tsx create mode 100644 src/components/IconNfc.tsx create mode 100644 src/components/IconNightShelter.tsx create mode 100644 src/components/IconNightsStay.tsx create mode 100644 src/components/IconNoBackpack.tsx create mode 100644 src/components/IconNoCell.tsx create mode 100644 src/components/IconNoDrinks.tsx create mode 100644 src/components/IconNoEncryption.tsx create mode 100644 src/components/IconNoFlash.tsx create mode 100644 src/components/IconNoFood.tsx create mode 100644 src/components/IconNoLuggage.tsx create mode 100644 src/components/IconNoMeals.tsx create mode 100644 src/components/IconNoMeetingRoom.tsx create mode 100644 src/components/IconNoPhotography.tsx create mode 100644 src/components/IconNoSim.tsx create mode 100644 src/components/IconNoStroller.tsx create mode 100644 src/components/IconNoTransfer.tsx create mode 100644 src/components/IconNorth.tsx create mode 100644 src/components/IconNorthEast.tsx create mode 100644 src/components/IconNorthWest.tsx create mode 100644 src/components/IconNotAccessible.tsx create mode 100644 src/components/IconNotInterested.tsx create mode 100644 src/components/IconNotListedLocation.tsx create mode 100644 src/components/IconNotStarted.tsx create mode 100644 src/components/IconNote.tsx create mode 100644 src/components/IconNoteAdd.tsx create mode 100644 src/components/IconNotes.tsx create mode 100644 src/components/IconNotificationImportant.tsx create mode 100644 src/components/IconNotifications.tsx create mode 100644 src/components/IconNotificationsActive.tsx create mode 100644 src/components/IconNotificationsNone.tsx create mode 100644 src/components/IconNotificationsOff.tsx create mode 100644 src/components/IconNotificationsPaused.tsx create mode 100644 src/components/IconOfflineBolt.tsx create mode 100644 src/components/IconOfflinePin.tsx create mode 100644 src/components/IconOndemandVideo.tsx create mode 100644 src/components/IconOnlinePrediction.tsx create mode 100644 src/components/IconOpacity.tsx create mode 100644 src/components/IconOpenInBrowser.tsx create mode 100644 src/components/IconOpenInFull.tsx create mode 100644 src/components/IconOpenInNew.tsx create mode 100644 src/components/IconOpenWith.tsx create mode 100644 src/components/IconOutbond.tsx create mode 100644 src/components/IconOutdoorGrill.tsx create mode 100644 src/components/IconOutlet.tsx create mode 100644 src/components/IconOutlinedFlag.tsx create mode 100644 src/components/IconPages.tsx create mode 100644 src/components/IconPageview.tsx create mode 100644 src/components/IconPalette.tsx create mode 100644 src/components/IconPanTool.tsx create mode 100644 src/components/IconPanorama.tsx create mode 100644 src/components/IconPanoramaFishEye.tsx create mode 100644 src/components/IconPanoramaHorizontal.tsx create mode 100644 src/components/IconPanoramaVertical.tsx create mode 100644 src/components/IconPanoramaWideAngle.tsx create mode 100644 src/components/IconPartyMode.tsx create mode 100644 src/components/IconPause.tsx create mode 100644 src/components/IconPauseCircleFilled.tsx create mode 100644 src/components/IconPauseCircleOutline.tsx create mode 100644 src/components/IconPausePresentation.tsx create mode 100644 src/components/IconPayment.tsx create mode 100644 src/components/IconPayments.tsx create mode 100644 src/components/IconPedalBike.tsx create mode 100644 src/components/IconPending.tsx create mode 100644 src/components/IconPendingActions.tsx create mode 100644 src/components/IconPeople.tsx create mode 100644 src/components/IconPeopleAlt.tsx create mode 100644 src/components/IconPeopleOutline.tsx create mode 100644 src/components/IconPermCameraMic.tsx create mode 100644 src/components/IconPermContactCalendar.tsx create mode 100644 src/components/IconPermDataSetting.tsx create mode 100644 src/components/IconPermDeviceInformation.tsx create mode 100644 src/components/IconPermIdentity.tsx create mode 100644 src/components/IconPermMedia.tsx create mode 100644 src/components/IconPermPhoneMsg.tsx create mode 100644 src/components/IconPermScanWifi.tsx create mode 100644 src/components/IconPerson.tsx create mode 100644 src/components/IconPersonAdd.tsx create mode 100644 src/components/IconPersonAddAlt1.tsx create mode 100644 src/components/IconPersonAddDisabled.tsx create mode 100644 src/components/IconPersonOutline.tsx create mode 100644 src/components/IconPersonPin.tsx create mode 100644 src/components/IconPersonPinCircle.tsx create mode 100644 src/components/IconPersonRemove.tsx create mode 100644 src/components/IconPersonRemoveAlt1.tsx create mode 100644 src/components/IconPersonSearch.tsx create mode 100644 src/components/IconPersonalVideo.tsx create mode 100644 src/components/IconPestControl.tsx create mode 100644 src/components/IconPestControlRodent.tsx create mode 100644 src/components/IconPets.tsx create mode 100644 src/components/IconPhone.tsx create mode 100644 src/components/IconPhoneAndroid.tsx create mode 100644 src/components/IconPhoneBluetoothSpeaker.tsx create mode 100644 src/components/IconPhoneCallback.tsx create mode 100644 src/components/IconPhoneDisabled.tsx create mode 100644 src/components/IconPhoneEnabled.tsx create mode 100644 src/components/IconPhoneForwarded.tsx create mode 100644 src/components/IconPhoneInTalk.tsx create mode 100644 src/components/IconPhoneIphone.tsx create mode 100644 src/components/IconPhoneLocked.tsx create mode 100644 src/components/IconPhoneMissed.tsx create mode 100644 src/components/IconPhonePaused.tsx create mode 100644 src/components/IconPhonelink.tsx create mode 100644 src/components/IconPhonelinkErase.tsx create mode 100644 src/components/IconPhonelinkLock.tsx create mode 100644 src/components/IconPhonelinkOff.tsx create mode 100644 src/components/IconPhonelinkRing.tsx create mode 100644 src/components/IconPhonelinkSetup.tsx create mode 100644 src/components/IconPhoto.tsx create mode 100644 src/components/IconPhotoAlbum.tsx create mode 100644 src/components/IconPhotoCamera.tsx create mode 100644 src/components/IconPhotoFilter.tsx create mode 100644 src/components/IconPhotoLibrary.tsx create mode 100644 src/components/IconPhotoSizeSelectActual.tsx create mode 100644 src/components/IconPhotoSizeSelectLarge.tsx create mode 100644 src/components/IconPhotoSizeSelectSmall.tsx create mode 100644 src/components/IconPictureAsPdf.tsx create mode 100644 src/components/IconPictureInPicture.tsx create mode 100644 src/components/IconPictureInPictureAlt.tsx create mode 100644 src/components/IconPieChart.tsx create mode 100644 src/components/IconPinDrop.tsx create mode 100644 src/components/IconPlace.tsx create mode 100644 src/components/IconPlagiarism.tsx create mode 100644 src/components/IconPlayArrow.tsx create mode 100644 src/components/IconPlayCircleFilled.tsx create mode 100644 src/components/IconPlayCircleOutline.tsx create mode 100644 src/components/IconPlayForWork.tsx create mode 100644 src/components/IconPlaylistAdd.tsx create mode 100644 src/components/IconPlaylistAddCheck.tsx create mode 100644 src/components/IconPlaylistPlay.tsx create mode 100644 src/components/IconPlumbing.tsx create mode 100644 src/components/IconPlusOne.tsx create mode 100644 src/components/IconPointOfSale.tsx create mode 100644 src/components/IconPolicy.tsx create mode 100644 src/components/IconPoll.tsx create mode 100644 src/components/IconPolymer.tsx create mode 100644 src/components/IconPool.tsx create mode 100644 src/components/IconPortableWifiOff.tsx create mode 100644 src/components/IconPortrait.tsx create mode 100644 src/components/IconPostAdd.tsx create mode 100644 src/components/IconPower.tsx create mode 100644 src/components/IconPowerInput.tsx create mode 100644 src/components/IconPowerOff.tsx create mode 100644 src/components/IconPowerSettingsNew.tsx create mode 100644 src/components/IconPregnantWoman.tsx create mode 100644 src/components/IconPresentToAll.tsx create mode 100644 src/components/IconPreview.tsx create mode 100644 src/components/IconPrint.tsx create mode 100644 src/components/IconPrintDisabled.tsx create mode 100644 src/components/IconPriorityHigh.tsx create mode 100644 src/components/IconPrivacyTip.tsx create mode 100644 src/components/IconPsychology.tsx create mode 100644 src/components/IconPublic.tsx create mode 100644 src/components/IconPublicOff.tsx create mode 100644 src/components/IconPublish.tsx create mode 100644 src/components/IconPublishedWithChanges.tsx create mode 100644 src/components/IconPushPin.tsx create mode 100644 src/components/IconQrCode.tsx create mode 100644 src/components/IconQrCode2.tsx create mode 100644 src/components/IconQrCodeScanner.tsx create mode 100644 src/components/IconQueryBuilder.tsx create mode 100644 src/components/IconQuestionAnswer.tsx create mode 100644 src/components/IconQueue.tsx create mode 100644 src/components/IconQueueMusic.tsx create mode 100644 src/components/IconQueuePlayNext.tsx create mode 100644 src/components/IconQuickreply.tsx create mode 100644 src/components/IconRadio.tsx create mode 100644 src/components/IconRadioButtonChecked.tsx create mode 100644 src/components/IconRadioButtonUnchecked.tsx create mode 100644 src/components/IconRateReview.tsx create mode 100644 src/components/IconReadMore.tsx create mode 100644 src/components/IconReceipt.tsx create mode 100644 src/components/IconReceiptLong.tsx create mode 100644 src/components/IconRecentActors.tsx create mode 100644 src/components/IconRecordVoiceOver.tsx create mode 100644 src/components/IconRedeem.tsx create mode 100644 src/components/IconRedo.tsx create mode 100644 src/components/IconReduceCapacity.tsx create mode 100644 src/components/IconRefresh.tsx create mode 100644 src/components/IconRemove.tsx create mode 100644 src/components/IconRemoveCircle.tsx create mode 100644 src/components/IconRemoveCircleOutline.tsx create mode 100644 src/components/IconRemoveFromQueue.tsx create mode 100644 src/components/IconRemoveRedEye.tsx create mode 100644 src/components/IconRemoveShoppingCart.tsx create mode 100644 src/components/IconReorder.tsx create mode 100644 src/components/IconRepeat.tsx create mode 100644 src/components/IconRepeatOne.tsx create mode 100644 src/components/IconReplay.tsx create mode 100644 src/components/IconReplay10.tsx create mode 100644 src/components/IconReplay30.tsx create mode 100644 src/components/IconReplay5.tsx create mode 100644 src/components/IconReply.tsx create mode 100644 src/components/IconReplyAll.tsx create mode 100644 src/components/IconReport.tsx create mode 100644 src/components/IconReportOff.tsx create mode 100644 src/components/IconReportProblem.tsx create mode 100644 src/components/IconRequestPage.tsx create mode 100644 src/components/IconRequestQuote.tsx create mode 100644 src/components/IconRestaurant.tsx create mode 100644 src/components/IconRestaurantMenu.tsx create mode 100644 src/components/IconRestore.tsx create mode 100644 src/components/IconRestoreFromTrash.tsx create mode 100644 src/components/IconRestorePage.tsx create mode 100644 src/components/IconRiceBowl.tsx create mode 100644 src/components/IconRingVolume.tsx create mode 100644 src/components/IconRoofing.tsx create mode 100644 src/components/IconRoom.tsx create mode 100644 src/components/IconRoomPreferences.tsx create mode 100644 src/components/IconRoomService.tsx create mode 100644 src/components/IconRotate90DegreesCcw.tsx create mode 100644 src/components/IconRotateLeft.tsx create mode 100644 src/components/IconRotateRight.tsx create mode 100644 src/components/IconRoundedCorner.tsx create mode 100644 src/components/IconRouter.tsx create mode 100644 src/components/IconRowing.tsx create mode 100644 src/components/IconRssFeed.tsx create mode 100644 src/components/IconRule.tsx create mode 100644 src/components/IconRuleFolder.tsx create mode 100644 src/components/IconRunCircle.tsx create mode 100644 src/components/IconRvHookup.tsx create mode 100644 src/components/IconSanitizer.tsx create mode 100644 src/components/IconSatellite.tsx create mode 100644 src/components/IconSave.tsx create mode 100644 src/components/IconSaveAlt.tsx create mode 100644 src/components/IconScanner.tsx create mode 100644 src/components/IconScatterPlot.tsx create mode 100644 src/components/IconSchedule.tsx create mode 100644 src/components/IconSchool.tsx create mode 100644 src/components/IconScience.tsx create mode 100644 src/components/IconScore.tsx create mode 100644 src/components/IconScreenLockLandscape.tsx create mode 100644 src/components/IconScreenLockPortrait.tsx create mode 100644 src/components/IconScreenLockRotation.tsx create mode 100644 src/components/IconScreenRotation.tsx create mode 100644 src/components/IconScreenShare.tsx create mode 100644 src/components/IconSdCard.tsx create mode 100644 src/components/IconSdStorage.tsx create mode 100644 src/components/IconSearch.tsx create mode 100644 src/components/IconSearchOff.tsx create mode 100644 src/components/IconSecurity.tsx create mode 100644 src/components/IconSelectAll.tsx create mode 100644 src/components/IconSelfImprovement.tsx create mode 100644 src/components/IconSend.tsx create mode 100644 src/components/IconSensorDoor.tsx create mode 100644 src/components/IconSensorWindow.tsx create mode 100644 src/components/IconSentimentDissatisfied.tsx create mode 100644 src/components/IconSentimentSatisfied.tsx create mode 100644 src/components/IconSentimentSatisfiedAlt.tsx create mode 100644 src/components/IconSentimentVeryDissatisfied.tsx create mode 100644 src/components/IconSentimentVerySatisfied.tsx create mode 100644 src/components/IconSetMeal.tsx create mode 100644 src/components/IconSettings.tsx create mode 100644 src/components/IconSettingsApplications.tsx create mode 100644 src/components/IconSettingsBackupRestore.tsx create mode 100644 src/components/IconSettingsBluetooth.tsx create mode 100644 src/components/IconSettingsBrightness.tsx create mode 100644 src/components/IconSettingsCell.tsx create mode 100644 src/components/IconSettingsEthernet.tsx create mode 100644 src/components/IconSettingsInputAntenna.tsx create mode 100644 src/components/IconSettingsInputComponent.tsx create mode 100644 src/components/IconSettingsInputComposite.tsx create mode 100644 src/components/IconSettingsInputHdmi.tsx create mode 100644 src/components/IconSettingsInputSvideo.tsx create mode 100644 src/components/IconSettingsOverscan.tsx create mode 100644 src/components/IconSettingsPhone.tsx create mode 100644 src/components/IconSettingsPower.tsx create mode 100644 src/components/IconSettingsRemote.tsx create mode 100644 src/components/IconSettingsSystemDaydream.tsx create mode 100644 src/components/IconSettingsVoice.tsx create mode 100644 src/components/IconShare.tsx create mode 100644 src/components/IconShop.tsx create mode 100644 src/components/IconShopTwo.tsx create mode 100644 src/components/IconShoppingBag.tsx create mode 100644 src/components/IconShoppingBasket.tsx create mode 100644 src/components/IconShoppingCart.tsx create mode 100644 src/components/IconShortText.tsx create mode 100644 src/components/IconShowChart.tsx create mode 100644 src/components/IconShuffle.tsx create mode 100644 src/components/IconShutterSpeed.tsx create mode 100644 src/components/IconSick.tsx create mode 100644 src/components/IconSignalCellular4Bar.tsx create mode 100644 src/components/IconSignalCellularAlt.tsx create mode 100644 src/components/IconSignalCellularConnectedNoInternet4Bar.tsx create mode 100644 src/components/IconSignalCellularNoSim.tsx create mode 100644 src/components/IconSignalCellularNull.tsx create mode 100644 src/components/IconSignalCellularOff.tsx create mode 100644 src/components/IconSignalWifi4Bar.tsx create mode 100644 src/components/IconSignalWifi4BarLock.tsx create mode 100644 src/components/IconSignalWifiOff.tsx create mode 100644 src/components/IconSimCard.tsx create mode 100644 src/components/IconSingleBed.tsx create mode 100644 src/components/IconSkipNext.tsx create mode 100644 src/components/IconSkipPrevious.tsx create mode 100644 src/components/IconSlideshow.tsx create mode 100644 src/components/IconSlowMotionVideo.tsx create mode 100644 src/components/IconSmartButton.tsx create mode 100644 src/components/IconSmartphone.tsx create mode 100644 src/components/IconSmokeFree.tsx create mode 100644 src/components/IconSmokingRooms.tsx create mode 100644 src/components/IconSms.tsx create mode 100644 src/components/IconSmsFailed.tsx create mode 100644 src/components/IconSnippetFolder.tsx create mode 100644 src/components/IconSnooze.tsx create mode 100644 src/components/IconSoap.tsx create mode 100644 src/components/IconSort.tsx create mode 100644 src/components/IconSortByAlpha.tsx create mode 100644 src/components/IconSource.tsx create mode 100644 src/components/IconSouth.tsx create mode 100644 src/components/IconSouthEast.tsx create mode 100644 src/components/IconSouthWest.tsx create mode 100644 src/components/IconSpa.tsx create mode 100644 src/components/IconSpaceBar.tsx create mode 100644 src/components/IconSpeaker.tsx create mode 100644 src/components/IconSpeakerGroup.tsx create mode 100644 src/components/IconSpeakerNotes.tsx create mode 100644 src/components/IconSpeakerNotesOff.tsx create mode 100644 src/components/IconSpeakerPhone.tsx create mode 100644 src/components/IconSpeed.tsx create mode 100644 src/components/IconSpellcheck.tsx create mode 100644 src/components/IconSports.tsx create mode 100644 src/components/IconSportsBar.tsx create mode 100644 src/components/IconSportsBaseball.tsx create mode 100644 src/components/IconSportsBasketball.tsx create mode 100644 src/components/IconSportsCricket.tsx create mode 100644 src/components/IconSportsEsports.tsx create mode 100644 src/components/IconSportsFootball.tsx create mode 100644 src/components/IconSportsGolf.tsx create mode 100644 src/components/IconSportsHandball.tsx create mode 100644 src/components/IconSportsHockey.tsx create mode 100644 src/components/IconSportsKabaddi.tsx create mode 100644 src/components/IconSportsMma.tsx create mode 100644 src/components/IconSportsMotorsports.tsx create mode 100644 src/components/IconSportsRugby.tsx create mode 100644 src/components/IconSportsSoccer.tsx create mode 100644 src/components/IconSportsTennis.tsx create mode 100644 src/components/IconSportsVolleyball.tsx create mode 100644 src/components/IconSquareFoot.tsx create mode 100644 src/components/IconStackedLineChart.tsx create mode 100644 src/components/IconStairs.tsx create mode 100644 src/components/IconStar.tsx create mode 100644 src/components/IconStarBorder.tsx create mode 100644 src/components/IconStarHalf.tsx create mode 100644 src/components/IconStarOutline.tsx create mode 100644 src/components/IconStarRate.tsx create mode 100644 src/components/IconStars.tsx create mode 100644 src/components/IconStayCurrentLandscape.tsx create mode 100644 src/components/IconStayCurrentPortrait.tsx create mode 100644 src/components/IconStayPrimaryLandscape.tsx create mode 100644 src/components/IconStayPrimaryPortrait.tsx create mode 100644 src/components/IconStickyNote2.tsx create mode 100644 src/components/IconStop.tsx create mode 100644 src/components/IconStopCircle.tsx create mode 100644 src/components/IconStopScreenShare.tsx create mode 100644 src/components/IconStorage.tsx create mode 100644 src/components/IconStore.tsx create mode 100644 src/components/IconStoreMallDirectory.tsx create mode 100644 src/components/IconStorefront.tsx create mode 100644 src/components/IconStraighten.tsx create mode 100644 src/components/IconStreetview.tsx create mode 100644 src/components/IconStrikethroughS.tsx create mode 100644 src/components/IconStroller.tsx create mode 100644 src/components/IconStyle.tsx create mode 100644 src/components/IconSubdirectoryArrowLeft.tsx create mode 100644 src/components/IconSubdirectoryArrowRight.tsx create mode 100644 src/components/IconSubject.tsx create mode 100644 src/components/IconSubscript.tsx create mode 100644 src/components/IconSubscriptions.tsx create mode 100644 src/components/IconSubtitles.tsx create mode 100644 src/components/IconSubtitlesOff.tsx create mode 100644 src/components/IconSubway.tsx create mode 100644 src/components/IconSuperscript.tsx create mode 100644 src/components/IconSupervisedUserCircle.tsx create mode 100644 src/components/IconSupervisorAccount.tsx create mode 100644 src/components/IconSupport.tsx create mode 100644 src/components/IconSupportAgent.tsx create mode 100644 src/components/IconSurroundSound.tsx create mode 100644 src/components/IconSwapCalls.tsx create mode 100644 src/components/IconSwapHoriz.tsx create mode 100644 src/components/IconSwapHorizontalCircle.tsx create mode 100644 src/components/IconSwapVert.tsx create mode 100644 src/components/IconSwapVerticalCircle.tsx create mode 100644 src/components/IconSwitchCamera.tsx create mode 100644 src/components/IconSwitchLeft.tsx create mode 100644 src/components/IconSwitchRight.tsx create mode 100644 src/components/IconSwitchVideo.tsx create mode 100644 src/components/IconSync.tsx create mode 100644 src/components/IconSyncAlt.tsx create mode 100644 src/components/IconSyncDisabled.tsx create mode 100644 src/components/IconSyncProblem.tsx create mode 100644 src/components/IconSystemUpdate.tsx create mode 100644 src/components/IconSystemUpdateAlt.tsx create mode 100644 src/components/IconTab.tsx create mode 100644 src/components/IconTabUnselected.tsx create mode 100644 src/components/IconTableChart.tsx create mode 100644 src/components/IconTableRows.tsx create mode 100644 src/components/IconTableView.tsx create mode 100644 src/components/IconTablet.tsx create mode 100644 src/components/IconTabletAndroid.tsx create mode 100644 src/components/IconTabletMac.tsx create mode 100644 src/components/IconTagFaces.tsx create mode 100644 src/components/IconTapAndPlay.tsx create mode 100644 src/components/IconTapas.tsx create mode 100644 src/components/IconTerrain.tsx create mode 100644 src/components/IconTextFields.tsx create mode 100644 src/components/IconTextFormat.tsx create mode 100644 src/components/IconTextRotateUp.tsx create mode 100644 src/components/IconTextRotateVertical.tsx create mode 100644 src/components/IconTextRotationAngledown.tsx create mode 100644 src/components/IconTextRotationAngleup.tsx create mode 100644 src/components/IconTextRotationDown.tsx create mode 100644 src/components/IconTextRotationNone.tsx create mode 100644 src/components/IconTextSnippet.tsx create mode 100644 src/components/IconTextsms.tsx create mode 100644 src/components/IconTexture.tsx create mode 100644 src/components/IconTheaters.tsx create mode 100644 src/components/IconThumbDown.tsx create mode 100644 src/components/IconThumbDownAlt.tsx create mode 100644 src/components/IconThumbUp.tsx create mode 100644 src/components/IconThumbUpAlt.tsx create mode 100644 src/components/IconThumbsUpDown.tsx create mode 100644 src/components/IconTimeToLeave.tsx create mode 100644 src/components/IconTimelapse.tsx create mode 100644 src/components/IconTimeline.tsx create mode 100644 src/components/IconTimer.tsx create mode 100644 src/components/IconTimer10.tsx create mode 100644 src/components/IconTimer3.tsx create mode 100644 src/components/IconTimerOff.tsx create mode 100644 src/components/IconTitle.tsx create mode 100644 src/components/IconToc.tsx create mode 100644 src/components/IconToday.tsx create mode 100644 src/components/IconToggleOff.tsx create mode 100644 src/components/IconToggleOn.tsx create mode 100644 src/components/IconToll.tsx create mode 100644 src/components/IconTonality.tsx create mode 100644 src/components/IconTopic.tsx create mode 100644 src/components/IconTouchApp.tsx create mode 100644 src/components/IconTour.tsx create mode 100644 src/components/IconToys.tsx create mode 100644 src/components/IconTrackChanges.tsx create mode 100644 src/components/IconTraffic.tsx create mode 100644 src/components/IconTrain.tsx create mode 100644 src/components/IconTram.tsx create mode 100644 src/components/IconTransferWithinAStation.tsx create mode 100644 src/components/IconTransform.tsx create mode 100644 src/components/IconTransitEnterexit.tsx create mode 100644 src/components/IconTranslate.tsx create mode 100644 src/components/IconTrendingDown.tsx create mode 100644 src/components/IconTrendingFlat.tsx create mode 100644 src/components/IconTrendingUp.tsx create mode 100644 src/components/IconTripOrigin.tsx create mode 100644 src/components/IconTty.tsx create mode 100644 src/components/IconTune.tsx create mode 100644 src/components/IconTurnedIn.tsx create mode 100644 src/components/IconTurnedInNot.tsx create mode 100644 src/components/IconTv.tsx create mode 100644 src/components/IconTvOff.tsx create mode 100644 src/components/IconTwoWheeler.tsx create mode 100644 src/components/IconUmbrella.tsx create mode 100644 src/components/IconUnarchive.tsx create mode 100644 src/components/IconUndo.tsx create mode 100644 src/components/IconUnfoldLess.tsx create mode 100644 src/components/IconUnfoldMore.tsx create mode 100644 src/components/IconUnpublished.tsx create mode 100644 src/components/IconUnsubscribe.tsx create mode 100644 src/components/IconUpdate.tsx create mode 100644 src/components/IconUpdateDisabled.tsx create mode 100644 src/components/IconUpgrade.tsx create mode 100644 src/components/IconUsb.tsx create mode 100644 src/components/IconVerified.tsx create mode 100644 src/components/IconVerifiedUser.tsx create mode 100644 src/components/IconVerticalAlignBottom.tsx create mode 100644 src/components/IconVerticalAlignCenter.tsx create mode 100644 src/components/IconVerticalAlignTop.tsx create mode 100644 src/components/IconVerticalDistribute.tsx create mode 100644 src/components/IconVerticalSplit.tsx create mode 100644 src/components/IconVibration.tsx create mode 100644 src/components/IconVideoCall.tsx create mode 100644 src/components/IconVideoLabel.tsx create mode 100644 src/components/IconVideoLibrary.tsx create mode 100644 src/components/IconVideoSettings.tsx create mode 100644 src/components/IconVideocam.tsx create mode 100644 src/components/IconVideocamOff.tsx create mode 100644 src/components/IconVideogameAsset.tsx create mode 100644 src/components/IconViewAgenda.tsx create mode 100644 src/components/IconViewArray.tsx create mode 100644 src/components/IconViewCarousel.tsx create mode 100644 src/components/IconViewColumn.tsx create mode 100644 src/components/IconViewComfy.tsx create mode 100644 src/components/IconViewCompact.tsx create mode 100644 src/components/IconViewDay.tsx create mode 100644 src/components/IconViewHeadline.tsx create mode 100644 src/components/IconViewList.tsx create mode 100644 src/components/IconViewModule.tsx create mode 100644 src/components/IconViewQuilt.tsx create mode 100644 src/components/IconViewSidebar.tsx create mode 100644 src/components/IconViewStream.tsx create mode 100644 src/components/IconViewWeek.tsx create mode 100644 src/components/IconVignette.tsx create mode 100644 src/components/IconVisibility.tsx create mode 100644 src/components/IconVisibilityOff.tsx create mode 100644 src/components/IconVoiceChat.tsx create mode 100644 src/components/IconVoiceOverOff.tsx create mode 100644 src/components/IconVoicemail.tsx create mode 100644 src/components/IconVolumeDown.tsx create mode 100644 src/components/IconVolumeMute.tsx create mode 100644 src/components/IconVolumeOff.tsx create mode 100644 src/components/IconVolumeUp.tsx create mode 100644 src/components/IconVpnKey.tsx create mode 100644 src/components/IconVpnLock.tsx create mode 100644 src/components/IconWallpaper.tsx create mode 100644 src/components/IconWarning.tsx create mode 100644 src/components/IconWash.tsx create mode 100644 src/components/IconWatch.tsx create mode 100644 src/components/IconWatchLater.tsx create mode 100644 src/components/IconWaterDamage.tsx create mode 100644 src/components/IconWaves.tsx create mode 100644 src/components/IconWbAuto.tsx create mode 100644 src/components/IconWbCloudy.tsx create mode 100644 src/components/IconWbIncandescent.tsx create mode 100644 src/components/IconWbIridescent.tsx create mode 100644 src/components/IconWbSunny.tsx create mode 100644 src/components/IconWc.tsx create mode 100644 src/components/IconWeb.tsx create mode 100644 src/components/IconWebAsset.tsx create mode 100644 src/components/IconWeekend.tsx create mode 100644 src/components/IconWest.tsx create mode 100644 src/components/IconWhatshot.tsx create mode 100644 src/components/IconWheelchairPickup.tsx create mode 100644 src/components/IconWhereToVote.tsx create mode 100644 src/components/IconWidgets.tsx create mode 100644 src/components/IconWifi.tsx create mode 100644 src/components/IconWifiCalling.tsx create mode 100644 src/components/IconWifiLock.tsx create mode 100644 src/components/IconWifiOff.tsx create mode 100644 src/components/IconWifiProtectedSetup.tsx create mode 100644 src/components/IconWifiTethering.tsx create mode 100644 src/components/IconWineBar.tsx create mode 100644 src/components/IconWork.tsx create mode 100644 src/components/IconWorkOff.tsx create mode 100644 src/components/IconWorkOutline.tsx create mode 100644 src/components/IconWrapText.tsx create mode 100644 src/components/IconWrongLocation.tsx create mode 100644 src/components/IconWysiwyg.tsx create mode 100644 src/components/IconYoutubeSearchedFor.tsx create mode 100644 src/components/IconZoomIn.tsx create mode 100644 src/components/IconZoomOut.tsx create mode 100644 src/components/IconZoomOutMap.tsx diff --git a/src/components/Icon360.tsx b/src/components/Icon360.tsx new file mode 100644 index 000000000..6cf3a9d6f --- /dev/null +++ b/src/components/Icon360.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const Icon360: React.FC = (props: IconProps): any => ( + + + + +) + +export { Icon360 } diff --git a/src/components/Icon3dRotation.tsx b/src/components/Icon3dRotation.tsx new file mode 100644 index 000000000..731ba46db --- /dev/null +++ b/src/components/Icon3dRotation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const Icon3dRotation: React.FC = (props: IconProps): any => ( + + + + +) + +export { Icon3dRotation } diff --git a/src/components/Icon4k.tsx b/src/components/Icon4k.tsx new file mode 100644 index 000000000..0da8d0ef8 --- /dev/null +++ b/src/components/Icon4k.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const Icon4k: React.FC = (props: IconProps): any => ( + + + + +) + +export { Icon4k } diff --git a/src/components/Icon5g.tsx b/src/components/Icon5g.tsx new file mode 100644 index 000000000..51674ce16 --- /dev/null +++ b/src/components/Icon5g.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const Icon5g: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { Icon5g } diff --git a/src/components/Icon6FtApart.tsx b/src/components/Icon6FtApart.tsx new file mode 100644 index 000000000..093b38eb3 --- /dev/null +++ b/src/components/Icon6FtApart.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const Icon6FtApart: React.FC = (props: IconProps): any => ( + + + + +) + +export { Icon6FtApart } diff --git a/src/components/IconAcUnit.tsx b/src/components/IconAcUnit.tsx new file mode 100644 index 000000000..ce9003cf5 --- /dev/null +++ b/src/components/IconAcUnit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAcUnit: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAcUnit } diff --git a/src/components/IconAccessAlarm.tsx b/src/components/IconAccessAlarm.tsx new file mode 100644 index 000000000..22b84bce1 --- /dev/null +++ b/src/components/IconAccessAlarm.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccessAlarm: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAccessAlarm } diff --git a/src/components/IconAccessAlarms.tsx b/src/components/IconAccessAlarms.tsx new file mode 100644 index 000000000..a7979e8a3 --- /dev/null +++ b/src/components/IconAccessAlarms.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccessAlarms: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAccessAlarms } diff --git a/src/components/IconAccessTime.tsx b/src/components/IconAccessTime.tsx new file mode 100644 index 000000000..b3eb8a360 --- /dev/null +++ b/src/components/IconAccessTime.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccessTime: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconAccessTime } diff --git a/src/components/IconAccessibility.tsx b/src/components/IconAccessibility.tsx new file mode 100644 index 000000000..737250168 --- /dev/null +++ b/src/components/IconAccessibility.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccessibility: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAccessibility } diff --git a/src/components/IconAccessibilityNew.tsx b/src/components/IconAccessibilityNew.tsx new file mode 100644 index 000000000..71c878970 --- /dev/null +++ b/src/components/IconAccessibilityNew.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccessibilityNew: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAccessibilityNew } diff --git a/src/components/IconAccessible.tsx b/src/components/IconAccessible.tsx new file mode 100644 index 000000000..7afd0e4c3 --- /dev/null +++ b/src/components/IconAccessible.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccessible: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconAccessible } diff --git a/src/components/IconAccessibleForward.tsx b/src/components/IconAccessibleForward.tsx new file mode 100644 index 000000000..17974e120 --- /dev/null +++ b/src/components/IconAccessibleForward.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccessibleForward: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconAccessibleForward } diff --git a/src/components/IconAccountBalance.tsx b/src/components/IconAccountBalance.tsx new file mode 100644 index 000000000..160a2c28f --- /dev/null +++ b/src/components/IconAccountBalance.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccountBalance: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + +) + +export { IconAccountBalance } diff --git a/src/components/IconAccountBalanceWallet.tsx b/src/components/IconAccountBalanceWallet.tsx new file mode 100644 index 000000000..fca30d6a3 --- /dev/null +++ b/src/components/IconAccountBalanceWallet.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccountBalanceWallet: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconAccountBalanceWallet } diff --git a/src/components/IconAccountBox.tsx b/src/components/IconAccountBox.tsx new file mode 100644 index 000000000..59cb2a1d7 --- /dev/null +++ b/src/components/IconAccountBox.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccountBox: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAccountBox } diff --git a/src/components/IconAccountCircle.tsx b/src/components/IconAccountCircle.tsx new file mode 100644 index 000000000..f24effaae --- /dev/null +++ b/src/components/IconAccountCircle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccountCircle: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAccountCircle } diff --git a/src/components/IconAccountTree.tsx b/src/components/IconAccountTree.tsx new file mode 100644 index 000000000..760aa71ea --- /dev/null +++ b/src/components/IconAccountTree.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAccountTree: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAccountTree } diff --git a/src/components/IconAdUnits.tsx b/src/components/IconAdUnits.tsx new file mode 100644 index 000000000..6c484ee1b --- /dev/null +++ b/src/components/IconAdUnits.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAdUnits: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAdUnits } diff --git a/src/components/IconAdb.tsx b/src/components/IconAdb.tsx new file mode 100644 index 000000000..bfa7b5b4b --- /dev/null +++ b/src/components/IconAdb.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAdb: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAdb } diff --git a/src/components/IconAdd.tsx b/src/components/IconAdd.tsx new file mode 100644 index 000000000..0d28542a1 --- /dev/null +++ b/src/components/IconAdd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAdd: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAdd } diff --git a/src/components/IconAddAPhoto.tsx b/src/components/IconAddAPhoto.tsx new file mode 100644 index 000000000..4400c500e --- /dev/null +++ b/src/components/IconAddAPhoto.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddAPhoto: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAddAPhoto } diff --git a/src/components/IconAddAlarm.tsx b/src/components/IconAddAlarm.tsx new file mode 100644 index 000000000..27c510c42 --- /dev/null +++ b/src/components/IconAddAlarm.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddAlarm: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAddAlarm } diff --git a/src/components/IconAddAlert.tsx b/src/components/IconAddAlert.tsx new file mode 100644 index 000000000..dbffc0468 --- /dev/null +++ b/src/components/IconAddAlert.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddAlert: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAddAlert } diff --git a/src/components/IconAddBox.tsx b/src/components/IconAddBox.tsx new file mode 100644 index 000000000..6f05f2e8d --- /dev/null +++ b/src/components/IconAddBox.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddBox: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAddBox } diff --git a/src/components/IconAddBusiness.tsx b/src/components/IconAddBusiness.tsx new file mode 100644 index 000000000..76655f88b --- /dev/null +++ b/src/components/IconAddBusiness.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddBusiness: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconAddBusiness } diff --git a/src/components/IconAddCircle.tsx b/src/components/IconAddCircle.tsx new file mode 100644 index 000000000..f1bdfd2d1 --- /dev/null +++ b/src/components/IconAddCircle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddCircle: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAddCircle } diff --git a/src/components/IconAddCircleOutline.tsx b/src/components/IconAddCircleOutline.tsx new file mode 100644 index 000000000..0f8692942 --- /dev/null +++ b/src/components/IconAddCircleOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddCircleOutline: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAddCircleOutline } diff --git a/src/components/IconAddComment.tsx b/src/components/IconAddComment.tsx new file mode 100644 index 000000000..729e81d2a --- /dev/null +++ b/src/components/IconAddComment.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddComment: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAddComment } diff --git a/src/components/IconAddIcCall.tsx b/src/components/IconAddIcCall.tsx new file mode 100644 index 000000000..314e8def0 --- /dev/null +++ b/src/components/IconAddIcCall.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddIcCall: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAddIcCall } diff --git a/src/components/IconAddLocation.tsx b/src/components/IconAddLocation.tsx new file mode 100644 index 000000000..518886e94 --- /dev/null +++ b/src/components/IconAddLocation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddLocation: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAddLocation } diff --git a/src/components/IconAddLocationAlt.tsx b/src/components/IconAddLocationAlt.tsx new file mode 100644 index 000000000..a671bd169 --- /dev/null +++ b/src/components/IconAddLocationAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddLocationAlt: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAddLocationAlt } diff --git a/src/components/IconAddPhotoAlternate.tsx b/src/components/IconAddPhotoAlternate.tsx new file mode 100644 index 000000000..21fd966d5 --- /dev/null +++ b/src/components/IconAddPhotoAlternate.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddPhotoAlternate: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAddPhotoAlternate } diff --git a/src/components/IconAddRoad.tsx b/src/components/IconAddRoad.tsx new file mode 100644 index 000000000..fb50f5aaa --- /dev/null +++ b/src/components/IconAddRoad.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddRoad: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + +) + +export { IconAddRoad } diff --git a/src/components/IconAddShoppingCart.tsx b/src/components/IconAddShoppingCart.tsx new file mode 100644 index 000000000..09b70f10b --- /dev/null +++ b/src/components/IconAddShoppingCart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddShoppingCart: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAddShoppingCart } diff --git a/src/components/IconAddTask.tsx b/src/components/IconAddTask.tsx new file mode 100644 index 000000000..41ff728a1 --- /dev/null +++ b/src/components/IconAddTask.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddTask: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAddTask } diff --git a/src/components/IconAddToHomeScreen.tsx b/src/components/IconAddToHomeScreen.tsx new file mode 100644 index 000000000..a3556b3ce --- /dev/null +++ b/src/components/IconAddToHomeScreen.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddToHomeScreen: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconAddToHomeScreen } diff --git a/src/components/IconAddToPhotos.tsx b/src/components/IconAddToPhotos.tsx new file mode 100644 index 000000000..cc54cba22 --- /dev/null +++ b/src/components/IconAddToPhotos.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddToPhotos: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAddToPhotos } diff --git a/src/components/IconAddToQueue.tsx b/src/components/IconAddToQueue.tsx new file mode 100644 index 000000000..1a29a1b41 --- /dev/null +++ b/src/components/IconAddToQueue.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddToQueue: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAddToQueue } diff --git a/src/components/IconAddchart.tsx b/src/components/IconAddchart.tsx new file mode 100644 index 000000000..2650cab14 --- /dev/null +++ b/src/components/IconAddchart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAddchart: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAddchart } diff --git a/src/components/IconAdjust.tsx b/src/components/IconAdjust.tsx new file mode 100644 index 000000000..4faaf64df --- /dev/null +++ b/src/components/IconAdjust.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAdjust: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAdjust } diff --git a/src/components/IconAdminPanelSettings.tsx b/src/components/IconAdminPanelSettings.tsx new file mode 100644 index 000000000..41eb85b14 --- /dev/null +++ b/src/components/IconAdminPanelSettings.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconAdminPanelSettings: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconAdminPanelSettings } diff --git a/src/components/IconAgriculture.tsx b/src/components/IconAgriculture.tsx new file mode 100644 index 000000000..4b03bfe93 --- /dev/null +++ b/src/components/IconAgriculture.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconAgriculture: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + +) + +export { IconAgriculture } diff --git a/src/components/IconAirlineSeatFlat.tsx b/src/components/IconAirlineSeatFlat.tsx new file mode 100644 index 000000000..9f1fb0354 --- /dev/null +++ b/src/components/IconAirlineSeatFlat.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirlineSeatFlat: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAirlineSeatFlat } diff --git a/src/components/IconAirlineSeatFlatAngled.tsx b/src/components/IconAirlineSeatFlatAngled.tsx new file mode 100644 index 000000000..a9765805e --- /dev/null +++ b/src/components/IconAirlineSeatFlatAngled.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirlineSeatFlatAngled: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconAirlineSeatFlatAngled } diff --git a/src/components/IconAirlineSeatIndividualSuite.tsx b/src/components/IconAirlineSeatIndividualSuite.tsx new file mode 100644 index 000000000..dd8427ba5 --- /dev/null +++ b/src/components/IconAirlineSeatIndividualSuite.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirlineSeatIndividualSuite: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconAirlineSeatIndividualSuite } diff --git a/src/components/IconAirlineSeatLegroomExtra.tsx b/src/components/IconAirlineSeatLegroomExtra.tsx new file mode 100644 index 000000000..f5307d24f --- /dev/null +++ b/src/components/IconAirlineSeatLegroomExtra.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirlineSeatLegroomExtra: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconAirlineSeatLegroomExtra } diff --git a/src/components/IconAirlineSeatLegroomNormal.tsx b/src/components/IconAirlineSeatLegroomNormal.tsx new file mode 100644 index 000000000..2fb02e35d --- /dev/null +++ b/src/components/IconAirlineSeatLegroomNormal.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirlineSeatLegroomNormal: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconAirlineSeatLegroomNormal } diff --git a/src/components/IconAirlineSeatLegroomReduced.tsx b/src/components/IconAirlineSeatLegroomReduced.tsx new file mode 100644 index 000000000..eb0366c23 --- /dev/null +++ b/src/components/IconAirlineSeatLegroomReduced.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirlineSeatLegroomReduced: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconAirlineSeatLegroomReduced } diff --git a/src/components/IconAirlineSeatReclineExtra.tsx b/src/components/IconAirlineSeatReclineExtra.tsx new file mode 100644 index 000000000..a4459e886 --- /dev/null +++ b/src/components/IconAirlineSeatReclineExtra.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirlineSeatReclineExtra: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconAirlineSeatReclineExtra } diff --git a/src/components/IconAirlineSeatReclineNormal.tsx b/src/components/IconAirlineSeatReclineNormal.tsx new file mode 100644 index 000000000..bf8b6df04 --- /dev/null +++ b/src/components/IconAirlineSeatReclineNormal.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirlineSeatReclineNormal: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconAirlineSeatReclineNormal } diff --git a/src/components/IconAirplanemodeActive.tsx b/src/components/IconAirplanemodeActive.tsx new file mode 100644 index 000000000..1c87c6be0 --- /dev/null +++ b/src/components/IconAirplanemodeActive.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirplanemodeActive: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconAirplanemodeActive } diff --git a/src/components/IconAirplanemodeInactive.tsx b/src/components/IconAirplanemodeInactive.tsx new file mode 100644 index 000000000..5dbf21d43 --- /dev/null +++ b/src/components/IconAirplanemodeInactive.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirplanemodeInactive: React.FC = ( + props: IconProps +): any => ( + + + + + + +) + +export { IconAirplanemodeInactive } diff --git a/src/components/IconAirplay.tsx b/src/components/IconAirplay.tsx new file mode 100644 index 000000000..879677014 --- /dev/null +++ b/src/components/IconAirplay.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirplay: React.FC = (props: IconProps): any => ( + + + + + + + +) + +export { IconAirplay } diff --git a/src/components/IconAirportShuttle.tsx b/src/components/IconAirportShuttle.tsx new file mode 100644 index 000000000..fa9a89543 --- /dev/null +++ b/src/components/IconAirportShuttle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAirportShuttle: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAirportShuttle } diff --git a/src/components/IconAlarm.tsx b/src/components/IconAlarm.tsx new file mode 100644 index 000000000..dfb36e3ea --- /dev/null +++ b/src/components/IconAlarm.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlarm: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAlarm } diff --git a/src/components/IconAlarmAdd.tsx b/src/components/IconAlarmAdd.tsx new file mode 100644 index 000000000..e832813c1 --- /dev/null +++ b/src/components/IconAlarmAdd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlarmAdd: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAlarmAdd } diff --git a/src/components/IconAlarmOff.tsx b/src/components/IconAlarmOff.tsx new file mode 100644 index 000000000..26cb6bddb --- /dev/null +++ b/src/components/IconAlarmOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlarmOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAlarmOff } diff --git a/src/components/IconAlarmOn.tsx b/src/components/IconAlarmOn.tsx new file mode 100644 index 000000000..e223a4760 --- /dev/null +++ b/src/components/IconAlarmOn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlarmOn: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAlarmOn } diff --git a/src/components/IconAlbum.tsx b/src/components/IconAlbum.tsx new file mode 100644 index 000000000..0f7d9fbd6 --- /dev/null +++ b/src/components/IconAlbum.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlbum: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAlbum } diff --git a/src/components/IconAlignHorizontalCenter.tsx b/src/components/IconAlignHorizontalCenter.tsx new file mode 100644 index 000000000..69d3cc604 --- /dev/null +++ b/src/components/IconAlignHorizontalCenter.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlignHorizontalCenter: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconAlignHorizontalCenter } diff --git a/src/components/IconAlignHorizontalLeft.tsx b/src/components/IconAlignHorizontalLeft.tsx new file mode 100644 index 000000000..da1a173d0 --- /dev/null +++ b/src/components/IconAlignHorizontalLeft.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlignHorizontalLeft: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconAlignHorizontalLeft } diff --git a/src/components/IconAlignHorizontalRight.tsx b/src/components/IconAlignHorizontalRight.tsx new file mode 100644 index 000000000..912fc894d --- /dev/null +++ b/src/components/IconAlignHorizontalRight.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlignHorizontalRight: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconAlignHorizontalRight } diff --git a/src/components/IconAlignVerticalBottom.tsx b/src/components/IconAlignVerticalBottom.tsx new file mode 100644 index 000000000..2b1243dc3 --- /dev/null +++ b/src/components/IconAlignVerticalBottom.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlignVerticalBottom: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconAlignVerticalBottom } diff --git a/src/components/IconAlignVerticalCenter.tsx b/src/components/IconAlignVerticalCenter.tsx new file mode 100644 index 000000000..64cf83ae0 --- /dev/null +++ b/src/components/IconAlignVerticalCenter.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlignVerticalCenter: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconAlignVerticalCenter } diff --git a/src/components/IconAlignVerticalTop.tsx b/src/components/IconAlignVerticalTop.tsx new file mode 100644 index 000000000..12a4f3e67 --- /dev/null +++ b/src/components/IconAlignVerticalTop.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlignVerticalTop: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAlignVerticalTop } diff --git a/src/components/IconAllInbox.tsx b/src/components/IconAllInbox.tsx new file mode 100644 index 000000000..3bfebd5bd --- /dev/null +++ b/src/components/IconAllInbox.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAllInbox: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAllInbox } diff --git a/src/components/IconAllInclusive.tsx b/src/components/IconAllInclusive.tsx new file mode 100644 index 000000000..d6044f316 --- /dev/null +++ b/src/components/IconAllInclusive.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAllInclusive: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAllInclusive } diff --git a/src/components/IconAllOut.tsx b/src/components/IconAllOut.tsx new file mode 100644 index 000000000..d6d1f17c1 --- /dev/null +++ b/src/components/IconAllOut.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAllOut: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAllOut } diff --git a/src/components/IconAltRoute.tsx b/src/components/IconAltRoute.tsx new file mode 100644 index 000000000..010424061 --- /dev/null +++ b/src/components/IconAltRoute.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconAltRoute: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconAltRoute } diff --git a/src/components/IconAlternateEmail.tsx b/src/components/IconAlternateEmail.tsx new file mode 100644 index 000000000..106f9cde8 --- /dev/null +++ b/src/components/IconAlternateEmail.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAlternateEmail: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAlternateEmail } diff --git a/src/components/IconAmpStories.tsx b/src/components/IconAmpStories.tsx new file mode 100644 index 000000000..a1aded8c6 --- /dev/null +++ b/src/components/IconAmpStories.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconAmpStories: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + +) + +export { IconAmpStories } diff --git a/src/components/IconAnalytics.tsx b/src/components/IconAnalytics.tsx new file mode 100644 index 000000000..e836c8f3e --- /dev/null +++ b/src/components/IconAnalytics.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAnalytics: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAnalytics } diff --git a/src/components/IconAnchor.tsx b/src/components/IconAnchor.tsx new file mode 100644 index 000000000..f4d5ce3b7 --- /dev/null +++ b/src/components/IconAnchor.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconAnchor: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconAnchor } diff --git a/src/components/IconAndroid.tsx b/src/components/IconAndroid.tsx new file mode 100644 index 000000000..f968065b3 --- /dev/null +++ b/src/components/IconAndroid.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconAndroid: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconAndroid } diff --git a/src/components/IconAnnouncement.tsx b/src/components/IconAnnouncement.tsx new file mode 100644 index 000000000..12892aa60 --- /dev/null +++ b/src/components/IconAnnouncement.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAnnouncement: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAnnouncement } diff --git a/src/components/IconApartment.tsx b/src/components/IconApartment.tsx new file mode 100644 index 000000000..66a5ebba2 --- /dev/null +++ b/src/components/IconApartment.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconApartment: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconApartment } diff --git a/src/components/IconApi.tsx b/src/components/IconApi.tsx new file mode 100644 index 000000000..65938569c --- /dev/null +++ b/src/components/IconApi.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconApi: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconApi } diff --git a/src/components/IconAppBlocking.tsx b/src/components/IconAppBlocking.tsx new file mode 100644 index 000000000..9b195f03b --- /dev/null +++ b/src/components/IconAppBlocking.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAppBlocking: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAppBlocking } diff --git a/src/components/IconAppSettingsAlt.tsx b/src/components/IconAppSettingsAlt.tsx new file mode 100644 index 000000000..765e34e1b --- /dev/null +++ b/src/components/IconAppSettingsAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAppSettingsAlt: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAppSettingsAlt } diff --git a/src/components/IconApps.tsx b/src/components/IconApps.tsx new file mode 100644 index 000000000..a31ae86a1 --- /dev/null +++ b/src/components/IconApps.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconApps: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconApps } diff --git a/src/components/IconArchitecture.tsx b/src/components/IconArchitecture.tsx new file mode 100644 index 000000000..ba0967a95 --- /dev/null +++ b/src/components/IconArchitecture.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconArchitecture: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconArchitecture } diff --git a/src/components/IconArchive.tsx b/src/components/IconArchive.tsx new file mode 100644 index 000000000..76b99456a --- /dev/null +++ b/src/components/IconArchive.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArchive: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconArchive } diff --git a/src/components/IconArrowBack.tsx b/src/components/IconArrowBack.tsx new file mode 100644 index 000000000..6bda51daa --- /dev/null +++ b/src/components/IconArrowBack.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowBack: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconArrowBack } diff --git a/src/components/IconArrowBackIos.tsx b/src/components/IconArrowBackIos.tsx new file mode 100644 index 000000000..926ae7d21 --- /dev/null +++ b/src/components/IconArrowBackIos.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowBackIos: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconArrowBackIos } diff --git a/src/components/IconArrowCircleDown.tsx b/src/components/IconArrowCircleDown.tsx new file mode 100644 index 000000000..afd9fd6c3 --- /dev/null +++ b/src/components/IconArrowCircleDown.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowCircleDown: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconArrowCircleDown } diff --git a/src/components/IconArrowCircleUp.tsx b/src/components/IconArrowCircleUp.tsx new file mode 100644 index 000000000..ea3e877e0 --- /dev/null +++ b/src/components/IconArrowCircleUp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowCircleUp: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconArrowCircleUp } diff --git a/src/components/IconArrowDownward.tsx b/src/components/IconArrowDownward.tsx new file mode 100644 index 000000000..be265683d --- /dev/null +++ b/src/components/IconArrowDownward.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowDownward: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconArrowDownward } diff --git a/src/components/IconArrowDropDown.tsx b/src/components/IconArrowDropDown.tsx new file mode 100644 index 000000000..0e3c8ca55 --- /dev/null +++ b/src/components/IconArrowDropDown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowDropDown: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconArrowDropDown } diff --git a/src/components/IconArrowDropDownCircle.tsx b/src/components/IconArrowDropDownCircle.tsx new file mode 100644 index 000000000..1fd50da66 --- /dev/null +++ b/src/components/IconArrowDropDownCircle.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowDropDownCircle: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconArrowDropDownCircle } diff --git a/src/components/IconArrowDropUp.tsx b/src/components/IconArrowDropUp.tsx new file mode 100644 index 000000000..4d7f8c4bb --- /dev/null +++ b/src/components/IconArrowDropUp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowDropUp: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconArrowDropUp } diff --git a/src/components/IconArrowForward.tsx b/src/components/IconArrowForward.tsx new file mode 100644 index 000000000..25c3c4914 --- /dev/null +++ b/src/components/IconArrowForward.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowForward: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconArrowForward } diff --git a/src/components/IconArrowForwardIos.tsx b/src/components/IconArrowForwardIos.tsx new file mode 100644 index 000000000..ae19e8367 --- /dev/null +++ b/src/components/IconArrowForwardIos.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowForwardIos: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconArrowForwardIos } diff --git a/src/components/IconArrowLeft.tsx b/src/components/IconArrowLeft.tsx new file mode 100644 index 000000000..97da59e29 --- /dev/null +++ b/src/components/IconArrowLeft.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowLeft: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconArrowLeft } diff --git a/src/components/IconArrowRight.tsx b/src/components/IconArrowRight.tsx new file mode 100644 index 000000000..fb98c0185 --- /dev/null +++ b/src/components/IconArrowRight.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowRight: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconArrowRight } diff --git a/src/components/IconArrowRightAlt.tsx b/src/components/IconArrowRightAlt.tsx new file mode 100644 index 000000000..173762aec --- /dev/null +++ b/src/components/IconArrowRightAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowRightAlt: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconArrowRightAlt } diff --git a/src/components/IconArrowUpward.tsx b/src/components/IconArrowUpward.tsx new file mode 100644 index 000000000..0340e4ef5 --- /dev/null +++ b/src/components/IconArrowUpward.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArrowUpward: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconArrowUpward } diff --git a/src/components/IconArtTrack.tsx b/src/components/IconArtTrack.tsx new file mode 100644 index 000000000..6870701ab --- /dev/null +++ b/src/components/IconArtTrack.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArtTrack: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconArtTrack } diff --git a/src/components/IconArticle.tsx b/src/components/IconArticle.tsx new file mode 100644 index 000000000..8971ddb93 --- /dev/null +++ b/src/components/IconArticle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconArticle: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconArticle } diff --git a/src/components/IconAspectRatio.tsx b/src/components/IconAspectRatio.tsx new file mode 100644 index 000000000..1c4d37880 --- /dev/null +++ b/src/components/IconAspectRatio.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAspectRatio: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAspectRatio } diff --git a/src/components/IconAssessment.tsx b/src/components/IconAssessment.tsx new file mode 100644 index 000000000..8a59988eb --- /dev/null +++ b/src/components/IconAssessment.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssessment: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAssessment } diff --git a/src/components/IconAssignment.tsx b/src/components/IconAssignment.tsx new file mode 100644 index 000000000..1d3676ec0 --- /dev/null +++ b/src/components/IconAssignment.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssignment: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAssignment } diff --git a/src/components/IconAssignmentInd.tsx b/src/components/IconAssignmentInd.tsx new file mode 100644 index 000000000..eb82dad26 --- /dev/null +++ b/src/components/IconAssignmentInd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssignmentInd: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAssignmentInd } diff --git a/src/components/IconAssignmentLate.tsx b/src/components/IconAssignmentLate.tsx new file mode 100644 index 000000000..36c20997b --- /dev/null +++ b/src/components/IconAssignmentLate.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssignmentLate: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAssignmentLate } diff --git a/src/components/IconAssignmentReturn.tsx b/src/components/IconAssignmentReturn.tsx new file mode 100644 index 000000000..90f015148 --- /dev/null +++ b/src/components/IconAssignmentReturn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssignmentReturn: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAssignmentReturn } diff --git a/src/components/IconAssignmentReturned.tsx b/src/components/IconAssignmentReturned.tsx new file mode 100644 index 000000000..801ed3923 --- /dev/null +++ b/src/components/IconAssignmentReturned.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssignmentReturned: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAssignmentReturned } diff --git a/src/components/IconAssignmentTurnedIn.tsx b/src/components/IconAssignmentTurnedIn.tsx new file mode 100644 index 000000000..47e9d9712 --- /dev/null +++ b/src/components/IconAssignmentTurnedIn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssignmentTurnedIn: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAssignmentTurnedIn } diff --git a/src/components/IconAssistant.tsx b/src/components/IconAssistant.tsx new file mode 100644 index 000000000..e9a91229a --- /dev/null +++ b/src/components/IconAssistant.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssistant: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAssistant } diff --git a/src/components/IconAssistantPhoto.tsx b/src/components/IconAssistantPhoto.tsx new file mode 100644 index 000000000..ed7d8ba84 --- /dev/null +++ b/src/components/IconAssistantPhoto.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAssistantPhoto: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAssistantPhoto } diff --git a/src/components/IconAtm.tsx b/src/components/IconAtm.tsx new file mode 100644 index 000000000..424bb4dfd --- /dev/null +++ b/src/components/IconAtm.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAtm: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAtm } diff --git a/src/components/IconAttachEmail.tsx b/src/components/IconAttachEmail.tsx new file mode 100644 index 000000000..a891c48f1 --- /dev/null +++ b/src/components/IconAttachEmail.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconAttachEmail: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconAttachEmail } diff --git a/src/components/IconAttachFile.tsx b/src/components/IconAttachFile.tsx new file mode 100644 index 000000000..a4636d865 --- /dev/null +++ b/src/components/IconAttachFile.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAttachFile: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAttachFile } diff --git a/src/components/IconAttachMoney.tsx b/src/components/IconAttachMoney.tsx new file mode 100644 index 000000000..b4099bd55 --- /dev/null +++ b/src/components/IconAttachMoney.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAttachMoney: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAttachMoney } diff --git a/src/components/IconAttachment.tsx b/src/components/IconAttachment.tsx new file mode 100644 index 000000000..92a526894 --- /dev/null +++ b/src/components/IconAttachment.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAttachment: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAttachment } diff --git a/src/components/IconAudiotrack.tsx b/src/components/IconAudiotrack.tsx new file mode 100644 index 000000000..0d767d6d3 --- /dev/null +++ b/src/components/IconAudiotrack.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAudiotrack: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAudiotrack } diff --git a/src/components/IconAutoDelete.tsx b/src/components/IconAutoDelete.tsx new file mode 100644 index 000000000..bb18de942 --- /dev/null +++ b/src/components/IconAutoDelete.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconAutoDelete: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconAutoDelete } diff --git a/src/components/IconAutorenew.tsx b/src/components/IconAutorenew.tsx new file mode 100644 index 000000000..9b5a6c2fb --- /dev/null +++ b/src/components/IconAutorenew.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAutorenew: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAutorenew } diff --git a/src/components/IconAvTimer.tsx b/src/components/IconAvTimer.tsx new file mode 100644 index 000000000..5a87578db --- /dev/null +++ b/src/components/IconAvTimer.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconAvTimer: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconAvTimer } diff --git a/src/components/IconBabyChangingStation.tsx b/src/components/IconBabyChangingStation.tsx new file mode 100644 index 000000000..9b9f3b5bb --- /dev/null +++ b/src/components/IconBabyChangingStation.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconBabyChangingStation: React.FC = ( + props: IconProps +): any => ( + + + + + + +) + +export { IconBabyChangingStation } diff --git a/src/components/IconBackpack.tsx b/src/components/IconBackpack.tsx new file mode 100644 index 000000000..691cc01c5 --- /dev/null +++ b/src/components/IconBackpack.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconBackpack: React.FC = (props: IconProps): any => ( + + + + + + + + + + +) + +export { IconBackpack } diff --git a/src/components/IconBackspace.tsx b/src/components/IconBackspace.tsx new file mode 100644 index 000000000..21fadb33d --- /dev/null +++ b/src/components/IconBackspace.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBackspace: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBackspace } diff --git a/src/components/IconBackup.tsx b/src/components/IconBackup.tsx new file mode 100644 index 000000000..a68ed73ec --- /dev/null +++ b/src/components/IconBackup.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBackup: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBackup } diff --git a/src/components/IconBackupTable.tsx b/src/components/IconBackupTable.tsx new file mode 100644 index 000000000..1eee8c274 --- /dev/null +++ b/src/components/IconBackupTable.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconBackupTable: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconBackupTable } diff --git a/src/components/IconBallot.tsx b/src/components/IconBallot.tsx new file mode 100644 index 000000000..5235f15bb --- /dev/null +++ b/src/components/IconBallot.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' +const IconBallot: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBallot } diff --git a/src/components/IconBarChart.tsx b/src/components/IconBarChart.tsx new file mode 100644 index 000000000..9a1a9e54b --- /dev/null +++ b/src/components/IconBarChart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBarChart: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBarChart } diff --git a/src/components/IconBatchPrediction.tsx b/src/components/IconBatchPrediction.tsx new file mode 100644 index 000000000..af555b604 --- /dev/null +++ b/src/components/IconBatchPrediction.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconBatchPrediction: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconBatchPrediction } diff --git a/src/components/IconBathtub.tsx b/src/components/IconBathtub.tsx new file mode 100644 index 000000000..01d42baec --- /dev/null +++ b/src/components/IconBathtub.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconBathtub: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + +) + +export { IconBathtub } diff --git a/src/components/IconBatteryAlert.tsx b/src/components/IconBatteryAlert.tsx new file mode 100644 index 000000000..3324c4ffb --- /dev/null +++ b/src/components/IconBatteryAlert.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBatteryAlert: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBatteryAlert } diff --git a/src/components/IconBatteryChargingFull.tsx b/src/components/IconBatteryChargingFull.tsx new file mode 100644 index 000000000..529f8d342 --- /dev/null +++ b/src/components/IconBatteryChargingFull.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconBatteryChargingFull: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconBatteryChargingFull } diff --git a/src/components/IconBatteryFull.tsx b/src/components/IconBatteryFull.tsx new file mode 100644 index 000000000..b4676287a --- /dev/null +++ b/src/components/IconBatteryFull.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBatteryFull: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBatteryFull } diff --git a/src/components/IconBatteryStd.tsx b/src/components/IconBatteryStd.tsx new file mode 100644 index 000000000..aaf986ee7 --- /dev/null +++ b/src/components/IconBatteryStd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBatteryStd: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBatteryStd } diff --git a/src/components/IconBatteryUnknown.tsx b/src/components/IconBatteryUnknown.tsx new file mode 100644 index 000000000..dd1a8ee6c --- /dev/null +++ b/src/components/IconBatteryUnknown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBatteryUnknown: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBatteryUnknown } diff --git a/src/components/IconBeachAccess.tsx b/src/components/IconBeachAccess.tsx new file mode 100644 index 000000000..e81d87fac --- /dev/null +++ b/src/components/IconBeachAccess.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBeachAccess: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBeachAccess } diff --git a/src/components/IconBedtime.tsx b/src/components/IconBedtime.tsx new file mode 100644 index 000000000..14650a491 --- /dev/null +++ b/src/components/IconBedtime.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconBedtime: React.FC = (props: IconProps): any => ( + + + + + + + + + + +) + +export { IconBedtime } diff --git a/src/components/IconBeenhere.tsx b/src/components/IconBeenhere.tsx new file mode 100644 index 000000000..3caf5aa24 --- /dev/null +++ b/src/components/IconBeenhere.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBeenhere: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBeenhere } diff --git a/src/components/IconBento.tsx b/src/components/IconBento.tsx new file mode 100644 index 000000000..5de517992 --- /dev/null +++ b/src/components/IconBento.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconBento: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconBento } diff --git a/src/components/IconBikeScooter.tsx b/src/components/IconBikeScooter.tsx new file mode 100644 index 000000000..e92414f22 --- /dev/null +++ b/src/components/IconBikeScooter.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconBikeScooter: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconBikeScooter } diff --git a/src/components/IconBiotech.tsx b/src/components/IconBiotech.tsx new file mode 100644 index 000000000..5b12372ad --- /dev/null +++ b/src/components/IconBiotech.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconBiotech: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconBiotech } diff --git a/src/components/IconBlock.tsx b/src/components/IconBlock.tsx new file mode 100644 index 000000000..dfeed66ea --- /dev/null +++ b/src/components/IconBlock.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBlock: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBlock } diff --git a/src/components/IconBluetooth.tsx b/src/components/IconBluetooth.tsx new file mode 100644 index 000000000..6165b61f8 --- /dev/null +++ b/src/components/IconBluetooth.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBluetooth: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBluetooth } diff --git a/src/components/IconBluetoothAudio.tsx b/src/components/IconBluetoothAudio.tsx new file mode 100644 index 000000000..01bc61323 --- /dev/null +++ b/src/components/IconBluetoothAudio.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBluetoothAudio: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBluetoothAudio } diff --git a/src/components/IconBluetoothConnected.tsx b/src/components/IconBluetoothConnected.tsx new file mode 100644 index 000000000..e7eb1e375 --- /dev/null +++ b/src/components/IconBluetoothConnected.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBluetoothConnected: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBluetoothConnected } diff --git a/src/components/IconBluetoothDisabled.tsx b/src/components/IconBluetoothDisabled.tsx new file mode 100644 index 000000000..e6b451652 --- /dev/null +++ b/src/components/IconBluetoothDisabled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBluetoothDisabled: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBluetoothDisabled } diff --git a/src/components/IconBluetoothSearching.tsx b/src/components/IconBluetoothSearching.tsx new file mode 100644 index 000000000..05b718741 --- /dev/null +++ b/src/components/IconBluetoothSearching.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBluetoothSearching: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBluetoothSearching } diff --git a/src/components/IconBlurCircular.tsx b/src/components/IconBlurCircular.tsx new file mode 100644 index 000000000..38a46a76e --- /dev/null +++ b/src/components/IconBlurCircular.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBlurCircular: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBlurCircular } diff --git a/src/components/IconBlurLinear.tsx b/src/components/IconBlurLinear.tsx new file mode 100644 index 000000000..a5564c135 --- /dev/null +++ b/src/components/IconBlurLinear.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBlurLinear: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBlurLinear } diff --git a/src/components/IconBlurOff.tsx b/src/components/IconBlurOff.tsx new file mode 100644 index 000000000..5c53fb2e7 --- /dev/null +++ b/src/components/IconBlurOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBlurOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBlurOff } diff --git a/src/components/IconBlurOn.tsx b/src/components/IconBlurOn.tsx new file mode 100644 index 000000000..a7ab8381b --- /dev/null +++ b/src/components/IconBlurOn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBlurOn: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBlurOn } diff --git a/src/components/IconBook.tsx b/src/components/IconBook.tsx new file mode 100644 index 000000000..0f60c9565 --- /dev/null +++ b/src/components/IconBook.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBook: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBook } diff --git a/src/components/IconBookOnline.tsx b/src/components/IconBookOnline.tsx new file mode 100644 index 000000000..d698b585a --- /dev/null +++ b/src/components/IconBookOnline.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconBookOnline: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconBookOnline } diff --git a/src/components/IconBookmark.tsx b/src/components/IconBookmark.tsx new file mode 100644 index 000000000..3a5ef93d1 --- /dev/null +++ b/src/components/IconBookmark.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBookmark: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBookmark } diff --git a/src/components/IconBookmarkBorder.tsx b/src/components/IconBookmarkBorder.tsx new file mode 100644 index 000000000..8ae29ee62 --- /dev/null +++ b/src/components/IconBookmarkBorder.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBookmarkBorder: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBookmarkBorder } diff --git a/src/components/IconBookmarks.tsx b/src/components/IconBookmarks.tsx new file mode 100644 index 000000000..4905d21ee --- /dev/null +++ b/src/components/IconBookmarks.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBookmarks: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBookmarks } diff --git a/src/components/IconBorderAll.tsx b/src/components/IconBorderAll.tsx new file mode 100644 index 000000000..4a6c8531e --- /dev/null +++ b/src/components/IconBorderAll.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderAll: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBorderAll } diff --git a/src/components/IconBorderBottom.tsx b/src/components/IconBorderBottom.tsx new file mode 100644 index 000000000..388bdf82d --- /dev/null +++ b/src/components/IconBorderBottom.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderBottom: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBorderBottom } diff --git a/src/components/IconBorderClear.tsx b/src/components/IconBorderClear.tsx new file mode 100644 index 000000000..b5fb9b5fd --- /dev/null +++ b/src/components/IconBorderClear.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderClear: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBorderClear } diff --git a/src/components/IconBorderHorizontal.tsx b/src/components/IconBorderHorizontal.tsx new file mode 100644 index 000000000..be73cd936 --- /dev/null +++ b/src/components/IconBorderHorizontal.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderHorizontal: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBorderHorizontal } diff --git a/src/components/IconBorderInner.tsx b/src/components/IconBorderInner.tsx new file mode 100644 index 000000000..0f5211426 --- /dev/null +++ b/src/components/IconBorderInner.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderInner: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBorderInner } diff --git a/src/components/IconBorderLeft.tsx b/src/components/IconBorderLeft.tsx new file mode 100644 index 000000000..43b0636cd --- /dev/null +++ b/src/components/IconBorderLeft.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderLeft: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBorderLeft } diff --git a/src/components/IconBorderOuter.tsx b/src/components/IconBorderOuter.tsx new file mode 100644 index 000000000..a0648b077 --- /dev/null +++ b/src/components/IconBorderOuter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderOuter: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBorderOuter } diff --git a/src/components/IconBorderRight.tsx b/src/components/IconBorderRight.tsx new file mode 100644 index 000000000..529cc3960 --- /dev/null +++ b/src/components/IconBorderRight.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderRight: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBorderRight } diff --git a/src/components/IconBorderStyle.tsx b/src/components/IconBorderStyle.tsx new file mode 100644 index 000000000..84c684cec --- /dev/null +++ b/src/components/IconBorderStyle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderStyle: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBorderStyle } diff --git a/src/components/IconBorderTop.tsx b/src/components/IconBorderTop.tsx new file mode 100644 index 000000000..e61796f56 --- /dev/null +++ b/src/components/IconBorderTop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderTop: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBorderTop } diff --git a/src/components/IconBorderVertical.tsx b/src/components/IconBorderVertical.tsx new file mode 100644 index 000000000..739957810 --- /dev/null +++ b/src/components/IconBorderVertical.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBorderVertical: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBorderVertical } diff --git a/src/components/IconBrandingWatermark.tsx b/src/components/IconBrandingWatermark.tsx new file mode 100644 index 000000000..7df748073 --- /dev/null +++ b/src/components/IconBrandingWatermark.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrandingWatermark: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBrandingWatermark } diff --git a/src/components/IconBrightness1.tsx b/src/components/IconBrightness1.tsx new file mode 100644 index 000000000..6b5511812 --- /dev/null +++ b/src/components/IconBrightness1.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightness1: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBrightness1 } diff --git a/src/components/IconBrightness2.tsx b/src/components/IconBrightness2.tsx new file mode 100644 index 000000000..eefec7ea6 --- /dev/null +++ b/src/components/IconBrightness2.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightness2: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBrightness2 } diff --git a/src/components/IconBrightness3.tsx b/src/components/IconBrightness3.tsx new file mode 100644 index 000000000..93b321721 --- /dev/null +++ b/src/components/IconBrightness3.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightness3: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBrightness3 } diff --git a/src/components/IconBrightness4.tsx b/src/components/IconBrightness4.tsx new file mode 100644 index 000000000..3e64ad1a7 --- /dev/null +++ b/src/components/IconBrightness4.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightness4: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBrightness4 } diff --git a/src/components/IconBrightness5.tsx b/src/components/IconBrightness5.tsx new file mode 100644 index 000000000..58afb5bf1 --- /dev/null +++ b/src/components/IconBrightness5.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightness5: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBrightness5 } diff --git a/src/components/IconBrightness6.tsx b/src/components/IconBrightness6.tsx new file mode 100644 index 000000000..14afe6c53 --- /dev/null +++ b/src/components/IconBrightness6.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightness6: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBrightness6 } diff --git a/src/components/IconBrightness7.tsx b/src/components/IconBrightness7.tsx new file mode 100644 index 000000000..ae0443be4 --- /dev/null +++ b/src/components/IconBrightness7.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightness7: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBrightness7 } diff --git a/src/components/IconBrightnessAuto.tsx b/src/components/IconBrightnessAuto.tsx new file mode 100644 index 000000000..87e4ff4eb --- /dev/null +++ b/src/components/IconBrightnessAuto.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightnessAuto: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBrightnessAuto } diff --git a/src/components/IconBrightnessHigh.tsx b/src/components/IconBrightnessHigh.tsx new file mode 100644 index 000000000..747a0b7b7 --- /dev/null +++ b/src/components/IconBrightnessHigh.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightnessHigh: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBrightnessHigh } diff --git a/src/components/IconBrightnessLow.tsx b/src/components/IconBrightnessLow.tsx new file mode 100644 index 000000000..fdf66c414 --- /dev/null +++ b/src/components/IconBrightnessLow.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightnessLow: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBrightnessLow } diff --git a/src/components/IconBrightnessMedium.tsx b/src/components/IconBrightnessMedium.tsx new file mode 100644 index 000000000..e22c6b4c9 --- /dev/null +++ b/src/components/IconBrightnessMedium.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrightnessMedium: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBrightnessMedium } diff --git a/src/components/IconBrokenImage.tsx b/src/components/IconBrokenImage.tsx new file mode 100644 index 000000000..26f6e5018 --- /dev/null +++ b/src/components/IconBrokenImage.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrokenImage: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconBrokenImage } diff --git a/src/components/IconBrowserNotSupported.tsx b/src/components/IconBrowserNotSupported.tsx new file mode 100644 index 000000000..a39d0f1a1 --- /dev/null +++ b/src/components/IconBrowserNotSupported.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrowserNotSupported: React.FC = ( + props: IconProps +): any => ( + + + + + + + + + + + +) + +export { IconBrowserNotSupported } diff --git a/src/components/IconBrush.tsx b/src/components/IconBrush.tsx new file mode 100644 index 000000000..d2b1247df --- /dev/null +++ b/src/components/IconBrush.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBrush: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBrush } diff --git a/src/components/IconBubbleChart.tsx b/src/components/IconBubbleChart.tsx new file mode 100644 index 000000000..774685cb0 --- /dev/null +++ b/src/components/IconBubbleChart.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconBubbleChart: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconBubbleChart } diff --git a/src/components/IconBugReport.tsx b/src/components/IconBugReport.tsx new file mode 100644 index 000000000..1e8948b75 --- /dev/null +++ b/src/components/IconBugReport.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBugReport: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBugReport } diff --git a/src/components/IconBuild.tsx b/src/components/IconBuild.tsx new file mode 100644 index 000000000..601cbefb9 --- /dev/null +++ b/src/components/IconBuild.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBuild: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBuild } diff --git a/src/components/IconBuildCircle.tsx b/src/components/IconBuildCircle.tsx new file mode 100644 index 000000000..fc0bafd4d --- /dev/null +++ b/src/components/IconBuildCircle.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconBuildCircle: React.FC = (props: IconProps): any => ( + + + + + + + + + + +) + +export { IconBuildCircle } diff --git a/src/components/IconBurstMode.tsx b/src/components/IconBurstMode.tsx new file mode 100644 index 000000000..cacdf835a --- /dev/null +++ b/src/components/IconBurstMode.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBurstMode: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBurstMode } diff --git a/src/components/IconBusiness.tsx b/src/components/IconBusiness.tsx new file mode 100644 index 000000000..ef640ca6a --- /dev/null +++ b/src/components/IconBusiness.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBusiness: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBusiness } diff --git a/src/components/IconBusinessCenter.tsx b/src/components/IconBusinessCenter.tsx new file mode 100644 index 000000000..f681979dc --- /dev/null +++ b/src/components/IconBusinessCenter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconBusinessCenter: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconBusinessCenter } diff --git a/src/components/IconCached.tsx b/src/components/IconCached.tsx new file mode 100644 index 000000000..d4ea9ec34 --- /dev/null +++ b/src/components/IconCached.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCached: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCached } diff --git a/src/components/IconCake.tsx b/src/components/IconCake.tsx new file mode 100644 index 000000000..64c7b2e20 --- /dev/null +++ b/src/components/IconCake.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCake: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCake } diff --git a/src/components/IconCalculate.tsx b/src/components/IconCalculate.tsx new file mode 100644 index 000000000..39adb395d --- /dev/null +++ b/src/components/IconCalculate.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconCalculate: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconCalculate } diff --git a/src/components/IconCalendarToday.tsx b/src/components/IconCalendarToday.tsx new file mode 100644 index 000000000..de7e7eadf --- /dev/null +++ b/src/components/IconCalendarToday.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCalendarToday: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCalendarToday } diff --git a/src/components/IconCalendarViewDay.tsx b/src/components/IconCalendarViewDay.tsx new file mode 100644 index 000000000..35d12fafb --- /dev/null +++ b/src/components/IconCalendarViewDay.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCalendarViewDay: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCalendarViewDay } diff --git a/src/components/IconCall.tsx b/src/components/IconCall.tsx new file mode 100644 index 000000000..8cb82100f --- /dev/null +++ b/src/components/IconCall.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCall: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCall } diff --git a/src/components/IconCallEnd.tsx b/src/components/IconCallEnd.tsx new file mode 100644 index 000000000..f1e1cb44d --- /dev/null +++ b/src/components/IconCallEnd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCallEnd: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCallEnd } diff --git a/src/components/IconCallMade.tsx b/src/components/IconCallMade.tsx new file mode 100644 index 000000000..e7836dc19 --- /dev/null +++ b/src/components/IconCallMade.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCallMade: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCallMade } diff --git a/src/components/IconCallMerge.tsx b/src/components/IconCallMerge.tsx new file mode 100644 index 000000000..e1b57cf18 --- /dev/null +++ b/src/components/IconCallMerge.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCallMerge: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCallMerge } diff --git a/src/components/IconCallMissed.tsx b/src/components/IconCallMissed.tsx new file mode 100644 index 000000000..cfa58af37 --- /dev/null +++ b/src/components/IconCallMissed.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCallMissed: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCallMissed } diff --git a/src/components/IconCallMissedOutgoing.tsx b/src/components/IconCallMissedOutgoing.tsx new file mode 100644 index 000000000..396efb384 --- /dev/null +++ b/src/components/IconCallMissedOutgoing.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconCallMissedOutgoing: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconCallMissedOutgoing } diff --git a/src/components/IconCallReceived.tsx b/src/components/IconCallReceived.tsx new file mode 100644 index 000000000..25461ec7a --- /dev/null +++ b/src/components/IconCallReceived.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCallReceived: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCallReceived } diff --git a/src/components/IconCallSplit.tsx b/src/components/IconCallSplit.tsx new file mode 100644 index 000000000..13512c35f --- /dev/null +++ b/src/components/IconCallSplit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCallSplit: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCallSplit } diff --git a/src/components/IconCallToAction.tsx b/src/components/IconCallToAction.tsx new file mode 100644 index 000000000..92911e78a --- /dev/null +++ b/src/components/IconCallToAction.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCallToAction: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCallToAction } diff --git a/src/components/IconCamera.tsx b/src/components/IconCamera.tsx new file mode 100644 index 000000000..19b360be1 --- /dev/null +++ b/src/components/IconCamera.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCamera: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCamera } diff --git a/src/components/IconCameraAlt.tsx b/src/components/IconCameraAlt.tsx new file mode 100644 index 000000000..d8fee9c30 --- /dev/null +++ b/src/components/IconCameraAlt.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconCameraAlt: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconCameraAlt } diff --git a/src/components/IconCameraEnhance.tsx b/src/components/IconCameraEnhance.tsx new file mode 100644 index 000000000..4891304ed --- /dev/null +++ b/src/components/IconCameraEnhance.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconCameraEnhance: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconCameraEnhance } diff --git a/src/components/IconCameraFront.tsx b/src/components/IconCameraFront.tsx new file mode 100644 index 000000000..2d162ae36 --- /dev/null +++ b/src/components/IconCameraFront.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCameraFront: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCameraFront } diff --git a/src/components/IconCameraRear.tsx b/src/components/IconCameraRear.tsx new file mode 100644 index 000000000..c185994fe --- /dev/null +++ b/src/components/IconCameraRear.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCameraRear: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCameraRear } diff --git a/src/components/IconCameraRoll.tsx b/src/components/IconCameraRoll.tsx new file mode 100644 index 000000000..df0b0db3d --- /dev/null +++ b/src/components/IconCameraRoll.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCameraRoll: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCameraRoll } diff --git a/src/components/IconCampaign.tsx b/src/components/IconCampaign.tsx new file mode 100644 index 000000000..a6e173faf --- /dev/null +++ b/src/components/IconCampaign.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCampaign: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCampaign } diff --git a/src/components/IconCancel.tsx b/src/components/IconCancel.tsx new file mode 100644 index 000000000..d0ae0db3c --- /dev/null +++ b/src/components/IconCancel.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCancel: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCancel } diff --git a/src/components/IconCancelPresentation.tsx b/src/components/IconCancelPresentation.tsx new file mode 100644 index 000000000..ceb14d8d1 --- /dev/null +++ b/src/components/IconCancelPresentation.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconCancelPresentation: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconCancelPresentation } diff --git a/src/components/IconCancelScheduleSend.tsx b/src/components/IconCancelScheduleSend.tsx new file mode 100644 index 000000000..1305309c3 --- /dev/null +++ b/src/components/IconCancelScheduleSend.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconCancelScheduleSend: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconCancelScheduleSend } diff --git a/src/components/IconCardGiftcard.tsx b/src/components/IconCardGiftcard.tsx new file mode 100644 index 000000000..f4eeba18f --- /dev/null +++ b/src/components/IconCardGiftcard.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCardGiftcard: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCardGiftcard } diff --git a/src/components/IconCardMembership.tsx b/src/components/IconCardMembership.tsx new file mode 100644 index 000000000..6fea9afe5 --- /dev/null +++ b/src/components/IconCardMembership.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCardMembership: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCardMembership } diff --git a/src/components/IconCardTravel.tsx b/src/components/IconCardTravel.tsx new file mode 100644 index 000000000..8dfda91be --- /dev/null +++ b/src/components/IconCardTravel.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCardTravel: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCardTravel } diff --git a/src/components/IconCarpenter.tsx b/src/components/IconCarpenter.tsx new file mode 100644 index 000000000..4e2cdea64 --- /dev/null +++ b/src/components/IconCarpenter.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconCarpenter: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCarpenter } diff --git a/src/components/IconCasino.tsx b/src/components/IconCasino.tsx new file mode 100644 index 000000000..36ecbe920 --- /dev/null +++ b/src/components/IconCasino.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconCasino: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCasino } diff --git a/src/components/IconCast.tsx b/src/components/IconCast.tsx new file mode 100644 index 000000000..a523e954a --- /dev/null +++ b/src/components/IconCast.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconCast: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconCast } diff --git a/src/components/IconCastConnected.tsx b/src/components/IconCastConnected.tsx new file mode 100644 index 000000000..9831f50a0 --- /dev/null +++ b/src/components/IconCastConnected.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconCastConnected: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconCastConnected } diff --git a/src/components/IconCastForEducation.tsx b/src/components/IconCastForEducation.tsx new file mode 100644 index 000000000..060db2616 --- /dev/null +++ b/src/components/IconCastForEducation.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconCastForEducation: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconCastForEducation } diff --git a/src/components/IconCategory.tsx b/src/components/IconCategory.tsx new file mode 100644 index 000000000..32dc97a80 --- /dev/null +++ b/src/components/IconCategory.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconCategory: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconCategory } diff --git a/src/components/IconCenterFocusStrong.tsx b/src/components/IconCenterFocusStrong.tsx new file mode 100644 index 000000000..f057d31ad --- /dev/null +++ b/src/components/IconCenterFocusStrong.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCenterFocusStrong: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCenterFocusStrong } diff --git a/src/components/IconCenterFocusWeak.tsx b/src/components/IconCenterFocusWeak.tsx new file mode 100644 index 000000000..fff649a84 --- /dev/null +++ b/src/components/IconCenterFocusWeak.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCenterFocusWeak: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCenterFocusWeak } diff --git a/src/components/IconChangeHistory.tsx b/src/components/IconChangeHistory.tsx new file mode 100644 index 000000000..57ac8ac7c --- /dev/null +++ b/src/components/IconChangeHistory.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconChangeHistory: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconChangeHistory } diff --git a/src/components/IconChargingStation.tsx b/src/components/IconChargingStation.tsx new file mode 100644 index 000000000..6b71b5600 --- /dev/null +++ b/src/components/IconChargingStation.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconChargingStation: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconChargingStation } diff --git a/src/components/IconChat.tsx b/src/components/IconChat.tsx new file mode 100644 index 000000000..de62245a3 --- /dev/null +++ b/src/components/IconChat.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconChat: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconChat } diff --git a/src/components/IconChatBubble.tsx b/src/components/IconChatBubble.tsx new file mode 100644 index 000000000..6c4c5bc81 --- /dev/null +++ b/src/components/IconChatBubble.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconChatBubble: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconChatBubble } diff --git a/src/components/IconChatBubbleOutline.tsx b/src/components/IconChatBubbleOutline.tsx new file mode 100644 index 000000000..c38ce1588 --- /dev/null +++ b/src/components/IconChatBubbleOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconChatBubbleOutline: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconChatBubbleOutline } diff --git a/src/components/IconCheck.tsx b/src/components/IconCheck.tsx new file mode 100644 index 000000000..377de4b23 --- /dev/null +++ b/src/components/IconCheck.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCheck: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCheck } diff --git a/src/components/IconCheckBox.tsx b/src/components/IconCheckBox.tsx new file mode 100644 index 000000000..3d559498f --- /dev/null +++ b/src/components/IconCheckBox.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCheckBox: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCheckBox } diff --git a/src/components/IconCheckBoxOutlineBlank.tsx b/src/components/IconCheckBoxOutlineBlank.tsx new file mode 100644 index 000000000..082abc876 --- /dev/null +++ b/src/components/IconCheckBoxOutlineBlank.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconCheckBoxOutlineBlank: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconCheckBoxOutlineBlank } diff --git a/src/components/IconCheckCircle.tsx b/src/components/IconCheckCircle.tsx new file mode 100644 index 000000000..0c5c6dfea --- /dev/null +++ b/src/components/IconCheckCircle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCheckCircle: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCheckCircle } diff --git a/src/components/IconCheckCircleOutline.tsx b/src/components/IconCheckCircleOutline.tsx new file mode 100644 index 000000000..a830131b9 --- /dev/null +++ b/src/components/IconCheckCircleOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCheckCircleOutline: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCheckCircleOutline } diff --git a/src/components/IconCheckroom.tsx b/src/components/IconCheckroom.tsx new file mode 100644 index 000000000..f8389da27 --- /dev/null +++ b/src/components/IconCheckroom.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconCheckroom: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconCheckroom } diff --git a/src/components/IconChevronLeft.tsx b/src/components/IconChevronLeft.tsx new file mode 100644 index 000000000..525547c5e --- /dev/null +++ b/src/components/IconChevronLeft.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconChevronLeft: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconChevronLeft } diff --git a/src/components/IconChevronRight.tsx b/src/components/IconChevronRight.tsx new file mode 100644 index 000000000..077086ea5 --- /dev/null +++ b/src/components/IconChevronRight.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconChevronRight: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconChevronRight } diff --git a/src/components/IconChildCare.tsx b/src/components/IconChildCare.tsx new file mode 100644 index 000000000..ae5bdbb79 --- /dev/null +++ b/src/components/IconChildCare.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconChildCare: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconChildCare } diff --git a/src/components/IconChildFriendly.tsx b/src/components/IconChildFriendly.tsx new file mode 100644 index 000000000..e35f77089 --- /dev/null +++ b/src/components/IconChildFriendly.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconChildFriendly: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconChildFriendly } diff --git a/src/components/IconChromeReaderMode.tsx b/src/components/IconChromeReaderMode.tsx new file mode 100644 index 000000000..293dea917 --- /dev/null +++ b/src/components/IconChromeReaderMode.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconChromeReaderMode: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconChromeReaderMode } diff --git a/src/components/IconClass.tsx b/src/components/IconClass.tsx new file mode 100644 index 000000000..729484fdb --- /dev/null +++ b/src/components/IconClass.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconClass: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconClass } diff --git a/src/components/IconCleanHands.tsx b/src/components/IconCleanHands.tsx new file mode 100644 index 000000000..c713148ce --- /dev/null +++ b/src/components/IconCleanHands.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconCleanHands: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCleanHands } diff --git a/src/components/IconCleaningServices.tsx b/src/components/IconCleaningServices.tsx new file mode 100644 index 000000000..f1da65211 --- /dev/null +++ b/src/components/IconCleaningServices.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconCleaningServices: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconCleaningServices } diff --git a/src/components/IconClear.tsx b/src/components/IconClear.tsx new file mode 100644 index 000000000..1f2882ac8 --- /dev/null +++ b/src/components/IconClear.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconClear: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconClear } diff --git a/src/components/IconClearAll.tsx b/src/components/IconClearAll.tsx new file mode 100644 index 000000000..7b7ea9e90 --- /dev/null +++ b/src/components/IconClearAll.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconClearAll: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconClearAll } diff --git a/src/components/IconClose.tsx b/src/components/IconClose.tsx new file mode 100644 index 000000000..2dd8e1e5a --- /dev/null +++ b/src/components/IconClose.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconClose: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconClose } diff --git a/src/components/IconCloseFullscreen.tsx b/src/components/IconCloseFullscreen.tsx new file mode 100644 index 000000000..ab2f0b17f --- /dev/null +++ b/src/components/IconCloseFullscreen.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconCloseFullscreen: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCloseFullscreen } diff --git a/src/components/IconClosedCaption.tsx b/src/components/IconClosedCaption.tsx new file mode 100644 index 000000000..6d459ab6b --- /dev/null +++ b/src/components/IconClosedCaption.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconClosedCaption: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconClosedCaption } diff --git a/src/components/IconClosedCaptionDisabled.tsx b/src/components/IconClosedCaptionDisabled.tsx new file mode 100644 index 000000000..c8c76084c --- /dev/null +++ b/src/components/IconClosedCaptionDisabled.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconClosedCaptionDisabled: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconClosedCaptionDisabled } diff --git a/src/components/IconCloud.tsx b/src/components/IconCloud.tsx new file mode 100644 index 000000000..83466a8f8 --- /dev/null +++ b/src/components/IconCloud.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCloud: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCloud } diff --git a/src/components/IconCloudCircle.tsx b/src/components/IconCloudCircle.tsx new file mode 100644 index 000000000..470f8bba0 --- /dev/null +++ b/src/components/IconCloudCircle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCloudCircle: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCloudCircle } diff --git a/src/components/IconCloudDone.tsx b/src/components/IconCloudDone.tsx new file mode 100644 index 000000000..2ca04bc8a --- /dev/null +++ b/src/components/IconCloudDone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCloudDone: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCloudDone } diff --git a/src/components/IconCloudDownload.tsx b/src/components/IconCloudDownload.tsx new file mode 100644 index 000000000..185f89ac8 --- /dev/null +++ b/src/components/IconCloudDownload.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCloudDownload: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCloudDownload } diff --git a/src/components/IconCloudOff.tsx b/src/components/IconCloudOff.tsx new file mode 100644 index 000000000..2623ae557 --- /dev/null +++ b/src/components/IconCloudOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCloudOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCloudOff } diff --git a/src/components/IconCloudQueue.tsx b/src/components/IconCloudQueue.tsx new file mode 100644 index 000000000..49e0c871d --- /dev/null +++ b/src/components/IconCloudQueue.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCloudQueue: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCloudQueue } diff --git a/src/components/IconCloudUpload.tsx b/src/components/IconCloudUpload.tsx new file mode 100644 index 000000000..b45363b15 --- /dev/null +++ b/src/components/IconCloudUpload.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCloudUpload: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCloudUpload } diff --git a/src/components/IconCode.tsx b/src/components/IconCode.tsx new file mode 100644 index 000000000..938e9b527 --- /dev/null +++ b/src/components/IconCode.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCode: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCode } diff --git a/src/components/IconCollections.tsx b/src/components/IconCollections.tsx new file mode 100644 index 000000000..b32c08bd6 --- /dev/null +++ b/src/components/IconCollections.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCollections: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCollections } diff --git a/src/components/IconCollectionsBookmark.tsx b/src/components/IconCollectionsBookmark.tsx new file mode 100644 index 000000000..f8b443484 --- /dev/null +++ b/src/components/IconCollectionsBookmark.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' +const IconCollectionsBookmark: React.FC = ( + props: IconProps +): any => ( + + + + + + +) + +export { IconCollectionsBookmark } diff --git a/src/components/IconColorLens.tsx b/src/components/IconColorLens.tsx new file mode 100644 index 000000000..0881cf7be --- /dev/null +++ b/src/components/IconColorLens.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconColorLens: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconColorLens } diff --git a/src/components/IconColorize.tsx b/src/components/IconColorize.tsx new file mode 100644 index 000000000..cdbbba918 --- /dev/null +++ b/src/components/IconColorize.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconColorize: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconColorize } diff --git a/src/components/IconComment.tsx b/src/components/IconComment.tsx new file mode 100644 index 000000000..ff67bff4a --- /dev/null +++ b/src/components/IconComment.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconComment: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconComment } diff --git a/src/components/IconCommentBank.tsx b/src/components/IconCommentBank.tsx new file mode 100644 index 000000000..4681eaa70 --- /dev/null +++ b/src/components/IconCommentBank.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconCommentBank: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconCommentBank } diff --git a/src/components/IconCommute.tsx b/src/components/IconCommute.tsx new file mode 100644 index 000000000..f78462383 --- /dev/null +++ b/src/components/IconCommute.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCommute: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCommute } diff --git a/src/components/IconCompare.tsx b/src/components/IconCompare.tsx new file mode 100644 index 000000000..2f191925b --- /dev/null +++ b/src/components/IconCompare.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCompare: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCompare } diff --git a/src/components/IconCompareArrows.tsx b/src/components/IconCompareArrows.tsx new file mode 100644 index 000000000..8f44e8e2b --- /dev/null +++ b/src/components/IconCompareArrows.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconCompareArrows: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconCompareArrows } diff --git a/src/components/IconCompassCalibration.tsx b/src/components/IconCompassCalibration.tsx new file mode 100644 index 000000000..dc01ba362 --- /dev/null +++ b/src/components/IconCompassCalibration.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconCompassCalibration: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconCompassCalibration } diff --git a/src/components/IconComputer.tsx b/src/components/IconComputer.tsx new file mode 100644 index 000000000..1c50ffbab --- /dev/null +++ b/src/components/IconComputer.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconComputer: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconComputer } diff --git a/src/components/IconConfirmationNumber.tsx b/src/components/IconConfirmationNumber.tsx new file mode 100644 index 000000000..afc91f88c --- /dev/null +++ b/src/components/IconConfirmationNumber.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconConfirmationNumber: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconConfirmationNumber } diff --git a/src/components/IconConnectWithoutContact.tsx b/src/components/IconConnectWithoutContact.tsx new file mode 100644 index 000000000..2212d6b9c --- /dev/null +++ b/src/components/IconConnectWithoutContact.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconConnectWithoutContact: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconConnectWithoutContact } diff --git a/src/components/IconConstruction.tsx b/src/components/IconConstruction.tsx new file mode 100644 index 000000000..9160c2469 --- /dev/null +++ b/src/components/IconConstruction.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' +const IconConstruction: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconConstruction } diff --git a/src/components/IconContactMail.tsx b/src/components/IconContactMail.tsx new file mode 100644 index 000000000..d62fb7a21 --- /dev/null +++ b/src/components/IconContactMail.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconContactMail: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconContactMail } diff --git a/src/components/IconContactPage.tsx b/src/components/IconContactPage.tsx new file mode 100644 index 000000000..ef2c486bb --- /dev/null +++ b/src/components/IconContactPage.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconContactPage: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconContactPage } diff --git a/src/components/IconContactPhone.tsx b/src/components/IconContactPhone.tsx new file mode 100644 index 000000000..62fad3bd0 --- /dev/null +++ b/src/components/IconContactPhone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconContactPhone: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconContactPhone } diff --git a/src/components/IconContactSupport.tsx b/src/components/IconContactSupport.tsx new file mode 100644 index 000000000..f2d08e561 --- /dev/null +++ b/src/components/IconContactSupport.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconContactSupport: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconContactSupport } diff --git a/src/components/IconContactless.tsx b/src/components/IconContactless.tsx new file mode 100644 index 000000000..c6c1b9918 --- /dev/null +++ b/src/components/IconContactless.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconContactless: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconContactless } diff --git a/src/components/IconContacts.tsx b/src/components/IconContacts.tsx new file mode 100644 index 000000000..63b812af5 --- /dev/null +++ b/src/components/IconContacts.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconContacts: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconContacts } diff --git a/src/components/IconContentCopy.tsx b/src/components/IconContentCopy.tsx new file mode 100644 index 000000000..a81bd20b2 --- /dev/null +++ b/src/components/IconContentCopy.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconContentCopy: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconContentCopy } diff --git a/src/components/IconContentCut.tsx b/src/components/IconContentCut.tsx new file mode 100644 index 000000000..0f310d671 --- /dev/null +++ b/src/components/IconContentCut.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconContentCut: React.FC = (props: IconProps): any => ( + + + + + + + +) + +export { IconContentCut } diff --git a/src/components/IconContentPaste.tsx b/src/components/IconContentPaste.tsx new file mode 100644 index 000000000..c98dbd2e5 --- /dev/null +++ b/src/components/IconContentPaste.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconContentPaste: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconContentPaste } diff --git a/src/components/IconControlCamera.tsx b/src/components/IconControlCamera.tsx new file mode 100644 index 000000000..bae14c767 --- /dev/null +++ b/src/components/IconControlCamera.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconControlCamera: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconControlCamera } diff --git a/src/components/IconControlPoint.tsx b/src/components/IconControlPoint.tsx new file mode 100644 index 000000000..0270a3469 --- /dev/null +++ b/src/components/IconControlPoint.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconControlPoint: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconControlPoint } diff --git a/src/components/IconControlPointDuplicate.tsx b/src/components/IconControlPointDuplicate.tsx new file mode 100644 index 000000000..a8034e08c --- /dev/null +++ b/src/components/IconControlPointDuplicate.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconControlPointDuplicate: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconControlPointDuplicate } diff --git a/src/components/IconCopyright.tsx b/src/components/IconCopyright.tsx new file mode 100644 index 000000000..0f5dae980 --- /dev/null +++ b/src/components/IconCopyright.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconCopyright: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconCopyright } diff --git a/src/components/IconCoronavirus.tsx b/src/components/IconCoronavirus.tsx new file mode 100644 index 000000000..f61931315 --- /dev/null +++ b/src/components/IconCoronavirus.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconCoronavirus: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCoronavirus } diff --git a/src/components/IconCorporateFare.tsx b/src/components/IconCorporateFare.tsx new file mode 100644 index 000000000..9d66aad99 --- /dev/null +++ b/src/components/IconCorporateFare.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconCorporateFare: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCorporateFare } diff --git a/src/components/IconCountertops.tsx b/src/components/IconCountertops.tsx new file mode 100644 index 000000000..35cefd78a --- /dev/null +++ b/src/components/IconCountertops.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconCountertops: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCountertops } diff --git a/src/components/IconCreate.tsx b/src/components/IconCreate.tsx new file mode 100644 index 000000000..de6571dc7 --- /dev/null +++ b/src/components/IconCreate.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCreate: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCreate } diff --git a/src/components/IconCreateNewFolder.tsx b/src/components/IconCreateNewFolder.tsx new file mode 100644 index 000000000..2bf9b5b3c --- /dev/null +++ b/src/components/IconCreateNewFolder.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCreateNewFolder: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCreateNewFolder } diff --git a/src/components/IconCreditCard.tsx b/src/components/IconCreditCard.tsx new file mode 100644 index 000000000..1cbfafc11 --- /dev/null +++ b/src/components/IconCreditCard.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCreditCard: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCreditCard } diff --git a/src/components/IconCrop.tsx b/src/components/IconCrop.tsx new file mode 100644 index 000000000..f801e4a3f --- /dev/null +++ b/src/components/IconCrop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCrop: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCrop } diff --git a/src/components/IconCrop169.tsx b/src/components/IconCrop169.tsx new file mode 100644 index 000000000..810180912 --- /dev/null +++ b/src/components/IconCrop169.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCrop169: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCrop169 } diff --git a/src/components/IconCrop32.tsx b/src/components/IconCrop32.tsx new file mode 100644 index 000000000..aa91d52f3 --- /dev/null +++ b/src/components/IconCrop32.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCrop32: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCrop32 } diff --git a/src/components/IconCrop54.tsx b/src/components/IconCrop54.tsx new file mode 100644 index 000000000..9824ab245 --- /dev/null +++ b/src/components/IconCrop54.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCrop54: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCrop54 } diff --git a/src/components/IconCrop75.tsx b/src/components/IconCrop75.tsx new file mode 100644 index 000000000..ae3bcd887 --- /dev/null +++ b/src/components/IconCrop75.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCrop75: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCrop75 } diff --git a/src/components/IconCropDin.tsx b/src/components/IconCropDin.tsx new file mode 100644 index 000000000..2a7ca2d85 --- /dev/null +++ b/src/components/IconCropDin.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCropDin: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCropDin } diff --git a/src/components/IconCropFree.tsx b/src/components/IconCropFree.tsx new file mode 100644 index 000000000..8e45693c5 --- /dev/null +++ b/src/components/IconCropFree.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCropFree: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCropFree } diff --git a/src/components/IconCropLandscape.tsx b/src/components/IconCropLandscape.tsx new file mode 100644 index 000000000..f49e9c7df --- /dev/null +++ b/src/components/IconCropLandscape.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCropLandscape: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCropLandscape } diff --git a/src/components/IconCropOriginal.tsx b/src/components/IconCropOriginal.tsx new file mode 100644 index 000000000..28b940e6a --- /dev/null +++ b/src/components/IconCropOriginal.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCropOriginal: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCropOriginal } diff --git a/src/components/IconCropPortrait.tsx b/src/components/IconCropPortrait.tsx new file mode 100644 index 000000000..fc99f536e --- /dev/null +++ b/src/components/IconCropPortrait.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCropPortrait: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCropPortrait } diff --git a/src/components/IconCropRotate.tsx b/src/components/IconCropRotate.tsx new file mode 100644 index 000000000..a7ace62ec --- /dev/null +++ b/src/components/IconCropRotate.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCropRotate: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCropRotate } diff --git a/src/components/IconCropSquare.tsx b/src/components/IconCropSquare.tsx new file mode 100644 index 000000000..c942534b7 --- /dev/null +++ b/src/components/IconCropSquare.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconCropSquare: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconCropSquare } diff --git a/src/components/IconDashboard.tsx b/src/components/IconDashboard.tsx new file mode 100644 index 000000000..65970e4b1 --- /dev/null +++ b/src/components/IconDashboard.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDashboard: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDashboard } diff --git a/src/components/IconDataUsage.tsx b/src/components/IconDataUsage.tsx new file mode 100644 index 000000000..d3f11d95f --- /dev/null +++ b/src/components/IconDataUsage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDataUsage: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDataUsage } diff --git a/src/components/IconDateRange.tsx b/src/components/IconDateRange.tsx new file mode 100644 index 000000000..cd6515e2d --- /dev/null +++ b/src/components/IconDateRange.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDateRange: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDateRange } diff --git a/src/components/IconDeck.tsx b/src/components/IconDeck.tsx new file mode 100644 index 000000000..b0c1427ca --- /dev/null +++ b/src/components/IconDeck.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconDeck: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconDeck } diff --git a/src/components/IconDehaze.tsx b/src/components/IconDehaze.tsx new file mode 100644 index 000000000..4083761a2 --- /dev/null +++ b/src/components/IconDehaze.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDehaze: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDehaze } diff --git a/src/components/IconDelete.tsx b/src/components/IconDelete.tsx new file mode 100644 index 000000000..e2ea2b2d1 --- /dev/null +++ b/src/components/IconDelete.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDelete: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDelete } diff --git a/src/components/IconDeleteForever.tsx b/src/components/IconDeleteForever.tsx new file mode 100644 index 000000000..181bc2ea0 --- /dev/null +++ b/src/components/IconDeleteForever.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconDeleteForever: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconDeleteForever } diff --git a/src/components/IconDeleteOutline.tsx b/src/components/IconDeleteOutline.tsx new file mode 100644 index 000000000..6e89d8002 --- /dev/null +++ b/src/components/IconDeleteOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDeleteOutline: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDeleteOutline } diff --git a/src/components/IconDeleteSweep.tsx b/src/components/IconDeleteSweep.tsx new file mode 100644 index 000000000..b76c8a491 --- /dev/null +++ b/src/components/IconDeleteSweep.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDeleteSweep: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDeleteSweep } diff --git a/src/components/IconDepartureBoard.tsx b/src/components/IconDepartureBoard.tsx new file mode 100644 index 000000000..10e3f785b --- /dev/null +++ b/src/components/IconDepartureBoard.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDepartureBoard: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDepartureBoard } diff --git a/src/components/IconDescription.tsx b/src/components/IconDescription.tsx new file mode 100644 index 000000000..0d93c0d86 --- /dev/null +++ b/src/components/IconDescription.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDescription: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDescription } diff --git a/src/components/IconDesignServices.tsx b/src/components/IconDesignServices.tsx new file mode 100644 index 000000000..a96ca62ec --- /dev/null +++ b/src/components/IconDesignServices.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconDesignServices: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconDesignServices } diff --git a/src/components/IconDesktopAccessDisabled.tsx b/src/components/IconDesktopAccessDisabled.tsx new file mode 100644 index 000000000..62054698b --- /dev/null +++ b/src/components/IconDesktopAccessDisabled.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconDesktopAccessDisabled: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconDesktopAccessDisabled } diff --git a/src/components/IconDesktopMac.tsx b/src/components/IconDesktopMac.tsx new file mode 100644 index 000000000..f99bbc008 --- /dev/null +++ b/src/components/IconDesktopMac.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDesktopMac: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDesktopMac } diff --git a/src/components/IconDesktopWindows.tsx b/src/components/IconDesktopWindows.tsx new file mode 100644 index 000000000..27edf5518 --- /dev/null +++ b/src/components/IconDesktopWindows.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDesktopWindows: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDesktopWindows } diff --git a/src/components/IconDetails.tsx b/src/components/IconDetails.tsx new file mode 100644 index 000000000..4153b7c36 --- /dev/null +++ b/src/components/IconDetails.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconDetails: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDetails } diff --git a/src/components/IconDeveloperBoard.tsx b/src/components/IconDeveloperBoard.tsx new file mode 100644 index 000000000..855c7b312 --- /dev/null +++ b/src/components/IconDeveloperBoard.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDeveloperBoard: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDeveloperBoard } diff --git a/src/components/IconDeveloperMode.tsx b/src/components/IconDeveloperMode.tsx new file mode 100644 index 000000000..8e0b2c54e --- /dev/null +++ b/src/components/IconDeveloperMode.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDeveloperMode: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDeveloperMode } diff --git a/src/components/IconDeviceHub.tsx b/src/components/IconDeviceHub.tsx new file mode 100644 index 000000000..425728283 --- /dev/null +++ b/src/components/IconDeviceHub.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconDeviceHub: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconDeviceHub } diff --git a/src/components/IconDeviceUnknown.tsx b/src/components/IconDeviceUnknown.tsx new file mode 100644 index 000000000..ba8cfaf99 --- /dev/null +++ b/src/components/IconDeviceUnknown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDeviceUnknown: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDeviceUnknown } diff --git a/src/components/IconDevices.tsx b/src/components/IconDevices.tsx new file mode 100644 index 000000000..ab51b1097 --- /dev/null +++ b/src/components/IconDevices.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDevices: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDevices } diff --git a/src/components/IconDevicesOther.tsx b/src/components/IconDevicesOther.tsx new file mode 100644 index 000000000..9e3375fb3 --- /dev/null +++ b/src/components/IconDevicesOther.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDevicesOther: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDevicesOther } diff --git a/src/components/IconDialerSip.tsx b/src/components/IconDialerSip.tsx new file mode 100644 index 000000000..614593827 --- /dev/null +++ b/src/components/IconDialerSip.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDialerSip: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDialerSip } diff --git a/src/components/IconDialpad.tsx b/src/components/IconDialpad.tsx new file mode 100644 index 000000000..bc19a5692 --- /dev/null +++ b/src/components/IconDialpad.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDialpad: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDialpad } diff --git a/src/components/IconDirections.tsx b/src/components/IconDirections.tsx new file mode 100644 index 000000000..8c434bd88 --- /dev/null +++ b/src/components/IconDirections.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirections: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDirections } diff --git a/src/components/IconDirectionsBike.tsx b/src/components/IconDirectionsBike.tsx new file mode 100644 index 000000000..280a78811 --- /dev/null +++ b/src/components/IconDirectionsBike.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsBike: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDirectionsBike } diff --git a/src/components/IconDirectionsBoat.tsx b/src/components/IconDirectionsBoat.tsx new file mode 100644 index 000000000..4285f0265 --- /dev/null +++ b/src/components/IconDirectionsBoat.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsBoat: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDirectionsBoat } diff --git a/src/components/IconDirectionsBus.tsx b/src/components/IconDirectionsBus.tsx new file mode 100644 index 000000000..a5592a5a5 --- /dev/null +++ b/src/components/IconDirectionsBus.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsBus: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDirectionsBus } diff --git a/src/components/IconDirectionsCar.tsx b/src/components/IconDirectionsCar.tsx new file mode 100644 index 000000000..50d6ec56f --- /dev/null +++ b/src/components/IconDirectionsCar.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsCar: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDirectionsCar } diff --git a/src/components/IconDirectionsOff.tsx b/src/components/IconDirectionsOff.tsx new file mode 100644 index 000000000..5d646ff51 --- /dev/null +++ b/src/components/IconDirectionsOff.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsOff: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconDirectionsOff } diff --git a/src/components/IconDirectionsRailway.tsx b/src/components/IconDirectionsRailway.tsx new file mode 100644 index 000000000..e41538f93 --- /dev/null +++ b/src/components/IconDirectionsRailway.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsRailway: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDirectionsRailway } diff --git a/src/components/IconDirectionsRun.tsx b/src/components/IconDirectionsRun.tsx new file mode 100644 index 000000000..446abea1c --- /dev/null +++ b/src/components/IconDirectionsRun.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsRun: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDirectionsRun } diff --git a/src/components/IconDirectionsSubway.tsx b/src/components/IconDirectionsSubway.tsx new file mode 100644 index 000000000..cb674f338 --- /dev/null +++ b/src/components/IconDirectionsSubway.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsSubway: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDirectionsSubway } diff --git a/src/components/IconDirectionsTransit.tsx b/src/components/IconDirectionsTransit.tsx new file mode 100644 index 000000000..ad044e02c --- /dev/null +++ b/src/components/IconDirectionsTransit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsTransit: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDirectionsTransit } diff --git a/src/components/IconDirectionsWalk.tsx b/src/components/IconDirectionsWalk.tsx new file mode 100644 index 000000000..834d91b50 --- /dev/null +++ b/src/components/IconDirectionsWalk.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDirectionsWalk: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDirectionsWalk } diff --git a/src/components/IconDisabledByDefault.tsx b/src/components/IconDisabledByDefault.tsx new file mode 100644 index 000000000..0adaf0fa9 --- /dev/null +++ b/src/components/IconDisabledByDefault.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconDisabledByDefault: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDisabledByDefault } diff --git a/src/components/IconDiscFull.tsx b/src/components/IconDiscFull.tsx new file mode 100644 index 000000000..ce0c7dff0 --- /dev/null +++ b/src/components/IconDiscFull.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDiscFull: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDiscFull } diff --git a/src/components/IconDns.tsx b/src/components/IconDns.tsx new file mode 100644 index 000000000..35957e6d1 --- /dev/null +++ b/src/components/IconDns.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDns: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDns } diff --git a/src/components/IconDoNotStep.tsx b/src/components/IconDoNotStep.tsx new file mode 100644 index 000000000..4198a3710 --- /dev/null +++ b/src/components/IconDoNotStep.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconDoNotStep: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconDoNotStep } diff --git a/src/components/IconDoNotTouch.tsx b/src/components/IconDoNotTouch.tsx new file mode 100644 index 000000000..67ebcb716 --- /dev/null +++ b/src/components/IconDoNotTouch.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconDoNotTouch: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconDoNotTouch } diff --git a/src/components/IconDock.tsx b/src/components/IconDock.tsx new file mode 100644 index 000000000..8f0becb68 --- /dev/null +++ b/src/components/IconDock.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDock: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDock } diff --git a/src/components/IconDomain.tsx b/src/components/IconDomain.tsx new file mode 100644 index 000000000..354233fe9 --- /dev/null +++ b/src/components/IconDomain.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconDomain: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconDomain } diff --git a/src/components/IconDomainDisabled.tsx b/src/components/IconDomainDisabled.tsx new file mode 100644 index 000000000..78ebec9a4 --- /dev/null +++ b/src/components/IconDomainDisabled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDomainDisabled: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDomainDisabled } diff --git a/src/components/IconDomainVerification.tsx b/src/components/IconDomainVerification.tsx new file mode 100644 index 000000000..9ce09ce69 --- /dev/null +++ b/src/components/IconDomainVerification.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconDomainVerification: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconDomainVerification } diff --git a/src/components/IconDone.tsx b/src/components/IconDone.tsx new file mode 100644 index 000000000..e6e06faf0 --- /dev/null +++ b/src/components/IconDone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDone: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDone } diff --git a/src/components/IconDoneAll.tsx b/src/components/IconDoneAll.tsx new file mode 100644 index 000000000..03da9a3be --- /dev/null +++ b/src/components/IconDoneAll.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDoneAll: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDoneAll } diff --git a/src/components/IconDoneOutline.tsx b/src/components/IconDoneOutline.tsx new file mode 100644 index 000000000..ba8b628e4 --- /dev/null +++ b/src/components/IconDoneOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDoneOutline: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDoneOutline } diff --git a/src/components/IconDonutLarge.tsx b/src/components/IconDonutLarge.tsx new file mode 100644 index 000000000..b7559ab47 --- /dev/null +++ b/src/components/IconDonutLarge.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconDonutLarge: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconDonutLarge } diff --git a/src/components/IconDonutSmall.tsx b/src/components/IconDonutSmall.tsx new file mode 100644 index 000000000..38b632118 --- /dev/null +++ b/src/components/IconDonutSmall.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDonutSmall: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDonutSmall } diff --git a/src/components/IconDoubleArrow.tsx b/src/components/IconDoubleArrow.tsx new file mode 100644 index 000000000..daaec9add --- /dev/null +++ b/src/components/IconDoubleArrow.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconDoubleArrow: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconDoubleArrow } diff --git a/src/components/IconDrafts.tsx b/src/components/IconDrafts.tsx new file mode 100644 index 000000000..b9bacdcfc --- /dev/null +++ b/src/components/IconDrafts.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDrafts: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDrafts } diff --git a/src/components/IconDragHandle.tsx b/src/components/IconDragHandle.tsx new file mode 100644 index 000000000..dee612e98 --- /dev/null +++ b/src/components/IconDragHandle.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconDragHandle: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconDragHandle } diff --git a/src/components/IconDragIndicator.tsx b/src/components/IconDragIndicator.tsx new file mode 100644 index 000000000..f54c6b7af --- /dev/null +++ b/src/components/IconDragIndicator.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDragIndicator: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDragIndicator } diff --git a/src/components/IconDriveEta.tsx b/src/components/IconDriveEta.tsx new file mode 100644 index 000000000..91bce906c --- /dev/null +++ b/src/components/IconDriveEta.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDriveEta: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDriveEta } diff --git a/src/components/IconDry.tsx b/src/components/IconDry.tsx new file mode 100644 index 000000000..6fb20a6fa --- /dev/null +++ b/src/components/IconDry.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconDry: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconDry } diff --git a/src/components/IconDuo.tsx b/src/components/IconDuo.tsx new file mode 100644 index 000000000..2da3befc1 --- /dev/null +++ b/src/components/IconDuo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDuo: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDuo } diff --git a/src/components/IconDvr.tsx b/src/components/IconDvr.tsx new file mode 100644 index 000000000..10f048a90 --- /dev/null +++ b/src/components/IconDvr.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconDvr: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconDvr } diff --git a/src/components/IconDynamicFeed.tsx b/src/components/IconDynamicFeed.tsx new file mode 100644 index 000000000..a9123f00d --- /dev/null +++ b/src/components/IconDynamicFeed.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' +const IconDynamicFeed: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDynamicFeed } diff --git a/src/components/IconDynamicForm.tsx b/src/components/IconDynamicForm.tsx new file mode 100644 index 000000000..ea8a319c4 --- /dev/null +++ b/src/components/IconDynamicForm.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconDynamicForm: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconDynamicForm } diff --git a/src/components/IconEast.tsx b/src/components/IconEast.tsx new file mode 100644 index 000000000..5048c52ee --- /dev/null +++ b/src/components/IconEast.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconEast: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconEast } diff --git a/src/components/IconEco.tsx b/src/components/IconEco.tsx new file mode 100644 index 000000000..4ab79ff64 --- /dev/null +++ b/src/components/IconEco.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconEco: React.FC = (props: IconProps): any => ( + + + + + + + + + + +) + +export { IconEco } diff --git a/src/components/IconEdit.tsx b/src/components/IconEdit.tsx new file mode 100644 index 000000000..c319b97ec --- /dev/null +++ b/src/components/IconEdit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEdit: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconEdit } diff --git a/src/components/IconEditAttributes.tsx b/src/components/IconEditAttributes.tsx new file mode 100644 index 000000000..ed0f073d2 --- /dev/null +++ b/src/components/IconEditAttributes.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEditAttributes: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconEditAttributes } diff --git a/src/components/IconEditLocation.tsx b/src/components/IconEditLocation.tsx new file mode 100644 index 000000000..04658f906 --- /dev/null +++ b/src/components/IconEditLocation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEditLocation: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconEditLocation } diff --git a/src/components/IconEditRoad.tsx b/src/components/IconEditRoad.tsx new file mode 100644 index 000000000..de622cabe --- /dev/null +++ b/src/components/IconEditRoad.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconEditRoad: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + +) + +export { IconEditRoad } diff --git a/src/components/IconEject.tsx b/src/components/IconEject.tsx new file mode 100644 index 000000000..e20b6edd2 --- /dev/null +++ b/src/components/IconEject.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEject: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconEject } diff --git a/src/components/IconElderly.tsx b/src/components/IconElderly.tsx new file mode 100644 index 000000000..4f6d481c4 --- /dev/null +++ b/src/components/IconElderly.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconElderly: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconElderly } diff --git a/src/components/IconElectricBike.tsx b/src/components/IconElectricBike.tsx new file mode 100644 index 000000000..b97437b7c --- /dev/null +++ b/src/components/IconElectricBike.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconElectricBike: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconElectricBike } diff --git a/src/components/IconElectricCar.tsx b/src/components/IconElectricCar.tsx new file mode 100644 index 000000000..a24696620 --- /dev/null +++ b/src/components/IconElectricCar.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconElectricCar: React.FC = (props: IconProps): any => ( + + + + + + + + + +) + +export { IconElectricCar } diff --git a/src/components/IconElectricMoped.tsx b/src/components/IconElectricMoped.tsx new file mode 100644 index 000000000..177729b99 --- /dev/null +++ b/src/components/IconElectricMoped.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconElectricMoped: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + +) + +export { IconElectricMoped } diff --git a/src/components/IconElectricScooter.tsx b/src/components/IconElectricScooter.tsx new file mode 100644 index 000000000..9653c8281 --- /dev/null +++ b/src/components/IconElectricScooter.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconElectricScooter: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconElectricScooter } diff --git a/src/components/IconElectricalServices.tsx b/src/components/IconElectricalServices.tsx new file mode 100644 index 000000000..993906c45 --- /dev/null +++ b/src/components/IconElectricalServices.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconElectricalServices: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + +) + +export { IconElectricalServices } diff --git a/src/components/IconElevator.tsx b/src/components/IconElevator.tsx new file mode 100644 index 000000000..21371fc88 --- /dev/null +++ b/src/components/IconElevator.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconElevator: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconElevator } diff --git a/src/components/IconEmail.tsx b/src/components/IconEmail.tsx new file mode 100644 index 000000000..bd65f3064 --- /dev/null +++ b/src/components/IconEmail.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmail: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconEmail } diff --git a/src/components/IconEmojiEmotions.tsx b/src/components/IconEmojiEmotions.tsx new file mode 100644 index 000000000..0203c0541 --- /dev/null +++ b/src/components/IconEmojiEmotions.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiEmotions: React.FC = (props: IconProps): any => ( + + + + + + + + + +) + +export { IconEmojiEmotions } diff --git a/src/components/IconEmojiEvents.tsx b/src/components/IconEmojiEvents.tsx new file mode 100644 index 000000000..82ac6b0a9 --- /dev/null +++ b/src/components/IconEmojiEvents.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiEvents: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconEmojiEvents } diff --git a/src/components/IconEmojiFlags.tsx b/src/components/IconEmojiFlags.tsx new file mode 100644 index 000000000..9bfa190c1 --- /dev/null +++ b/src/components/IconEmojiFlags.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiFlags: React.FC = (props: IconProps): any => ( + + + + + + + + + +) + +export { IconEmojiFlags } diff --git a/src/components/IconEmojiFoodBeverage.tsx b/src/components/IconEmojiFoodBeverage.tsx new file mode 100644 index 000000000..a7c602e29 --- /dev/null +++ b/src/components/IconEmojiFoodBeverage.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiFoodBeverage: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconEmojiFoodBeverage } diff --git a/src/components/IconEmojiNature.tsx b/src/components/IconEmojiNature.tsx new file mode 100644 index 000000000..2649ffc42 --- /dev/null +++ b/src/components/IconEmojiNature.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiNature: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconEmojiNature } diff --git a/src/components/IconEmojiObjects.tsx b/src/components/IconEmojiObjects.tsx new file mode 100644 index 000000000..5581f1225 --- /dev/null +++ b/src/components/IconEmojiObjects.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiObjects: React.FC = (props: IconProps): any => ( + + + + + + + + + +) + +export { IconEmojiObjects } diff --git a/src/components/IconEmojiPeople.tsx b/src/components/IconEmojiPeople.tsx new file mode 100644 index 000000000..80f5a06d1 --- /dev/null +++ b/src/components/IconEmojiPeople.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiPeople: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconEmojiPeople } diff --git a/src/components/IconEmojiSymbols.tsx b/src/components/IconEmojiSymbols.tsx new file mode 100644 index 000000000..706a361e5 --- /dev/null +++ b/src/components/IconEmojiSymbols.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiSymbols: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + + + +) + +export { IconEmojiSymbols } diff --git a/src/components/IconEmojiTransportation.tsx b/src/components/IconEmojiTransportation.tsx new file mode 100644 index 000000000..7173d7a33 --- /dev/null +++ b/src/components/IconEmojiTransportation.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' +const IconEmojiTransportation: React.FC = ( + props: IconProps +): any => ( + + + + + + + + + + + + + + + + +) + +export { IconEmojiTransportation } diff --git a/src/components/IconEngineering.tsx b/src/components/IconEngineering.tsx new file mode 100644 index 000000000..1f4f60d97 --- /dev/null +++ b/src/components/IconEngineering.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' +const IconEngineering: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + +) + +export { IconEngineering } diff --git a/src/components/IconEnhancedEncryption.tsx b/src/components/IconEnhancedEncryption.tsx new file mode 100644 index 000000000..2995ef9b9 --- /dev/null +++ b/src/components/IconEnhancedEncryption.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconEnhancedEncryption: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconEnhancedEncryption } diff --git a/src/components/IconEqualizer.tsx b/src/components/IconEqualizer.tsx new file mode 100644 index 000000000..174592317 --- /dev/null +++ b/src/components/IconEqualizer.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEqualizer: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconEqualizer } diff --git a/src/components/IconError.tsx b/src/components/IconError.tsx new file mode 100644 index 000000000..1527b35af --- /dev/null +++ b/src/components/IconError.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconError: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconError } diff --git a/src/components/IconErrorOutline.tsx b/src/components/IconErrorOutline.tsx new file mode 100644 index 000000000..d44d01372 --- /dev/null +++ b/src/components/IconErrorOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconErrorOutline: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconErrorOutline } diff --git a/src/components/IconEscalator.tsx b/src/components/IconEscalator.tsx new file mode 100644 index 000000000..aeb31afcf --- /dev/null +++ b/src/components/IconEscalator.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconEscalator: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconEscalator } diff --git a/src/components/IconEscalatorWarning.tsx b/src/components/IconEscalatorWarning.tsx new file mode 100644 index 000000000..c607bd0fc --- /dev/null +++ b/src/components/IconEscalatorWarning.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconEscalatorWarning: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconEscalatorWarning } diff --git a/src/components/IconEuro.tsx b/src/components/IconEuro.tsx new file mode 100644 index 000000000..6b5fe1feb --- /dev/null +++ b/src/components/IconEuro.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconEuro: React.FC = (props: IconProps): any => ( + + + + + + + + + +) + +export { IconEuro } diff --git a/src/components/IconEuroSymbol.tsx b/src/components/IconEuroSymbol.tsx new file mode 100644 index 000000000..2db29bf72 --- /dev/null +++ b/src/components/IconEuroSymbol.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEuroSymbol: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconEuroSymbol } diff --git a/src/components/IconEvStation.tsx b/src/components/IconEvStation.tsx new file mode 100644 index 000000000..2db442f59 --- /dev/null +++ b/src/components/IconEvStation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEvStation: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconEvStation } diff --git a/src/components/IconEvent.tsx b/src/components/IconEvent.tsx new file mode 100644 index 000000000..3aa02ce61 --- /dev/null +++ b/src/components/IconEvent.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEvent: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconEvent } diff --git a/src/components/IconEventAvailable.tsx b/src/components/IconEventAvailable.tsx new file mode 100644 index 000000000..d15a4a770 --- /dev/null +++ b/src/components/IconEventAvailable.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEventAvailable: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconEventAvailable } diff --git a/src/components/IconEventBusy.tsx b/src/components/IconEventBusy.tsx new file mode 100644 index 000000000..fd94fd9e5 --- /dev/null +++ b/src/components/IconEventBusy.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEventBusy: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconEventBusy } diff --git a/src/components/IconEventNote.tsx b/src/components/IconEventNote.tsx new file mode 100644 index 000000000..038ec47fb --- /dev/null +++ b/src/components/IconEventNote.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconEventNote: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconEventNote } diff --git a/src/components/IconEventSeat.tsx b/src/components/IconEventSeat.tsx new file mode 100644 index 000000000..a130d9020 --- /dev/null +++ b/src/components/IconEventSeat.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconEventSeat: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconEventSeat } diff --git a/src/components/IconExitToApp.tsx b/src/components/IconExitToApp.tsx new file mode 100644 index 000000000..1340a3586 --- /dev/null +++ b/src/components/IconExitToApp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExitToApp: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconExitToApp } diff --git a/src/components/IconExpandLess.tsx b/src/components/IconExpandLess.tsx new file mode 100644 index 000000000..490547063 --- /dev/null +++ b/src/components/IconExpandLess.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExpandLess: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconExpandLess } diff --git a/src/components/IconExpandMore.tsx b/src/components/IconExpandMore.tsx new file mode 100644 index 000000000..f5153c467 --- /dev/null +++ b/src/components/IconExpandMore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExpandMore: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconExpandMore } diff --git a/src/components/IconExplicit.tsx b/src/components/IconExplicit.tsx new file mode 100644 index 000000000..775448ede --- /dev/null +++ b/src/components/IconExplicit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExplicit: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconExplicit } diff --git a/src/components/IconExplore.tsx b/src/components/IconExplore.tsx new file mode 100644 index 000000000..6e5de09d5 --- /dev/null +++ b/src/components/IconExplore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExplore: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconExplore } diff --git a/src/components/IconExploreOff.tsx b/src/components/IconExploreOff.tsx new file mode 100644 index 000000000..43a2f566f --- /dev/null +++ b/src/components/IconExploreOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExploreOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconExploreOff } diff --git a/src/components/IconExposure.tsx b/src/components/IconExposure.tsx new file mode 100644 index 000000000..11940db9a --- /dev/null +++ b/src/components/IconExposure.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExposure: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconExposure } diff --git a/src/components/IconExposureNeg1.tsx b/src/components/IconExposureNeg1.tsx new file mode 100644 index 000000000..660036b41 --- /dev/null +++ b/src/components/IconExposureNeg1.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExposureNeg1: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconExposureNeg1 } diff --git a/src/components/IconExposureNeg2.tsx b/src/components/IconExposureNeg2.tsx new file mode 100644 index 000000000..499846fc3 --- /dev/null +++ b/src/components/IconExposureNeg2.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExposureNeg2: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconExposureNeg2 } diff --git a/src/components/IconExposurePlus1.tsx b/src/components/IconExposurePlus1.tsx new file mode 100644 index 000000000..aedbe8cfe --- /dev/null +++ b/src/components/IconExposurePlus1.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExposurePlus1: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconExposurePlus1 } diff --git a/src/components/IconExposurePlus2.tsx b/src/components/IconExposurePlus2.tsx new file mode 100644 index 000000000..8d7c0b345 --- /dev/null +++ b/src/components/IconExposurePlus2.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExposurePlus2: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconExposurePlus2 } diff --git a/src/components/IconExposureZero.tsx b/src/components/IconExposureZero.tsx new file mode 100644 index 000000000..405984bd7 --- /dev/null +++ b/src/components/IconExposureZero.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconExposureZero: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconExposureZero } diff --git a/src/components/IconExtension.tsx b/src/components/IconExtension.tsx new file mode 100644 index 000000000..9a9f87692 --- /dev/null +++ b/src/components/IconExtension.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconExtension: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconExtension } diff --git a/src/components/IconFace.tsx b/src/components/IconFace.tsx new file mode 100644 index 000000000..421f00ef1 --- /dev/null +++ b/src/components/IconFace.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFace: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFace } diff --git a/src/components/IconFacebook.tsx b/src/components/IconFacebook.tsx new file mode 100644 index 000000000..8891ff5f7 --- /dev/null +++ b/src/components/IconFacebook.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconFacebook: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFacebook } diff --git a/src/components/IconFactCheck.tsx b/src/components/IconFactCheck.tsx new file mode 100644 index 000000000..12fc159d9 --- /dev/null +++ b/src/components/IconFactCheck.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconFactCheck: React.FC = (props: IconProps): any => ( + + + + + + + + + + +) + +export { IconFactCheck } diff --git a/src/components/IconFamilyRestroom.tsx b/src/components/IconFamilyRestroom.tsx new file mode 100644 index 000000000..a5df9d01a --- /dev/null +++ b/src/components/IconFamilyRestroom.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconFamilyRestroom: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconFamilyRestroom } diff --git a/src/components/IconFastForward.tsx b/src/components/IconFastForward.tsx new file mode 100644 index 000000000..3d74c2542 --- /dev/null +++ b/src/components/IconFastForward.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFastForward: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFastForward } diff --git a/src/components/IconFastRewind.tsx b/src/components/IconFastRewind.tsx new file mode 100644 index 000000000..18d881697 --- /dev/null +++ b/src/components/IconFastRewind.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFastRewind: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFastRewind } diff --git a/src/components/IconFastfood.tsx b/src/components/IconFastfood.tsx new file mode 100644 index 000000000..55136618e --- /dev/null +++ b/src/components/IconFastfood.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFastfood: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFastfood } diff --git a/src/components/IconFavorite.tsx b/src/components/IconFavorite.tsx new file mode 100644 index 000000000..60d20097b --- /dev/null +++ b/src/components/IconFavorite.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFavorite: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFavorite } diff --git a/src/components/IconFavoriteBorder.tsx b/src/components/IconFavoriteBorder.tsx new file mode 100644 index 000000000..01273e742 --- /dev/null +++ b/src/components/IconFavoriteBorder.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFavoriteBorder: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFavoriteBorder } diff --git a/src/components/IconFeaturedPlayList.tsx b/src/components/IconFeaturedPlayList.tsx new file mode 100644 index 000000000..aff1e5448 --- /dev/null +++ b/src/components/IconFeaturedPlayList.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFeaturedPlayList: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFeaturedPlayList } diff --git a/src/components/IconFeaturedVideo.tsx b/src/components/IconFeaturedVideo.tsx new file mode 100644 index 000000000..f500fe9a2 --- /dev/null +++ b/src/components/IconFeaturedVideo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFeaturedVideo: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFeaturedVideo } diff --git a/src/components/IconFeedback.tsx b/src/components/IconFeedback.tsx new file mode 100644 index 000000000..fd7e842cd --- /dev/null +++ b/src/components/IconFeedback.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFeedback: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFeedback } diff --git a/src/components/IconFence.tsx b/src/components/IconFence.tsx new file mode 100644 index 000000000..52876ff9c --- /dev/null +++ b/src/components/IconFence.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconFence: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconFence } diff --git a/src/components/IconFiberDvr.tsx b/src/components/IconFiberDvr.tsx new file mode 100644 index 000000000..e70c19eb6 --- /dev/null +++ b/src/components/IconFiberDvr.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconFiberDvr: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconFiberDvr } diff --git a/src/components/IconFiberManualRecord.tsx b/src/components/IconFiberManualRecord.tsx new file mode 100644 index 000000000..f3ba76ee0 --- /dev/null +++ b/src/components/IconFiberManualRecord.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFiberManualRecord: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFiberManualRecord } diff --git a/src/components/IconFiberNew.tsx b/src/components/IconFiberNew.tsx new file mode 100644 index 000000000..9b539c9a0 --- /dev/null +++ b/src/components/IconFiberNew.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconFiberNew: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconFiberNew } diff --git a/src/components/IconFiberPin.tsx b/src/components/IconFiberPin.tsx new file mode 100644 index 000000000..88743a59e --- /dev/null +++ b/src/components/IconFiberPin.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFiberPin: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFiberPin } diff --git a/src/components/IconFiberSmartRecord.tsx b/src/components/IconFiberSmartRecord.tsx new file mode 100644 index 000000000..6383aed3e --- /dev/null +++ b/src/components/IconFiberSmartRecord.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconFiberSmartRecord: React.FC = (props: IconProps): any => ( + + + + + + + +) + +export { IconFiberSmartRecord } diff --git a/src/components/IconFileCopy.tsx b/src/components/IconFileCopy.tsx new file mode 100644 index 000000000..a0574c43d --- /dev/null +++ b/src/components/IconFileCopy.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFileCopy: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFileCopy } diff --git a/src/components/IconFilter.tsx b/src/components/IconFilter.tsx new file mode 100644 index 000000000..1b7d16816 --- /dev/null +++ b/src/components/IconFilter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilter } diff --git a/src/components/IconFilter1.tsx b/src/components/IconFilter1.tsx new file mode 100644 index 000000000..043747439 --- /dev/null +++ b/src/components/IconFilter1.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter1: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilter1 } diff --git a/src/components/IconFilter2.tsx b/src/components/IconFilter2.tsx new file mode 100644 index 000000000..7d2c54da5 --- /dev/null +++ b/src/components/IconFilter2.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter2: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilter2 } diff --git a/src/components/IconFilter3.tsx b/src/components/IconFilter3.tsx new file mode 100644 index 000000000..24666f97b --- /dev/null +++ b/src/components/IconFilter3.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter3: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilter3 } diff --git a/src/components/IconFilter4.tsx b/src/components/IconFilter4.tsx new file mode 100644 index 000000000..4d0456029 --- /dev/null +++ b/src/components/IconFilter4.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter4: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilter4 } diff --git a/src/components/IconFilter5.tsx b/src/components/IconFilter5.tsx new file mode 100644 index 000000000..4e31a13d2 --- /dev/null +++ b/src/components/IconFilter5.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter5: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilter5 } diff --git a/src/components/IconFilter6.tsx b/src/components/IconFilter6.tsx new file mode 100644 index 000000000..70accc25a --- /dev/null +++ b/src/components/IconFilter6.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter6: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilter6 } diff --git a/src/components/IconFilter7.tsx b/src/components/IconFilter7.tsx new file mode 100644 index 000000000..873b345ca --- /dev/null +++ b/src/components/IconFilter7.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter7: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilter7 } diff --git a/src/components/IconFilter8.tsx b/src/components/IconFilter8.tsx new file mode 100644 index 000000000..1de338347 --- /dev/null +++ b/src/components/IconFilter8.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter8: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilter8 } diff --git a/src/components/IconFilter9.tsx b/src/components/IconFilter9.tsx new file mode 100644 index 000000000..765c2694a --- /dev/null +++ b/src/components/IconFilter9.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter9: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilter9 } diff --git a/src/components/IconFilter9Plus.tsx b/src/components/IconFilter9Plus.tsx new file mode 100644 index 000000000..acfb23aaf --- /dev/null +++ b/src/components/IconFilter9Plus.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilter9Plus: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilter9Plus } diff --git a/src/components/IconFilterAlt.tsx b/src/components/IconFilterAlt.tsx new file mode 100644 index 000000000..4014fa04b --- /dev/null +++ b/src/components/IconFilterAlt.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterAlt: React.FC = (props: IconProps): any => ( + + + + + + + +) + +export { IconFilterAlt } diff --git a/src/components/IconFilterBAndW.tsx b/src/components/IconFilterBAndW.tsx new file mode 100644 index 000000000..73166b59b --- /dev/null +++ b/src/components/IconFilterBAndW.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterBAndW: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilterBAndW } diff --git a/src/components/IconFilterCenterFocus.tsx b/src/components/IconFilterCenterFocus.tsx new file mode 100644 index 000000000..6601425b4 --- /dev/null +++ b/src/components/IconFilterCenterFocus.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterCenterFocus: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilterCenterFocus } diff --git a/src/components/IconFilterDrama.tsx b/src/components/IconFilterDrama.tsx new file mode 100644 index 000000000..08c9ecb85 --- /dev/null +++ b/src/components/IconFilterDrama.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterDrama: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilterDrama } diff --git a/src/components/IconFilterFrames.tsx b/src/components/IconFilterFrames.tsx new file mode 100644 index 000000000..0333af8fb --- /dev/null +++ b/src/components/IconFilterFrames.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterFrames: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilterFrames } diff --git a/src/components/IconFilterHdr.tsx b/src/components/IconFilterHdr.tsx new file mode 100644 index 000000000..d08cabe3a --- /dev/null +++ b/src/components/IconFilterHdr.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterHdr: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilterHdr } diff --git a/src/components/IconFilterList.tsx b/src/components/IconFilterList.tsx new file mode 100644 index 000000000..bbefc1262 --- /dev/null +++ b/src/components/IconFilterList.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterList: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilterList } diff --git a/src/components/IconFilterNone.tsx b/src/components/IconFilterNone.tsx new file mode 100644 index 000000000..71f27f654 --- /dev/null +++ b/src/components/IconFilterNone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterNone: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilterNone } diff --git a/src/components/IconFilterTiltShift.tsx b/src/components/IconFilterTiltShift.tsx new file mode 100644 index 000000000..845706139 --- /dev/null +++ b/src/components/IconFilterTiltShift.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterTiltShift: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilterTiltShift } diff --git a/src/components/IconFilterVintage.tsx b/src/components/IconFilterVintage.tsx new file mode 100644 index 000000000..083aa58f8 --- /dev/null +++ b/src/components/IconFilterVintage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFilterVintage: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFilterVintage } diff --git a/src/components/IconFindInPage.tsx b/src/components/IconFindInPage.tsx new file mode 100644 index 000000000..18d0b6804 --- /dev/null +++ b/src/components/IconFindInPage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFindInPage: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFindInPage } diff --git a/src/components/IconFindReplace.tsx b/src/components/IconFindReplace.tsx new file mode 100644 index 000000000..eba9f9d52 --- /dev/null +++ b/src/components/IconFindReplace.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFindReplace: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFindReplace } diff --git a/src/components/IconFingerprint.tsx b/src/components/IconFingerprint.tsx new file mode 100644 index 000000000..efa446d2c --- /dev/null +++ b/src/components/IconFingerprint.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFingerprint: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFingerprint } diff --git a/src/components/IconFireExtinguisher.tsx b/src/components/IconFireExtinguisher.tsx new file mode 100644 index 000000000..ec1170883 --- /dev/null +++ b/src/components/IconFireExtinguisher.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconFireExtinguisher: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconFireExtinguisher } diff --git a/src/components/IconFireplace.tsx b/src/components/IconFireplace.tsx new file mode 100644 index 000000000..c1e8c01fc --- /dev/null +++ b/src/components/IconFireplace.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconFireplace: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconFireplace } diff --git a/src/components/IconFirstPage.tsx b/src/components/IconFirstPage.tsx new file mode 100644 index 000000000..1dc68f83f --- /dev/null +++ b/src/components/IconFirstPage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFirstPage: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFirstPage } diff --git a/src/components/IconFitnessCenter.tsx b/src/components/IconFitnessCenter.tsx new file mode 100644 index 000000000..858b66a41 --- /dev/null +++ b/src/components/IconFitnessCenter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFitnessCenter: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFitnessCenter } diff --git a/src/components/IconFlag.tsx b/src/components/IconFlag.tsx new file mode 100644 index 000000000..10ea3af5e --- /dev/null +++ b/src/components/IconFlag.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlag: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFlag } diff --git a/src/components/IconFlaky.tsx b/src/components/IconFlaky.tsx new file mode 100644 index 000000000..8e493501a --- /dev/null +++ b/src/components/IconFlaky.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlaky: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconFlaky } diff --git a/src/components/IconFlare.tsx b/src/components/IconFlare.tsx new file mode 100644 index 000000000..3aa7f1efb --- /dev/null +++ b/src/components/IconFlare.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlare: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFlare } diff --git a/src/components/IconFlashAuto.tsx b/src/components/IconFlashAuto.tsx new file mode 100644 index 000000000..78d26b6cc --- /dev/null +++ b/src/components/IconFlashAuto.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlashAuto: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFlashAuto } diff --git a/src/components/IconFlashOff.tsx b/src/components/IconFlashOff.tsx new file mode 100644 index 000000000..4bc659325 --- /dev/null +++ b/src/components/IconFlashOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlashOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFlashOff } diff --git a/src/components/IconFlashOn.tsx b/src/components/IconFlashOn.tsx new file mode 100644 index 000000000..c3b97c542 --- /dev/null +++ b/src/components/IconFlashOn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlashOn: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFlashOn } diff --git a/src/components/IconFlight.tsx b/src/components/IconFlight.tsx new file mode 100644 index 000000000..931e81b5d --- /dev/null +++ b/src/components/IconFlight.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlight: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFlight } diff --git a/src/components/IconFlightLand.tsx b/src/components/IconFlightLand.tsx new file mode 100644 index 000000000..64cc1b285 --- /dev/null +++ b/src/components/IconFlightLand.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlightLand: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconFlightLand } diff --git a/src/components/IconFlightTakeoff.tsx b/src/components/IconFlightTakeoff.tsx new file mode 100644 index 000000000..6e4cfab4c --- /dev/null +++ b/src/components/IconFlightTakeoff.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlightTakeoff: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconFlightTakeoff } diff --git a/src/components/IconFlip.tsx b/src/components/IconFlip.tsx new file mode 100644 index 000000000..fb4990535 --- /dev/null +++ b/src/components/IconFlip.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlip: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFlip } diff --git a/src/components/IconFlipCameraAndroid.tsx b/src/components/IconFlipCameraAndroid.tsx new file mode 100644 index 000000000..72103d563 --- /dev/null +++ b/src/components/IconFlipCameraAndroid.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlipCameraAndroid: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconFlipCameraAndroid } diff --git a/src/components/IconFlipCameraIos.tsx b/src/components/IconFlipCameraIos.tsx new file mode 100644 index 000000000..3c0efe638 --- /dev/null +++ b/src/components/IconFlipCameraIos.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlipCameraIos: React.FC = (props: IconProps): any => ( + + + + + + + + + + +) + +export { IconFlipCameraIos } diff --git a/src/components/IconFlipToBack.tsx b/src/components/IconFlipToBack.tsx new file mode 100644 index 000000000..effc6cc74 --- /dev/null +++ b/src/components/IconFlipToBack.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlipToBack: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFlipToBack } diff --git a/src/components/IconFlipToFront.tsx b/src/components/IconFlipToFront.tsx new file mode 100644 index 000000000..b180ee89d --- /dev/null +++ b/src/components/IconFlipToFront.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFlipToFront: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFlipToFront } diff --git a/src/components/IconFolder.tsx b/src/components/IconFolder.tsx new file mode 100644 index 000000000..4a6625f35 --- /dev/null +++ b/src/components/IconFolder.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFolder: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFolder } diff --git a/src/components/IconFolderOpen.tsx b/src/components/IconFolderOpen.tsx new file mode 100644 index 000000000..4dacc3eb6 --- /dev/null +++ b/src/components/IconFolderOpen.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFolderOpen: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFolderOpen } diff --git a/src/components/IconFolderShared.tsx b/src/components/IconFolderShared.tsx new file mode 100644 index 000000000..66918b954 --- /dev/null +++ b/src/components/IconFolderShared.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFolderShared: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFolderShared } diff --git a/src/components/IconFolderSpecial.tsx b/src/components/IconFolderSpecial.tsx new file mode 100644 index 000000000..06abafeb8 --- /dev/null +++ b/src/components/IconFolderSpecial.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFolderSpecial: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFolderSpecial } diff --git a/src/components/IconFollowTheSigns.tsx b/src/components/IconFollowTheSigns.tsx new file mode 100644 index 000000000..9215fea5d --- /dev/null +++ b/src/components/IconFollowTheSigns.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconFollowTheSigns: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFollowTheSigns } diff --git a/src/components/IconFontDownload.tsx b/src/components/IconFontDownload.tsx new file mode 100644 index 000000000..78a29d6cc --- /dev/null +++ b/src/components/IconFontDownload.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconFontDownload: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFontDownload } diff --git a/src/components/IconFoodBank.tsx b/src/components/IconFoodBank.tsx new file mode 100644 index 000000000..3647d96c1 --- /dev/null +++ b/src/components/IconFoodBank.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconFoodBank: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFoodBank } diff --git a/src/components/IconFormatAlignCenter.tsx b/src/components/IconFormatAlignCenter.tsx new file mode 100644 index 000000000..73b546a39 --- /dev/null +++ b/src/components/IconFormatAlignCenter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatAlignCenter: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFormatAlignCenter } diff --git a/src/components/IconFormatAlignJustify.tsx b/src/components/IconFormatAlignJustify.tsx new file mode 100644 index 000000000..b139a425a --- /dev/null +++ b/src/components/IconFormatAlignJustify.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatAlignJustify: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFormatAlignJustify } diff --git a/src/components/IconFormatAlignLeft.tsx b/src/components/IconFormatAlignLeft.tsx new file mode 100644 index 000000000..c7de0cca1 --- /dev/null +++ b/src/components/IconFormatAlignLeft.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatAlignLeft: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFormatAlignLeft } diff --git a/src/components/IconFormatAlignRight.tsx b/src/components/IconFormatAlignRight.tsx new file mode 100644 index 000000000..9fe3d8832 --- /dev/null +++ b/src/components/IconFormatAlignRight.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatAlignRight: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFormatAlignRight } diff --git a/src/components/IconFormatBold.tsx b/src/components/IconFormatBold.tsx new file mode 100644 index 000000000..764973439 --- /dev/null +++ b/src/components/IconFormatBold.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatBold: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFormatBold } diff --git a/src/components/IconFormatClear.tsx b/src/components/IconFormatClear.tsx new file mode 100644 index 000000000..95f9d1c7f --- /dev/null +++ b/src/components/IconFormatClear.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatClear: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFormatClear } diff --git a/src/components/IconFormatColorReset.tsx b/src/components/IconFormatColorReset.tsx new file mode 100644 index 000000000..bf6e2d5b4 --- /dev/null +++ b/src/components/IconFormatColorReset.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatColorReset: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFormatColorReset } diff --git a/src/components/IconFormatIndentDecrease.tsx b/src/components/IconFormatIndentDecrease.tsx new file mode 100644 index 000000000..ac5b29000 --- /dev/null +++ b/src/components/IconFormatIndentDecrease.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatIndentDecrease: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconFormatIndentDecrease } diff --git a/src/components/IconFormatIndentIncrease.tsx b/src/components/IconFormatIndentIncrease.tsx new file mode 100644 index 000000000..fec687b2d --- /dev/null +++ b/src/components/IconFormatIndentIncrease.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatIndentIncrease: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconFormatIndentIncrease } diff --git a/src/components/IconFormatItalic.tsx b/src/components/IconFormatItalic.tsx new file mode 100644 index 000000000..8860d947b --- /dev/null +++ b/src/components/IconFormatItalic.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatItalic: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFormatItalic } diff --git a/src/components/IconFormatLineSpacing.tsx b/src/components/IconFormatLineSpacing.tsx new file mode 100644 index 000000000..38a25694d --- /dev/null +++ b/src/components/IconFormatLineSpacing.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatLineSpacing: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFormatLineSpacing } diff --git a/src/components/IconFormatListBulleted.tsx b/src/components/IconFormatListBulleted.tsx new file mode 100644 index 000000000..445fcebf0 --- /dev/null +++ b/src/components/IconFormatListBulleted.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatListBulleted: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFormatListBulleted } diff --git a/src/components/IconFormatListNumbered.tsx b/src/components/IconFormatListNumbered.tsx new file mode 100644 index 000000000..50935d5de --- /dev/null +++ b/src/components/IconFormatListNumbered.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatListNumbered: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFormatListNumbered } diff --git a/src/components/IconFormatListNumberedRtl.tsx b/src/components/IconFormatListNumberedRtl.tsx new file mode 100644 index 000000000..bef343ff8 --- /dev/null +++ b/src/components/IconFormatListNumberedRtl.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatListNumberedRtl: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconFormatListNumberedRtl } diff --git a/src/components/IconFormatPaint.tsx b/src/components/IconFormatPaint.tsx new file mode 100644 index 000000000..c06c57da8 --- /dev/null +++ b/src/components/IconFormatPaint.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatPaint: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFormatPaint } diff --git a/src/components/IconFormatQuote.tsx b/src/components/IconFormatQuote.tsx new file mode 100644 index 000000000..cce1f6ad3 --- /dev/null +++ b/src/components/IconFormatQuote.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatQuote: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFormatQuote } diff --git a/src/components/IconFormatShapes.tsx b/src/components/IconFormatShapes.tsx new file mode 100644 index 000000000..bc8456ec5 --- /dev/null +++ b/src/components/IconFormatShapes.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatShapes: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFormatShapes } diff --git a/src/components/IconFormatSize.tsx b/src/components/IconFormatSize.tsx new file mode 100644 index 000000000..470aa0e84 --- /dev/null +++ b/src/components/IconFormatSize.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatSize: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFormatSize } diff --git a/src/components/IconFormatStrikethrough.tsx b/src/components/IconFormatStrikethrough.tsx new file mode 100644 index 000000000..8e111c23e --- /dev/null +++ b/src/components/IconFormatStrikethrough.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatStrikethrough: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconFormatStrikethrough } diff --git a/src/components/IconFormatTextdirectionLToR.tsx b/src/components/IconFormatTextdirectionLToR.tsx new file mode 100644 index 000000000..35406251d --- /dev/null +++ b/src/components/IconFormatTextdirectionLToR.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatTextdirectionLToR: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconFormatTextdirectionLToR } diff --git a/src/components/IconFormatTextdirectionRToL.tsx b/src/components/IconFormatTextdirectionRToL.tsx new file mode 100644 index 000000000..181349df5 --- /dev/null +++ b/src/components/IconFormatTextdirectionRToL.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatTextdirectionRToL: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconFormatTextdirectionRToL } diff --git a/src/components/IconFormatUnderlined.tsx b/src/components/IconFormatUnderlined.tsx new file mode 100644 index 000000000..46bd249a0 --- /dev/null +++ b/src/components/IconFormatUnderlined.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFormatUnderlined: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFormatUnderlined } diff --git a/src/components/IconForum.tsx b/src/components/IconForum.tsx new file mode 100644 index 000000000..42981fdb7 --- /dev/null +++ b/src/components/IconForum.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconForum: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconForum } diff --git a/src/components/IconForward.tsx b/src/components/IconForward.tsx new file mode 100644 index 000000000..76a9ca027 --- /dev/null +++ b/src/components/IconForward.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconForward: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconForward } diff --git a/src/components/IconForward10.tsx b/src/components/IconForward10.tsx new file mode 100644 index 000000000..2e09db17e --- /dev/null +++ b/src/components/IconForward10.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconForward10: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconForward10 } diff --git a/src/components/IconForward30.tsx b/src/components/IconForward30.tsx new file mode 100644 index 000000000..0bb5dc9cc --- /dev/null +++ b/src/components/IconForward30.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconForward30: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconForward30 } diff --git a/src/components/IconForward5.tsx b/src/components/IconForward5.tsx new file mode 100644 index 000000000..0b9004beb --- /dev/null +++ b/src/components/IconForward5.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconForward5: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconForward5 } diff --git a/src/components/IconForwardToInbox.tsx b/src/components/IconForwardToInbox.tsx new file mode 100644 index 000000000..f88116e2a --- /dev/null +++ b/src/components/IconForwardToInbox.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconForwardToInbox: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconForwardToInbox } diff --git a/src/components/IconFoundation.tsx b/src/components/IconFoundation.tsx new file mode 100644 index 000000000..3597bdb07 --- /dev/null +++ b/src/components/IconFoundation.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconFoundation: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFoundation } diff --git a/src/components/IconFreeBreakfast.tsx b/src/components/IconFreeBreakfast.tsx new file mode 100644 index 000000000..82365395f --- /dev/null +++ b/src/components/IconFreeBreakfast.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFreeBreakfast: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFreeBreakfast } diff --git a/src/components/IconFullscreen.tsx b/src/components/IconFullscreen.tsx new file mode 100644 index 000000000..71fbe55e4 --- /dev/null +++ b/src/components/IconFullscreen.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFullscreen: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFullscreen } diff --git a/src/components/IconFullscreenExit.tsx b/src/components/IconFullscreenExit.tsx new file mode 100644 index 000000000..9a70f09df --- /dev/null +++ b/src/components/IconFullscreenExit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFullscreenExit: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFullscreenExit } diff --git a/src/components/IconFunctions.tsx b/src/components/IconFunctions.tsx new file mode 100644 index 000000000..c959aa59a --- /dev/null +++ b/src/components/IconFunctions.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconFunctions: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconFunctions } diff --git a/src/components/IconGTranslate.tsx b/src/components/IconGTranslate.tsx new file mode 100644 index 000000000..e33301e66 --- /dev/null +++ b/src/components/IconGTranslate.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGTranslate: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGTranslate } diff --git a/src/components/IconGamepad.tsx b/src/components/IconGamepad.tsx new file mode 100644 index 000000000..2af8d755c --- /dev/null +++ b/src/components/IconGamepad.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGamepad: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGamepad } diff --git a/src/components/IconGames.tsx b/src/components/IconGames.tsx new file mode 100644 index 000000000..8506eaee2 --- /dev/null +++ b/src/components/IconGames.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGames: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGames } diff --git a/src/components/IconGavel.tsx b/src/components/IconGavel.tsx new file mode 100644 index 000000000..411e24a57 --- /dev/null +++ b/src/components/IconGavel.tsx @@ -0,0 +1,42 @@ +import React from 'react' +import { IconProps } from './types' +const IconGavel: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + +) + +export { IconGavel } diff --git a/src/components/IconGesture.tsx b/src/components/IconGesture.tsx new file mode 100644 index 000000000..9def30698 --- /dev/null +++ b/src/components/IconGesture.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGesture: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGesture } diff --git a/src/components/IconGetApp.tsx b/src/components/IconGetApp.tsx new file mode 100644 index 000000000..e141c7050 --- /dev/null +++ b/src/components/IconGetApp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGetApp: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGetApp } diff --git a/src/components/IconGif.tsx b/src/components/IconGif.tsx new file mode 100644 index 000000000..a1e7cc146 --- /dev/null +++ b/src/components/IconGif.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconGif: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconGif } diff --git a/src/components/IconGolfCourse.tsx b/src/components/IconGolfCourse.tsx new file mode 100644 index 000000000..daa1564ed --- /dev/null +++ b/src/components/IconGolfCourse.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconGolfCourse: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconGolfCourse } diff --git a/src/components/IconGpsFixed.tsx b/src/components/IconGpsFixed.tsx new file mode 100644 index 000000000..24c61def1 --- /dev/null +++ b/src/components/IconGpsFixed.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGpsFixed: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGpsFixed } diff --git a/src/components/IconGpsNotFixed.tsx b/src/components/IconGpsNotFixed.tsx new file mode 100644 index 000000000..8db0bd265 --- /dev/null +++ b/src/components/IconGpsNotFixed.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGpsNotFixed: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGpsNotFixed } diff --git a/src/components/IconGpsOff.tsx b/src/components/IconGpsOff.tsx new file mode 100644 index 000000000..2a4b544eb --- /dev/null +++ b/src/components/IconGpsOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGpsOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGpsOff } diff --git a/src/components/IconGrade.tsx b/src/components/IconGrade.tsx new file mode 100644 index 000000000..10176f447 --- /dev/null +++ b/src/components/IconGrade.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGrade: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGrade } diff --git a/src/components/IconGradient.tsx b/src/components/IconGradient.tsx new file mode 100644 index 000000000..a147c631d --- /dev/null +++ b/src/components/IconGradient.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGradient: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGradient } diff --git a/src/components/IconGrading.tsx b/src/components/IconGrading.tsx new file mode 100644 index 000000000..ce856c10c --- /dev/null +++ b/src/components/IconGrading.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconGrading: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconGrading } diff --git a/src/components/IconGrain.tsx b/src/components/IconGrain.tsx new file mode 100644 index 000000000..7be54a665 --- /dev/null +++ b/src/components/IconGrain.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGrain: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGrain } diff --git a/src/components/IconGraphicEq.tsx b/src/components/IconGraphicEq.tsx new file mode 100644 index 000000000..be2c34370 --- /dev/null +++ b/src/components/IconGraphicEq.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGraphicEq: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGraphicEq } diff --git a/src/components/IconGrass.tsx b/src/components/IconGrass.tsx new file mode 100644 index 000000000..cdb2f07ca --- /dev/null +++ b/src/components/IconGrass.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconGrass: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGrass } diff --git a/src/components/IconGridOff.tsx b/src/components/IconGridOff.tsx new file mode 100644 index 000000000..32a0845cc --- /dev/null +++ b/src/components/IconGridOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGridOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGridOff } diff --git a/src/components/IconGridOn.tsx b/src/components/IconGridOn.tsx new file mode 100644 index 000000000..7af25c443 --- /dev/null +++ b/src/components/IconGridOn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGridOn: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGridOn } diff --git a/src/components/IconGroup.tsx b/src/components/IconGroup.tsx new file mode 100644 index 000000000..d2e041363 --- /dev/null +++ b/src/components/IconGroup.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGroup: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGroup } diff --git a/src/components/IconGroupAdd.tsx b/src/components/IconGroupAdd.tsx new file mode 100644 index 000000000..c4b9b813f --- /dev/null +++ b/src/components/IconGroupAdd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGroupAdd: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGroupAdd } diff --git a/src/components/IconGroupWork.tsx b/src/components/IconGroupWork.tsx new file mode 100644 index 000000000..caec4847f --- /dev/null +++ b/src/components/IconGroupWork.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconGroupWork: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconGroupWork } diff --git a/src/components/IconGroups.tsx b/src/components/IconGroups.tsx new file mode 100644 index 000000000..b65b38d84 --- /dev/null +++ b/src/components/IconGroups.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconGroups: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconGroups } diff --git a/src/components/IconHandyman.tsx b/src/components/IconHandyman.tsx new file mode 100644 index 000000000..39a8e4502 --- /dev/null +++ b/src/components/IconHandyman.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconHandyman: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + +) + +export { IconHandyman } diff --git a/src/components/IconHd.tsx b/src/components/IconHd.tsx new file mode 100644 index 000000000..a31df09a9 --- /dev/null +++ b/src/components/IconHd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHd: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHd } diff --git a/src/components/IconHdrOff.tsx b/src/components/IconHdrOff.tsx new file mode 100644 index 000000000..22604693e --- /dev/null +++ b/src/components/IconHdrOff.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { IconProps } from './types' +const IconHdrOff: React.FC = (props: IconProps): any => ( + + + +) + +export { IconHdrOff } diff --git a/src/components/IconHdrOn.tsx b/src/components/IconHdrOn.tsx new file mode 100644 index 000000000..0c85ed9e9 --- /dev/null +++ b/src/components/IconHdrOn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHdrOn: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHdrOn } diff --git a/src/components/IconHdrStrong.tsx b/src/components/IconHdrStrong.tsx new file mode 100644 index 000000000..b0e372d65 --- /dev/null +++ b/src/components/IconHdrStrong.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHdrStrong: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHdrStrong } diff --git a/src/components/IconHdrWeak.tsx b/src/components/IconHdrWeak.tsx new file mode 100644 index 000000000..3d83c8a73 --- /dev/null +++ b/src/components/IconHdrWeak.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHdrWeak: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHdrWeak } diff --git a/src/components/IconHeadset.tsx b/src/components/IconHeadset.tsx new file mode 100644 index 000000000..5e150e4a1 --- /dev/null +++ b/src/components/IconHeadset.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHeadset: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHeadset } diff --git a/src/components/IconHeadsetMic.tsx b/src/components/IconHeadsetMic.tsx new file mode 100644 index 000000000..cab76d1fd --- /dev/null +++ b/src/components/IconHeadsetMic.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHeadsetMic: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHeadsetMic } diff --git a/src/components/IconHealing.tsx b/src/components/IconHealing.tsx new file mode 100644 index 000000000..396631a11 --- /dev/null +++ b/src/components/IconHealing.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHealing: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHealing } diff --git a/src/components/IconHearing.tsx b/src/components/IconHearing.tsx new file mode 100644 index 000000000..d61da98e3 --- /dev/null +++ b/src/components/IconHearing.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHearing: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHearing } diff --git a/src/components/IconHearingDisabled.tsx b/src/components/IconHearingDisabled.tsx new file mode 100644 index 000000000..a471158c1 --- /dev/null +++ b/src/components/IconHearingDisabled.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconHearingDisabled: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconHearingDisabled } diff --git a/src/components/IconHeight.tsx b/src/components/IconHeight.tsx new file mode 100644 index 000000000..f685ff8d8 --- /dev/null +++ b/src/components/IconHeight.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconHeight: React.FC = (props: IconProps): any => ( + + + + + + + + + +) + +export { IconHeight } diff --git a/src/components/IconHelp.tsx b/src/components/IconHelp.tsx new file mode 100644 index 000000000..63e947c19 --- /dev/null +++ b/src/components/IconHelp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHelp: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHelp } diff --git a/src/components/IconHelpCenter.tsx b/src/components/IconHelpCenter.tsx new file mode 100644 index 000000000..603771ff2 --- /dev/null +++ b/src/components/IconHelpCenter.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconHelpCenter: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconHelpCenter } diff --git a/src/components/IconHelpOutline.tsx b/src/components/IconHelpOutline.tsx new file mode 100644 index 000000000..98e86f0e5 --- /dev/null +++ b/src/components/IconHelpOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHelpOutline: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHelpOutline } diff --git a/src/components/IconHighQuality.tsx b/src/components/IconHighQuality.tsx new file mode 100644 index 000000000..68e560987 --- /dev/null +++ b/src/components/IconHighQuality.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHighQuality: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHighQuality } diff --git a/src/components/IconHighlight.tsx b/src/components/IconHighlight.tsx new file mode 100644 index 000000000..a01fc3d57 --- /dev/null +++ b/src/components/IconHighlight.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconHighlight: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconHighlight } diff --git a/src/components/IconHighlightAlt.tsx b/src/components/IconHighlightAlt.tsx new file mode 100644 index 000000000..4bce51950 --- /dev/null +++ b/src/components/IconHighlightAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHighlightAlt: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHighlightAlt } diff --git a/src/components/IconHighlightOff.tsx b/src/components/IconHighlightOff.tsx new file mode 100644 index 000000000..724a91e54 --- /dev/null +++ b/src/components/IconHighlightOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHighlightOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHighlightOff } diff --git a/src/components/IconHistory.tsx b/src/components/IconHistory.tsx new file mode 100644 index 000000000..8bf6ba61a --- /dev/null +++ b/src/components/IconHistory.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHistory: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHistory } diff --git a/src/components/IconHistoryEdu.tsx b/src/components/IconHistoryEdu.tsx new file mode 100644 index 000000000..6327d1a41 --- /dev/null +++ b/src/components/IconHistoryEdu.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconHistoryEdu: React.FC = (props: IconProps): any => ( + + + + + + + + + + +) + +export { IconHistoryEdu } diff --git a/src/components/IconHistoryToggleOff.tsx b/src/components/IconHistoryToggleOff.tsx new file mode 100644 index 000000000..3cbd923d4 --- /dev/null +++ b/src/components/IconHistoryToggleOff.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconHistoryToggleOff: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconHistoryToggleOff } diff --git a/src/components/IconHome.tsx b/src/components/IconHome.tsx new file mode 100644 index 000000000..068e663f8 --- /dev/null +++ b/src/components/IconHome.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHome: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHome } diff --git a/src/components/IconHomeRepairService.tsx b/src/components/IconHomeRepairService.tsx new file mode 100644 index 000000000..2fe618690 --- /dev/null +++ b/src/components/IconHomeRepairService.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconHomeRepairService: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconHomeRepairService } diff --git a/src/components/IconHomeWork.tsx b/src/components/IconHomeWork.tsx new file mode 100644 index 000000000..0f809bab8 --- /dev/null +++ b/src/components/IconHomeWork.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconHomeWork: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconHomeWork } diff --git a/src/components/IconHorizontalDistribute.tsx b/src/components/IconHorizontalDistribute.tsx new file mode 100644 index 000000000..a696dbd0d --- /dev/null +++ b/src/components/IconHorizontalDistribute.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconHorizontalDistribute: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconHorizontalDistribute } diff --git a/src/components/IconHorizontalRule.tsx b/src/components/IconHorizontalRule.tsx new file mode 100644 index 000000000..fbafe08ec --- /dev/null +++ b/src/components/IconHorizontalRule.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconHorizontalRule: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconHorizontalRule } diff --git a/src/components/IconHorizontalSplit.tsx b/src/components/IconHorizontalSplit.tsx new file mode 100644 index 000000000..4e1f53b37 --- /dev/null +++ b/src/components/IconHorizontalSplit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHorizontalSplit: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHorizontalSplit } diff --git a/src/components/IconHotTub.tsx b/src/components/IconHotTub.tsx new file mode 100644 index 000000000..6cb976d07 --- /dev/null +++ b/src/components/IconHotTub.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconHotTub: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconHotTub } diff --git a/src/components/IconHotel.tsx b/src/components/IconHotel.tsx new file mode 100644 index 000000000..135d0aeaa --- /dev/null +++ b/src/components/IconHotel.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHotel: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHotel } diff --git a/src/components/IconHourglassBottom.tsx b/src/components/IconHourglassBottom.tsx new file mode 100644 index 000000000..32335b49d --- /dev/null +++ b/src/components/IconHourglassBottom.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconHourglassBottom: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconHourglassBottom } diff --git a/src/components/IconHourglassDisabled.tsx b/src/components/IconHourglassDisabled.tsx new file mode 100644 index 000000000..7fb7c6267 --- /dev/null +++ b/src/components/IconHourglassDisabled.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconHourglassDisabled: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconHourglassDisabled } diff --git a/src/components/IconHourglassEmpty.tsx b/src/components/IconHourglassEmpty.tsx new file mode 100644 index 000000000..5960f05fe --- /dev/null +++ b/src/components/IconHourglassEmpty.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHourglassEmpty: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHourglassEmpty } diff --git a/src/components/IconHourglassFull.tsx b/src/components/IconHourglassFull.tsx new file mode 100644 index 000000000..f13d8ddcb --- /dev/null +++ b/src/components/IconHourglassFull.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHourglassFull: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHourglassFull } diff --git a/src/components/IconHourglassTop.tsx b/src/components/IconHourglassTop.tsx new file mode 100644 index 000000000..7972c54fa --- /dev/null +++ b/src/components/IconHourglassTop.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconHourglassTop: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconHourglassTop } diff --git a/src/components/IconHouse.tsx b/src/components/IconHouse.tsx new file mode 100644 index 000000000..1e377fac0 --- /dev/null +++ b/src/components/IconHouse.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconHouse: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconHouse } diff --git a/src/components/IconHouseSiding.tsx b/src/components/IconHouseSiding.tsx new file mode 100644 index 000000000..c3c4fd86c --- /dev/null +++ b/src/components/IconHouseSiding.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconHouseSiding: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHouseSiding } diff --git a/src/components/IconHowToReg.tsx b/src/components/IconHowToReg.tsx new file mode 100644 index 000000000..0d635c0d9 --- /dev/null +++ b/src/components/IconHowToReg.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconHowToReg: React.FC = (props: IconProps): any => ( + + + + + + + +) + +export { IconHowToReg } diff --git a/src/components/IconHowToVote.tsx b/src/components/IconHowToVote.tsx new file mode 100644 index 000000000..3bb3920d5 --- /dev/null +++ b/src/components/IconHowToVote.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHowToVote: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHowToVote } diff --git a/src/components/IconHttp.tsx b/src/components/IconHttp.tsx new file mode 100644 index 000000000..2ba14c44a --- /dev/null +++ b/src/components/IconHttp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHttp: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHttp } diff --git a/src/components/IconHttps.tsx b/src/components/IconHttps.tsx new file mode 100644 index 000000000..e842bff2b --- /dev/null +++ b/src/components/IconHttps.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconHttps: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconHttps } diff --git a/src/components/IconHvac.tsx b/src/components/IconHvac.tsx new file mode 100644 index 000000000..907877a0f --- /dev/null +++ b/src/components/IconHvac.tsx @@ -0,0 +1,35 @@ +import React from 'react' +import { IconProps } from './types' +const IconHvac: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconHvac } diff --git a/src/components/IconImage.tsx b/src/components/IconImage.tsx new file mode 100644 index 000000000..c9c12a366 --- /dev/null +++ b/src/components/IconImage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconImage: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconImage } diff --git a/src/components/IconImageAspectRatio.tsx b/src/components/IconImageAspectRatio.tsx new file mode 100644 index 000000000..86d0b9eab --- /dev/null +++ b/src/components/IconImageAspectRatio.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconImageAspectRatio: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconImageAspectRatio } diff --git a/src/components/IconImageNotSupported.tsx b/src/components/IconImageNotSupported.tsx new file mode 100644 index 000000000..7e9ef9831 --- /dev/null +++ b/src/components/IconImageNotSupported.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconImageNotSupported: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconImageNotSupported } diff --git a/src/components/IconImageSearch.tsx b/src/components/IconImageSearch.tsx new file mode 100644 index 000000000..52a26b43f --- /dev/null +++ b/src/components/IconImageSearch.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconImageSearch: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconImageSearch } diff --git a/src/components/IconImportContacts.tsx b/src/components/IconImportContacts.tsx new file mode 100644 index 000000000..699f4d1c9 --- /dev/null +++ b/src/components/IconImportContacts.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconImportContacts: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconImportContacts } diff --git a/src/components/IconImportExport.tsx b/src/components/IconImportExport.tsx new file mode 100644 index 000000000..8c16683b9 --- /dev/null +++ b/src/components/IconImportExport.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconImportExport: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconImportExport } diff --git a/src/components/IconImportantDevices.tsx b/src/components/IconImportantDevices.tsx new file mode 100644 index 000000000..abb65e4bc --- /dev/null +++ b/src/components/IconImportantDevices.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconImportantDevices: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconImportantDevices } diff --git a/src/components/IconInbox.tsx b/src/components/IconInbox.tsx new file mode 100644 index 000000000..2feeb797b --- /dev/null +++ b/src/components/IconInbox.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInbox: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconInbox } diff --git a/src/components/IconIndeterminateCheckBox.tsx b/src/components/IconIndeterminateCheckBox.tsx new file mode 100644 index 000000000..53d02ecf4 --- /dev/null +++ b/src/components/IconIndeterminateCheckBox.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' +const IconIndeterminateCheckBox: React.FC = ( + props: IconProps +): any => ( + + + + + + + + + + + + +) + +export { IconIndeterminateCheckBox } diff --git a/src/components/IconInfo.tsx b/src/components/IconInfo.tsx new file mode 100644 index 000000000..622cbf8b2 --- /dev/null +++ b/src/components/IconInfo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInfo: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconInfo } diff --git a/src/components/IconInput.tsx b/src/components/IconInput.tsx new file mode 100644 index 000000000..5fa4661a9 --- /dev/null +++ b/src/components/IconInput.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInput: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconInput } diff --git a/src/components/IconInsertChart.tsx b/src/components/IconInsertChart.tsx new file mode 100644 index 000000000..682ced888 --- /dev/null +++ b/src/components/IconInsertChart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsertChart: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconInsertChart } diff --git a/src/components/IconInsertChartOutlined.tsx b/src/components/IconInsertChartOutlined.tsx new file mode 100644 index 000000000..1c83a8292 --- /dev/null +++ b/src/components/IconInsertChartOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsertChartOutlined: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconInsertChartOutlined } diff --git a/src/components/IconInsertComment.tsx b/src/components/IconInsertComment.tsx new file mode 100644 index 000000000..f0df0e667 --- /dev/null +++ b/src/components/IconInsertComment.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsertComment: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconInsertComment } diff --git a/src/components/IconInsertDriveFile.tsx b/src/components/IconInsertDriveFile.tsx new file mode 100644 index 000000000..5c6e62ec8 --- /dev/null +++ b/src/components/IconInsertDriveFile.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsertDriveFile: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconInsertDriveFile } diff --git a/src/components/IconInsertEmoticon.tsx b/src/components/IconInsertEmoticon.tsx new file mode 100644 index 000000000..dc2d4230e --- /dev/null +++ b/src/components/IconInsertEmoticon.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsertEmoticon: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconInsertEmoticon } diff --git a/src/components/IconInsertInvitation.tsx b/src/components/IconInsertInvitation.tsx new file mode 100644 index 000000000..f5391140e --- /dev/null +++ b/src/components/IconInsertInvitation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsertInvitation: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconInsertInvitation } diff --git a/src/components/IconInsertLink.tsx b/src/components/IconInsertLink.tsx new file mode 100644 index 000000000..81d243990 --- /dev/null +++ b/src/components/IconInsertLink.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsertLink: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconInsertLink } diff --git a/src/components/IconInsertPhoto.tsx b/src/components/IconInsertPhoto.tsx new file mode 100644 index 000000000..9419022ac --- /dev/null +++ b/src/components/IconInsertPhoto.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsertPhoto: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconInsertPhoto } diff --git a/src/components/IconInsights.tsx b/src/components/IconInsights.tsx new file mode 100644 index 000000000..6df3f0046 --- /dev/null +++ b/src/components/IconInsights.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconInsights: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconInsights } diff --git a/src/components/IconIntegrationInstructions.tsx b/src/components/IconIntegrationInstructions.tsx new file mode 100644 index 000000000..55b52b7be --- /dev/null +++ b/src/components/IconIntegrationInstructions.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconIntegrationInstructions: React.FC = ( + props: IconProps +): any => ( + + + + + + + + + +) + +export { IconIntegrationInstructions } diff --git a/src/components/IconInvertColors.tsx b/src/components/IconInvertColors.tsx new file mode 100644 index 000000000..71a2ed547 --- /dev/null +++ b/src/components/IconInvertColors.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInvertColors: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconInvertColors } diff --git a/src/components/IconInvertColorsOff.tsx b/src/components/IconInvertColorsOff.tsx new file mode 100644 index 000000000..e617eb9a2 --- /dev/null +++ b/src/components/IconInvertColorsOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconInvertColorsOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconInvertColorsOff } diff --git a/src/components/IconIso.tsx b/src/components/IconIso.tsx new file mode 100644 index 000000000..6a95c51ac --- /dev/null +++ b/src/components/IconIso.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconIso: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconIso } diff --git a/src/components/IconKeyboard.tsx b/src/components/IconKeyboard.tsx new file mode 100644 index 000000000..c8b26b027 --- /dev/null +++ b/src/components/IconKeyboard.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboard: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconKeyboard } diff --git a/src/components/IconKeyboardArrowDown.tsx b/src/components/IconKeyboardArrowDown.tsx new file mode 100644 index 000000000..404047ea7 --- /dev/null +++ b/src/components/IconKeyboardArrowDown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardArrowDown: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconKeyboardArrowDown } diff --git a/src/components/IconKeyboardArrowLeft.tsx b/src/components/IconKeyboardArrowLeft.tsx new file mode 100644 index 000000000..6bdeb666d --- /dev/null +++ b/src/components/IconKeyboardArrowLeft.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardArrowLeft: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconKeyboardArrowLeft } diff --git a/src/components/IconKeyboardArrowRight.tsx b/src/components/IconKeyboardArrowRight.tsx new file mode 100644 index 000000000..0410e7620 --- /dev/null +++ b/src/components/IconKeyboardArrowRight.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardArrowRight: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconKeyboardArrowRight } diff --git a/src/components/IconKeyboardArrowUp.tsx b/src/components/IconKeyboardArrowUp.tsx new file mode 100644 index 000000000..48cbfcb2f --- /dev/null +++ b/src/components/IconKeyboardArrowUp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardArrowUp: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconKeyboardArrowUp } diff --git a/src/components/IconKeyboardBackspace.tsx b/src/components/IconKeyboardBackspace.tsx new file mode 100644 index 000000000..8d092e9ba --- /dev/null +++ b/src/components/IconKeyboardBackspace.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardBackspace: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconKeyboardBackspace } diff --git a/src/components/IconKeyboardCapslock.tsx b/src/components/IconKeyboardCapslock.tsx new file mode 100644 index 000000000..65e8f9d27 --- /dev/null +++ b/src/components/IconKeyboardCapslock.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardCapslock: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconKeyboardCapslock } diff --git a/src/components/IconKeyboardHide.tsx b/src/components/IconKeyboardHide.tsx new file mode 100644 index 000000000..92ea20aa6 --- /dev/null +++ b/src/components/IconKeyboardHide.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardHide: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconKeyboardHide } diff --git a/src/components/IconKeyboardReturn.tsx b/src/components/IconKeyboardReturn.tsx new file mode 100644 index 000000000..73c7fc682 --- /dev/null +++ b/src/components/IconKeyboardReturn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardReturn: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconKeyboardReturn } diff --git a/src/components/IconKeyboardTab.tsx b/src/components/IconKeyboardTab.tsx new file mode 100644 index 000000000..051cec2a1 --- /dev/null +++ b/src/components/IconKeyboardTab.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardTab: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconKeyboardTab } diff --git a/src/components/IconKeyboardVoice.tsx b/src/components/IconKeyboardVoice.tsx new file mode 100644 index 000000000..31d106548 --- /dev/null +++ b/src/components/IconKeyboardVoice.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKeyboardVoice: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconKeyboardVoice } diff --git a/src/components/IconKingBed.tsx b/src/components/IconKingBed.tsx new file mode 100644 index 000000000..57d089799 --- /dev/null +++ b/src/components/IconKingBed.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconKingBed: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconKingBed } diff --git a/src/components/IconKitchen.tsx b/src/components/IconKitchen.tsx new file mode 100644 index 000000000..d3de93ccb --- /dev/null +++ b/src/components/IconKitchen.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconKitchen: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconKitchen } diff --git a/src/components/IconLabel.tsx b/src/components/IconLabel.tsx new file mode 100644 index 000000000..396071cd6 --- /dev/null +++ b/src/components/IconLabel.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLabel: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLabel } diff --git a/src/components/IconLabelImportant.tsx b/src/components/IconLabelImportant.tsx new file mode 100644 index 000000000..f07b56742 --- /dev/null +++ b/src/components/IconLabelImportant.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLabelImportant: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLabelImportant } diff --git a/src/components/IconLabelOff.tsx b/src/components/IconLabelOff.tsx new file mode 100644 index 000000000..1c04d45fe --- /dev/null +++ b/src/components/IconLabelOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLabelOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLabelOff } diff --git a/src/components/IconLandscape.tsx b/src/components/IconLandscape.tsx new file mode 100644 index 000000000..34383cde4 --- /dev/null +++ b/src/components/IconLandscape.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLandscape: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLandscape } diff --git a/src/components/IconLanguage.tsx b/src/components/IconLanguage.tsx new file mode 100644 index 000000000..e11e54015 --- /dev/null +++ b/src/components/IconLanguage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLanguage: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLanguage } diff --git a/src/components/IconLaptop.tsx b/src/components/IconLaptop.tsx new file mode 100644 index 000000000..cbff74130 --- /dev/null +++ b/src/components/IconLaptop.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconLaptop: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconLaptop } diff --git a/src/components/IconLaptopChromebook.tsx b/src/components/IconLaptopChromebook.tsx new file mode 100644 index 000000000..a53a06e5f --- /dev/null +++ b/src/components/IconLaptopChromebook.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLaptopChromebook: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLaptopChromebook } diff --git a/src/components/IconLaptopMac.tsx b/src/components/IconLaptopMac.tsx new file mode 100644 index 000000000..db1911928 --- /dev/null +++ b/src/components/IconLaptopMac.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLaptopMac: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLaptopMac } diff --git a/src/components/IconLaptopWindows.tsx b/src/components/IconLaptopWindows.tsx new file mode 100644 index 000000000..a6d554633 --- /dev/null +++ b/src/components/IconLaptopWindows.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLaptopWindows: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLaptopWindows } diff --git a/src/components/IconLastPage.tsx b/src/components/IconLastPage.tsx new file mode 100644 index 000000000..12e0a4b75 --- /dev/null +++ b/src/components/IconLastPage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLastPage: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLastPage } diff --git a/src/components/IconLaunch.tsx b/src/components/IconLaunch.tsx new file mode 100644 index 000000000..e3a88d62e --- /dev/null +++ b/src/components/IconLaunch.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLaunch: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLaunch } diff --git a/src/components/IconLayers.tsx b/src/components/IconLayers.tsx new file mode 100644 index 000000000..d19f0ec77 --- /dev/null +++ b/src/components/IconLayers.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLayers: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLayers } diff --git a/src/components/IconLayersClear.tsx b/src/components/IconLayersClear.tsx new file mode 100644 index 000000000..935214404 --- /dev/null +++ b/src/components/IconLayersClear.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLayersClear: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLayersClear } diff --git a/src/components/IconLeaderboard.tsx b/src/components/IconLeaderboard.tsx new file mode 100644 index 000000000..37b002011 --- /dev/null +++ b/src/components/IconLeaderboard.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconLeaderboard: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconLeaderboard } diff --git a/src/components/IconLeakAdd.tsx b/src/components/IconLeakAdd.tsx new file mode 100644 index 000000000..b0fce0af0 --- /dev/null +++ b/src/components/IconLeakAdd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLeakAdd: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLeakAdd } diff --git a/src/components/IconLeakRemove.tsx b/src/components/IconLeakRemove.tsx new file mode 100644 index 000000000..42bde89b3 --- /dev/null +++ b/src/components/IconLeakRemove.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLeakRemove: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLeakRemove } diff --git a/src/components/IconLegendToggle.tsx b/src/components/IconLegendToggle.tsx new file mode 100644 index 000000000..80edce952 --- /dev/null +++ b/src/components/IconLegendToggle.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconLegendToggle: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconLegendToggle } diff --git a/src/components/IconLens.tsx b/src/components/IconLens.tsx new file mode 100644 index 000000000..686034e0d --- /dev/null +++ b/src/components/IconLens.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLens: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLens } diff --git a/src/components/IconLibraryAdd.tsx b/src/components/IconLibraryAdd.tsx new file mode 100644 index 000000000..9b41e5dd8 --- /dev/null +++ b/src/components/IconLibraryAdd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLibraryAdd: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLibraryAdd } diff --git a/src/components/IconLibraryAddCheck.tsx b/src/components/IconLibraryAddCheck.tsx new file mode 100644 index 000000000..b8b812c2a --- /dev/null +++ b/src/components/IconLibraryAddCheck.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLibraryAddCheck: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLibraryAddCheck } diff --git a/src/components/IconLibraryBooks.tsx b/src/components/IconLibraryBooks.tsx new file mode 100644 index 000000000..8551e8baf --- /dev/null +++ b/src/components/IconLibraryBooks.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLibraryBooks: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLibraryBooks } diff --git a/src/components/IconLibraryMusic.tsx b/src/components/IconLibraryMusic.tsx new file mode 100644 index 000000000..85b92b170 --- /dev/null +++ b/src/components/IconLibraryMusic.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLibraryMusic: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLibraryMusic } diff --git a/src/components/IconLineStyle.tsx b/src/components/IconLineStyle.tsx new file mode 100644 index 000000000..f4cc7c0c2 --- /dev/null +++ b/src/components/IconLineStyle.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconLineStyle: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconLineStyle } diff --git a/src/components/IconLineWeight.tsx b/src/components/IconLineWeight.tsx new file mode 100644 index 000000000..650159af8 --- /dev/null +++ b/src/components/IconLineWeight.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconLineWeight: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconLineWeight } diff --git a/src/components/IconLinearScale.tsx b/src/components/IconLinearScale.tsx new file mode 100644 index 000000000..a9c42da95 --- /dev/null +++ b/src/components/IconLinearScale.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconLinearScale: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconLinearScale } diff --git a/src/components/IconLink.tsx b/src/components/IconLink.tsx new file mode 100644 index 000000000..da8fa7126 --- /dev/null +++ b/src/components/IconLink.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLink: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLink } diff --git a/src/components/IconLinkOff.tsx b/src/components/IconLinkOff.tsx new file mode 100644 index 000000000..720e33ac1 --- /dev/null +++ b/src/components/IconLinkOff.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconLinkOff: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconLinkOff } diff --git a/src/components/IconLinkedCamera.tsx b/src/components/IconLinkedCamera.tsx new file mode 100644 index 000000000..5cf288847 --- /dev/null +++ b/src/components/IconLinkedCamera.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconLinkedCamera: React.FC = (props: IconProps): any => ( + + + + + + + +) + +export { IconLinkedCamera } diff --git a/src/components/IconList.tsx b/src/components/IconList.tsx new file mode 100644 index 000000000..2b0c99f43 --- /dev/null +++ b/src/components/IconList.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconList: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconList } diff --git a/src/components/IconListAlt.tsx b/src/components/IconListAlt.tsx new file mode 100644 index 000000000..52f8b9882 --- /dev/null +++ b/src/components/IconListAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconListAlt: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconListAlt } diff --git a/src/components/IconLiveHelp.tsx b/src/components/IconLiveHelp.tsx new file mode 100644 index 000000000..ec7134c80 --- /dev/null +++ b/src/components/IconLiveHelp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLiveHelp: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLiveHelp } diff --git a/src/components/IconLiveTv.tsx b/src/components/IconLiveTv.tsx new file mode 100644 index 000000000..8e8cc5b84 --- /dev/null +++ b/src/components/IconLiveTv.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLiveTv: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLiveTv } diff --git a/src/components/IconLocalActivity.tsx b/src/components/IconLocalActivity.tsx new file mode 100644 index 000000000..d4f6093aa --- /dev/null +++ b/src/components/IconLocalActivity.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalActivity: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalActivity } diff --git a/src/components/IconLocalAirport.tsx b/src/components/IconLocalAirport.tsx new file mode 100644 index 000000000..be16f0724 --- /dev/null +++ b/src/components/IconLocalAirport.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalAirport: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconLocalAirport } diff --git a/src/components/IconLocalAtm.tsx b/src/components/IconLocalAtm.tsx new file mode 100644 index 000000000..ee28c8bd1 --- /dev/null +++ b/src/components/IconLocalAtm.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalAtm: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalAtm } diff --git a/src/components/IconLocalBar.tsx b/src/components/IconLocalBar.tsx new file mode 100644 index 000000000..1c3e87d17 --- /dev/null +++ b/src/components/IconLocalBar.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalBar: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalBar } diff --git a/src/components/IconLocalCafe.tsx b/src/components/IconLocalCafe.tsx new file mode 100644 index 000000000..805b64650 --- /dev/null +++ b/src/components/IconLocalCafe.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalCafe: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalCafe } diff --git a/src/components/IconLocalCarWash.tsx b/src/components/IconLocalCarWash.tsx new file mode 100644 index 000000000..fbc751bca --- /dev/null +++ b/src/components/IconLocalCarWash.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalCarWash: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalCarWash } diff --git a/src/components/IconLocalConvenienceStore.tsx b/src/components/IconLocalConvenienceStore.tsx new file mode 100644 index 000000000..23182f0a1 --- /dev/null +++ b/src/components/IconLocalConvenienceStore.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalConvenienceStore: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconLocalConvenienceStore } diff --git a/src/components/IconLocalDining.tsx b/src/components/IconLocalDining.tsx new file mode 100644 index 000000000..64262bf3a --- /dev/null +++ b/src/components/IconLocalDining.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalDining: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalDining } diff --git a/src/components/IconLocalDrink.tsx b/src/components/IconLocalDrink.tsx new file mode 100644 index 000000000..fc8c051d3 --- /dev/null +++ b/src/components/IconLocalDrink.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalDrink: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalDrink } diff --git a/src/components/IconLocalFireDepartment.tsx b/src/components/IconLocalFireDepartment.tsx new file mode 100644 index 000000000..fefa4ccd6 --- /dev/null +++ b/src/components/IconLocalFireDepartment.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalFireDepartment: React.FC = ( + props: IconProps +): any => ( + + + + + + + + +) + +export { IconLocalFireDepartment } diff --git a/src/components/IconLocalFlorist.tsx b/src/components/IconLocalFlorist.tsx new file mode 100644 index 000000000..7237226df --- /dev/null +++ b/src/components/IconLocalFlorist.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalFlorist: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalFlorist } diff --git a/src/components/IconLocalGasStation.tsx b/src/components/IconLocalGasStation.tsx new file mode 100644 index 000000000..f22859484 --- /dev/null +++ b/src/components/IconLocalGasStation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalGasStation: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalGasStation } diff --git a/src/components/IconLocalGroceryStore.tsx b/src/components/IconLocalGroceryStore.tsx new file mode 100644 index 000000000..120c21e04 --- /dev/null +++ b/src/components/IconLocalGroceryStore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalGroceryStore: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalGroceryStore } diff --git a/src/components/IconLocalHospital.tsx b/src/components/IconLocalHospital.tsx new file mode 100644 index 000000000..3d7a7ea6f --- /dev/null +++ b/src/components/IconLocalHospital.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalHospital: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalHospital } diff --git a/src/components/IconLocalHotel.tsx b/src/components/IconLocalHotel.tsx new file mode 100644 index 000000000..6f6a97cfe --- /dev/null +++ b/src/components/IconLocalHotel.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalHotel: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalHotel } diff --git a/src/components/IconLocalLaundryService.tsx b/src/components/IconLocalLaundryService.tsx new file mode 100644 index 000000000..d561ff21b --- /dev/null +++ b/src/components/IconLocalLaundryService.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalLaundryService: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconLocalLaundryService } diff --git a/src/components/IconLocalLibrary.tsx b/src/components/IconLocalLibrary.tsx new file mode 100644 index 000000000..ec21e5c78 --- /dev/null +++ b/src/components/IconLocalLibrary.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalLibrary: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalLibrary } diff --git a/src/components/IconLocalMall.tsx b/src/components/IconLocalMall.tsx new file mode 100644 index 000000000..392f945cf --- /dev/null +++ b/src/components/IconLocalMall.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalMall: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalMall } diff --git a/src/components/IconLocalMovies.tsx b/src/components/IconLocalMovies.tsx new file mode 100644 index 000000000..e593bc7d2 --- /dev/null +++ b/src/components/IconLocalMovies.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalMovies: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalMovies } diff --git a/src/components/IconLocalOffer.tsx b/src/components/IconLocalOffer.tsx new file mode 100644 index 000000000..373ce7e49 --- /dev/null +++ b/src/components/IconLocalOffer.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalOffer: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalOffer } diff --git a/src/components/IconLocalParking.tsx b/src/components/IconLocalParking.tsx new file mode 100644 index 000000000..c1dd2dc55 --- /dev/null +++ b/src/components/IconLocalParking.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalParking: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalParking } diff --git a/src/components/IconLocalPharmacy.tsx b/src/components/IconLocalPharmacy.tsx new file mode 100644 index 000000000..434e6e26a --- /dev/null +++ b/src/components/IconLocalPharmacy.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalPharmacy: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalPharmacy } diff --git a/src/components/IconLocalPhone.tsx b/src/components/IconLocalPhone.tsx new file mode 100644 index 000000000..5998a3e53 --- /dev/null +++ b/src/components/IconLocalPhone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalPhone: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalPhone } diff --git a/src/components/IconLocalPizza.tsx b/src/components/IconLocalPizza.tsx new file mode 100644 index 000000000..df5e92c7d --- /dev/null +++ b/src/components/IconLocalPizza.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalPizza: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalPizza } diff --git a/src/components/IconLocalPlay.tsx b/src/components/IconLocalPlay.tsx new file mode 100644 index 000000000..19be0afb9 --- /dev/null +++ b/src/components/IconLocalPlay.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalPlay: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalPlay } diff --git a/src/components/IconLocalPolice.tsx b/src/components/IconLocalPolice.tsx new file mode 100644 index 000000000..3725d5ae2 --- /dev/null +++ b/src/components/IconLocalPolice.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalPolice: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalPolice } diff --git a/src/components/IconLocalPostOffice.tsx b/src/components/IconLocalPostOffice.tsx new file mode 100644 index 000000000..d0bca1636 --- /dev/null +++ b/src/components/IconLocalPostOffice.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalPostOffice: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalPostOffice } diff --git a/src/components/IconLocalPrintshop.tsx b/src/components/IconLocalPrintshop.tsx new file mode 100644 index 000000000..ca96c97ba --- /dev/null +++ b/src/components/IconLocalPrintshop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalPrintshop: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalPrintshop } diff --git a/src/components/IconLocalSee.tsx b/src/components/IconLocalSee.tsx new file mode 100644 index 000000000..e86d4417a --- /dev/null +++ b/src/components/IconLocalSee.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalSee: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconLocalSee } diff --git a/src/components/IconLocalShipping.tsx b/src/components/IconLocalShipping.tsx new file mode 100644 index 000000000..72493653d --- /dev/null +++ b/src/components/IconLocalShipping.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalShipping: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalShipping } diff --git a/src/components/IconLocalTaxi.tsx b/src/components/IconLocalTaxi.tsx new file mode 100644 index 000000000..14e227611 --- /dev/null +++ b/src/components/IconLocalTaxi.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocalTaxi: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocalTaxi } diff --git a/src/components/IconLocationCity.tsx b/src/components/IconLocationCity.tsx new file mode 100644 index 000000000..009902508 --- /dev/null +++ b/src/components/IconLocationCity.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocationCity: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocationCity } diff --git a/src/components/IconLocationDisabled.tsx b/src/components/IconLocationDisabled.tsx new file mode 100644 index 000000000..84ea0c27e --- /dev/null +++ b/src/components/IconLocationDisabled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocationDisabled: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocationDisabled } diff --git a/src/components/IconLocationOff.tsx b/src/components/IconLocationOff.tsx new file mode 100644 index 000000000..9771b0e11 --- /dev/null +++ b/src/components/IconLocationOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocationOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocationOff } diff --git a/src/components/IconLocationOn.tsx b/src/components/IconLocationOn.tsx new file mode 100644 index 000000000..e9a7308f8 --- /dev/null +++ b/src/components/IconLocationOn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocationOn: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocationOn } diff --git a/src/components/IconLocationSearching.tsx b/src/components/IconLocationSearching.tsx new file mode 100644 index 000000000..869bf526f --- /dev/null +++ b/src/components/IconLocationSearching.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLocationSearching: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLocationSearching } diff --git a/src/components/IconLock.tsx b/src/components/IconLock.tsx new file mode 100644 index 000000000..c5cff07b3 --- /dev/null +++ b/src/components/IconLock.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLock: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLock } diff --git a/src/components/IconLockOpen.tsx b/src/components/IconLockOpen.tsx new file mode 100644 index 000000000..5f06c0d12 --- /dev/null +++ b/src/components/IconLockOpen.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLockOpen: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLockOpen } diff --git a/src/components/IconLogin.tsx b/src/components/IconLogin.tsx new file mode 100644 index 000000000..d51ef29fa --- /dev/null +++ b/src/components/IconLogin.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconLogin: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconLogin } diff --git a/src/components/IconLooks.tsx b/src/components/IconLooks.tsx new file mode 100644 index 000000000..1c3d98ca2 --- /dev/null +++ b/src/components/IconLooks.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLooks: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLooks } diff --git a/src/components/IconLooks3.tsx b/src/components/IconLooks3.tsx new file mode 100644 index 000000000..a8f56c81b --- /dev/null +++ b/src/components/IconLooks3.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLooks3: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLooks3 } diff --git a/src/components/IconLooks4.tsx b/src/components/IconLooks4.tsx new file mode 100644 index 000000000..fba8fd004 --- /dev/null +++ b/src/components/IconLooks4.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLooks4: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLooks4 } diff --git a/src/components/IconLooks5.tsx b/src/components/IconLooks5.tsx new file mode 100644 index 000000000..8f24a2637 --- /dev/null +++ b/src/components/IconLooks5.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLooks5: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLooks5 } diff --git a/src/components/IconLooks6.tsx b/src/components/IconLooks6.tsx new file mode 100644 index 000000000..5c4246f86 --- /dev/null +++ b/src/components/IconLooks6.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLooks6: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLooks6 } diff --git a/src/components/IconLooksOne.tsx b/src/components/IconLooksOne.tsx new file mode 100644 index 000000000..80f11e260 --- /dev/null +++ b/src/components/IconLooksOne.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLooksOne: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLooksOne } diff --git a/src/components/IconLooksTwo.tsx b/src/components/IconLooksTwo.tsx new file mode 100644 index 000000000..332b54de0 --- /dev/null +++ b/src/components/IconLooksTwo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLooksTwo: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLooksTwo } diff --git a/src/components/IconLoop.tsx b/src/components/IconLoop.tsx new file mode 100644 index 000000000..5883169ed --- /dev/null +++ b/src/components/IconLoop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLoop: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLoop } diff --git a/src/components/IconLoupe.tsx b/src/components/IconLoupe.tsx new file mode 100644 index 000000000..e00e75d45 --- /dev/null +++ b/src/components/IconLoupe.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLoupe: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLoupe } diff --git a/src/components/IconLowPriority.tsx b/src/components/IconLowPriority.tsx new file mode 100644 index 000000000..0e798090c --- /dev/null +++ b/src/components/IconLowPriority.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLowPriority: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLowPriority } diff --git a/src/components/IconLoyalty.tsx b/src/components/IconLoyalty.tsx new file mode 100644 index 000000000..8fb8eee5a --- /dev/null +++ b/src/components/IconLoyalty.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconLoyalty: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconLoyalty } diff --git a/src/components/IconLuggage.tsx b/src/components/IconLuggage.tsx new file mode 100644 index 000000000..ccd179caf --- /dev/null +++ b/src/components/IconLuggage.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconLuggage: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconLuggage } diff --git a/src/components/IconMail.tsx b/src/components/IconMail.tsx new file mode 100644 index 000000000..f5cea6186 --- /dev/null +++ b/src/components/IconMail.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMail: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMail } diff --git a/src/components/IconMailOutline.tsx b/src/components/IconMailOutline.tsx new file mode 100644 index 000000000..e9277777a --- /dev/null +++ b/src/components/IconMailOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMailOutline: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMailOutline } diff --git a/src/components/IconMap.tsx b/src/components/IconMap.tsx new file mode 100644 index 000000000..c3babfe08 --- /dev/null +++ b/src/components/IconMap.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMap: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMap } diff --git a/src/components/IconMapsUgc.tsx b/src/components/IconMapsUgc.tsx new file mode 100644 index 000000000..88866e3fd --- /dev/null +++ b/src/components/IconMapsUgc.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' +const IconMapsUgc: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMapsUgc } diff --git a/src/components/IconMarkChatRead.tsx b/src/components/IconMarkChatRead.tsx new file mode 100644 index 000000000..bdbe630b4 --- /dev/null +++ b/src/components/IconMarkChatRead.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconMarkChatRead: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconMarkChatRead } diff --git a/src/components/IconMarkChatUnread.tsx b/src/components/IconMarkChatUnread.tsx new file mode 100644 index 000000000..10f7ab019 --- /dev/null +++ b/src/components/IconMarkChatUnread.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconMarkChatUnread: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconMarkChatUnread } diff --git a/src/components/IconMarkEmailRead.tsx b/src/components/IconMarkEmailRead.tsx new file mode 100644 index 000000000..607ef30b2 --- /dev/null +++ b/src/components/IconMarkEmailRead.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconMarkEmailRead: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconMarkEmailRead } diff --git a/src/components/IconMarkEmailUnread.tsx b/src/components/IconMarkEmailUnread.tsx new file mode 100644 index 000000000..f3cad44a5 --- /dev/null +++ b/src/components/IconMarkEmailUnread.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconMarkEmailUnread: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconMarkEmailUnread } diff --git a/src/components/IconMarkunread.tsx b/src/components/IconMarkunread.tsx new file mode 100644 index 000000000..0394518ac --- /dev/null +++ b/src/components/IconMarkunread.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMarkunread: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMarkunread } diff --git a/src/components/IconMarkunreadMailbox.tsx b/src/components/IconMarkunreadMailbox.tsx new file mode 100644 index 000000000..51d1ef2e5 --- /dev/null +++ b/src/components/IconMarkunreadMailbox.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMarkunreadMailbox: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMarkunreadMailbox } diff --git a/src/components/IconMasks.tsx b/src/components/IconMasks.tsx new file mode 100644 index 000000000..3876fb556 --- /dev/null +++ b/src/components/IconMasks.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconMasks: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMasks } diff --git a/src/components/IconMaximize.tsx b/src/components/IconMaximize.tsx new file mode 100644 index 000000000..e49195834 --- /dev/null +++ b/src/components/IconMaximize.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMaximize: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMaximize } diff --git a/src/components/IconMediation.tsx b/src/components/IconMediation.tsx new file mode 100644 index 000000000..d1b91b8f1 --- /dev/null +++ b/src/components/IconMediation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMediation: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMediation } diff --git a/src/components/IconMedicalServices.tsx b/src/components/IconMedicalServices.tsx new file mode 100644 index 000000000..49c09d1de --- /dev/null +++ b/src/components/IconMedicalServices.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconMedicalServices: React.FC = (props: IconProps): any => ( + + + + + + + + + + +) + +export { IconMedicalServices } diff --git a/src/components/IconMeetingRoom.tsx b/src/components/IconMeetingRoom.tsx new file mode 100644 index 000000000..f6fa34b5d --- /dev/null +++ b/src/components/IconMeetingRoom.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { IconProps } from './types' +const IconMeetingRoom: React.FC = (props: IconProps): any => ( + + + +) + +export { IconMeetingRoom } diff --git a/src/components/IconMemory.tsx b/src/components/IconMemory.tsx new file mode 100644 index 000000000..7eddbbf1e --- /dev/null +++ b/src/components/IconMemory.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMemory: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMemory } diff --git a/src/components/IconMenu.tsx b/src/components/IconMenu.tsx new file mode 100644 index 000000000..775bbb625 --- /dev/null +++ b/src/components/IconMenu.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMenu: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMenu } diff --git a/src/components/IconMenuBook.tsx b/src/components/IconMenuBook.tsx new file mode 100644 index 000000000..b5c9cf4a1 --- /dev/null +++ b/src/components/IconMenuBook.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' +const IconMenuBook: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + + +) + +export { IconMenuBook } diff --git a/src/components/IconMenuOpen.tsx b/src/components/IconMenuOpen.tsx new file mode 100644 index 000000000..7b247461c --- /dev/null +++ b/src/components/IconMenuOpen.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMenuOpen: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMenuOpen } diff --git a/src/components/IconMergeType.tsx b/src/components/IconMergeType.tsx new file mode 100644 index 000000000..0bee04f6b --- /dev/null +++ b/src/components/IconMergeType.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMergeType: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMergeType } diff --git a/src/components/IconMessage.tsx b/src/components/IconMessage.tsx new file mode 100644 index 000000000..36cab9f16 --- /dev/null +++ b/src/components/IconMessage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMessage: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMessage } diff --git a/src/components/IconMic.tsx b/src/components/IconMic.tsx new file mode 100644 index 000000000..47fe8d694 --- /dev/null +++ b/src/components/IconMic.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMic: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMic } diff --git a/src/components/IconMicNone.tsx b/src/components/IconMicNone.tsx new file mode 100644 index 000000000..c659e8c60 --- /dev/null +++ b/src/components/IconMicNone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMicNone: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMicNone } diff --git a/src/components/IconMicOff.tsx b/src/components/IconMicOff.tsx new file mode 100644 index 000000000..ea809f5c9 --- /dev/null +++ b/src/components/IconMicOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMicOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMicOff } diff --git a/src/components/IconMicrowave.tsx b/src/components/IconMicrowave.tsx new file mode 100644 index 000000000..ed4f54b8b --- /dev/null +++ b/src/components/IconMicrowave.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconMicrowave: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMicrowave } diff --git a/src/components/IconMilitaryTech.tsx b/src/components/IconMilitaryTech.tsx new file mode 100644 index 000000000..d026736d1 --- /dev/null +++ b/src/components/IconMilitaryTech.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconMilitaryTech: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconMilitaryTech } diff --git a/src/components/IconMinimize.tsx b/src/components/IconMinimize.tsx new file mode 100644 index 000000000..71598fe3d --- /dev/null +++ b/src/components/IconMinimize.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMinimize: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMinimize } diff --git a/src/components/IconMiscellaneousServices.tsx b/src/components/IconMiscellaneousServices.tsx new file mode 100644 index 000000000..bb04bd656 --- /dev/null +++ b/src/components/IconMiscellaneousServices.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconMiscellaneousServices: React.FC = ( + props: IconProps +): any => ( + + + + + + + + + + + +) + +export { IconMiscellaneousServices } diff --git a/src/components/IconMissedVideoCall.tsx b/src/components/IconMissedVideoCall.tsx new file mode 100644 index 000000000..e315d43aa --- /dev/null +++ b/src/components/IconMissedVideoCall.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMissedVideoCall: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMissedVideoCall } diff --git a/src/components/IconMms.tsx b/src/components/IconMms.tsx new file mode 100644 index 000000000..cefe1ff84 --- /dev/null +++ b/src/components/IconMms.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMms: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMms } diff --git a/src/components/IconMobileFriendly.tsx b/src/components/IconMobileFriendly.tsx new file mode 100644 index 000000000..2ada7fada --- /dev/null +++ b/src/components/IconMobileFriendly.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMobileFriendly: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMobileFriendly } diff --git a/src/components/IconMobileOff.tsx b/src/components/IconMobileOff.tsx new file mode 100644 index 000000000..d749d49ec --- /dev/null +++ b/src/components/IconMobileOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMobileOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMobileOff } diff --git a/src/components/IconMobileScreenShare.tsx b/src/components/IconMobileScreenShare.tsx new file mode 100644 index 000000000..614320d0b --- /dev/null +++ b/src/components/IconMobileScreenShare.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMobileScreenShare: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMobileScreenShare } diff --git a/src/components/IconModeComment.tsx b/src/components/IconModeComment.tsx new file mode 100644 index 000000000..390e645e4 --- /dev/null +++ b/src/components/IconModeComment.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconModeComment: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconModeComment } diff --git a/src/components/IconModelTraining.tsx b/src/components/IconModelTraining.tsx new file mode 100644 index 000000000..44a4a56a3 --- /dev/null +++ b/src/components/IconModelTraining.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconModelTraining: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconModelTraining } diff --git a/src/components/IconMonetizationOn.tsx b/src/components/IconMonetizationOn.tsx new file mode 100644 index 000000000..daaf53d11 --- /dev/null +++ b/src/components/IconMonetizationOn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMonetizationOn: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMonetizationOn } diff --git a/src/components/IconMoney.tsx b/src/components/IconMoney.tsx new file mode 100644 index 000000000..72f0a4a0d --- /dev/null +++ b/src/components/IconMoney.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconMoney: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconMoney } diff --git a/src/components/IconMoneyOff.tsx b/src/components/IconMoneyOff.tsx new file mode 100644 index 000000000..be93116f8 --- /dev/null +++ b/src/components/IconMoneyOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMoneyOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMoneyOff } diff --git a/src/components/IconMonochromePhotos.tsx b/src/components/IconMonochromePhotos.tsx new file mode 100644 index 000000000..9f1e83a8e --- /dev/null +++ b/src/components/IconMonochromePhotos.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconMonochromePhotos: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconMonochromePhotos } diff --git a/src/components/IconMood.tsx b/src/components/IconMood.tsx new file mode 100644 index 000000000..dee15cd87 --- /dev/null +++ b/src/components/IconMood.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMood: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMood } diff --git a/src/components/IconMoodBad.tsx b/src/components/IconMoodBad.tsx new file mode 100644 index 000000000..c39200e5b --- /dev/null +++ b/src/components/IconMoodBad.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMoodBad: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMoodBad } diff --git a/src/components/IconMoped.tsx b/src/components/IconMoped.tsx new file mode 100644 index 000000000..7d1d76603 --- /dev/null +++ b/src/components/IconMoped.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconMoped: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconMoped } diff --git a/src/components/IconMore.tsx b/src/components/IconMore.tsx new file mode 100644 index 000000000..77d29ea02 --- /dev/null +++ b/src/components/IconMore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMore: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMore } diff --git a/src/components/IconMoreHoriz.tsx b/src/components/IconMoreHoriz.tsx new file mode 100644 index 000000000..e2f764a79 --- /dev/null +++ b/src/components/IconMoreHoriz.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMoreHoriz: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMoreHoriz } diff --git a/src/components/IconMoreTime.tsx b/src/components/IconMoreTime.tsx new file mode 100644 index 000000000..b3b39bab4 --- /dev/null +++ b/src/components/IconMoreTime.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconMoreTime: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconMoreTime } diff --git a/src/components/IconMoreVert.tsx b/src/components/IconMoreVert.tsx new file mode 100644 index 000000000..51ec529aa --- /dev/null +++ b/src/components/IconMoreVert.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMoreVert: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMoreVert } diff --git a/src/components/IconMotionPhotosOn.tsx b/src/components/IconMotionPhotosOn.tsx new file mode 100644 index 000000000..3b6020933 --- /dev/null +++ b/src/components/IconMotionPhotosOn.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconMotionPhotosOn: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconMotionPhotosOn } diff --git a/src/components/IconMotionPhotosPause.tsx b/src/components/IconMotionPhotosPause.tsx new file mode 100644 index 000000000..862d33c47 --- /dev/null +++ b/src/components/IconMotionPhotosPause.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconMotionPhotosPause: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMotionPhotosPause } diff --git a/src/components/IconMotionPhotosPaused.tsx b/src/components/IconMotionPhotosPaused.tsx new file mode 100644 index 000000000..1a06ef579 --- /dev/null +++ b/src/components/IconMotionPhotosPaused.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconMotionPhotosPaused: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconMotionPhotosPaused } diff --git a/src/components/IconMouse.tsx b/src/components/IconMouse.tsx new file mode 100644 index 000000000..a12e284b9 --- /dev/null +++ b/src/components/IconMouse.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMouse: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMouse } diff --git a/src/components/IconMoveToInbox.tsx b/src/components/IconMoveToInbox.tsx new file mode 100644 index 000000000..c37cce8d8 --- /dev/null +++ b/src/components/IconMoveToInbox.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMoveToInbox: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMoveToInbox } diff --git a/src/components/IconMovie.tsx b/src/components/IconMovie.tsx new file mode 100644 index 000000000..ca0bfd5d5 --- /dev/null +++ b/src/components/IconMovie.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMovie: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMovie } diff --git a/src/components/IconMovieCreation.tsx b/src/components/IconMovieCreation.tsx new file mode 100644 index 000000000..191416d3e --- /dev/null +++ b/src/components/IconMovieCreation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMovieCreation: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMovieCreation } diff --git a/src/components/IconMovieFilter.tsx b/src/components/IconMovieFilter.tsx new file mode 100644 index 000000000..0284a74c7 --- /dev/null +++ b/src/components/IconMovieFilter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMovieFilter: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMovieFilter } diff --git a/src/components/IconMultilineChart.tsx b/src/components/IconMultilineChart.tsx new file mode 100644 index 000000000..88ffa96c7 --- /dev/null +++ b/src/components/IconMultilineChart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMultilineChart: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMultilineChart } diff --git a/src/components/IconMultipleStop.tsx b/src/components/IconMultipleStop.tsx new file mode 100644 index 000000000..de71d060d --- /dev/null +++ b/src/components/IconMultipleStop.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconMultipleStop: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconMultipleStop } diff --git a/src/components/IconMuseum.tsx b/src/components/IconMuseum.tsx new file mode 100644 index 000000000..5a72354f5 --- /dev/null +++ b/src/components/IconMuseum.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconMuseum: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconMuseum } diff --git a/src/components/IconMusicNote.tsx b/src/components/IconMusicNote.tsx new file mode 100644 index 000000000..decf03ad4 --- /dev/null +++ b/src/components/IconMusicNote.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMusicNote: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMusicNote } diff --git a/src/components/IconMusicOff.tsx b/src/components/IconMusicOff.tsx new file mode 100644 index 000000000..0fca33bd5 --- /dev/null +++ b/src/components/IconMusicOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMusicOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMusicOff } diff --git a/src/components/IconMusicVideo.tsx b/src/components/IconMusicVideo.tsx new file mode 100644 index 000000000..d9456a318 --- /dev/null +++ b/src/components/IconMusicVideo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMusicVideo: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMusicVideo } diff --git a/src/components/IconMyLocation.tsx b/src/components/IconMyLocation.tsx new file mode 100644 index 000000000..ecb146e11 --- /dev/null +++ b/src/components/IconMyLocation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconMyLocation: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconMyLocation } diff --git a/src/components/IconNat.tsx b/src/components/IconNat.tsx new file mode 100644 index 000000000..52b040e32 --- /dev/null +++ b/src/components/IconNat.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconNat: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconNat } diff --git a/src/components/IconNature.tsx b/src/components/IconNature.tsx new file mode 100644 index 000000000..1ad86a630 --- /dev/null +++ b/src/components/IconNature.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNature: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNature } diff --git a/src/components/IconNaturePeople.tsx b/src/components/IconNaturePeople.tsx new file mode 100644 index 000000000..f26c9a9db --- /dev/null +++ b/src/components/IconNaturePeople.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNaturePeople: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNaturePeople } diff --git a/src/components/IconNavigateBefore.tsx b/src/components/IconNavigateBefore.tsx new file mode 100644 index 000000000..a3f63ae8a --- /dev/null +++ b/src/components/IconNavigateBefore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNavigateBefore: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNavigateBefore } diff --git a/src/components/IconNavigateNext.tsx b/src/components/IconNavigateNext.tsx new file mode 100644 index 000000000..8178f7cd2 --- /dev/null +++ b/src/components/IconNavigateNext.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNavigateNext: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNavigateNext } diff --git a/src/components/IconNavigation.tsx b/src/components/IconNavigation.tsx new file mode 100644 index 000000000..2e898fa31 --- /dev/null +++ b/src/components/IconNavigation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNavigation: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNavigation } diff --git a/src/components/IconNearMe.tsx b/src/components/IconNearMe.tsx new file mode 100644 index 000000000..ff70e7210 --- /dev/null +++ b/src/components/IconNearMe.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNearMe: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNearMe } diff --git a/src/components/IconNearMeDisabled.tsx b/src/components/IconNearMeDisabled.tsx new file mode 100644 index 000000000..512f41f1d --- /dev/null +++ b/src/components/IconNearMeDisabled.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNearMeDisabled: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNearMeDisabled } diff --git a/src/components/IconNetworkCheck.tsx b/src/components/IconNetworkCheck.tsx new file mode 100644 index 000000000..4c464caed --- /dev/null +++ b/src/components/IconNetworkCheck.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNetworkCheck: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNetworkCheck } diff --git a/src/components/IconNetworkLocked.tsx b/src/components/IconNetworkLocked.tsx new file mode 100644 index 000000000..d3d43a2d1 --- /dev/null +++ b/src/components/IconNetworkLocked.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNetworkLocked: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNetworkLocked } diff --git a/src/components/IconNewReleases.tsx b/src/components/IconNewReleases.tsx new file mode 100644 index 000000000..7ab505df0 --- /dev/null +++ b/src/components/IconNewReleases.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNewReleases: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNewReleases } diff --git a/src/components/IconNextPlan.tsx b/src/components/IconNextPlan.tsx new file mode 100644 index 000000000..d1cba4f44 --- /dev/null +++ b/src/components/IconNextPlan.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconNextPlan: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconNextPlan } diff --git a/src/components/IconNextWeek.tsx b/src/components/IconNextWeek.tsx new file mode 100644 index 000000000..1ed033ddf --- /dev/null +++ b/src/components/IconNextWeek.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconNextWeek: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconNextWeek } diff --git a/src/components/IconNfc.tsx b/src/components/IconNfc.tsx new file mode 100644 index 000000000..d5b7e031c --- /dev/null +++ b/src/components/IconNfc.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconNfc: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconNfc } diff --git a/src/components/IconNightShelter.tsx b/src/components/IconNightShelter.tsx new file mode 100644 index 000000000..e07a62ef1 --- /dev/null +++ b/src/components/IconNightShelter.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNightShelter: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNightShelter } diff --git a/src/components/IconNightsStay.tsx b/src/components/IconNightsStay.tsx new file mode 100644 index 000000000..607c11be6 --- /dev/null +++ b/src/components/IconNightsStay.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconNightsStay: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + +) + +export { IconNightsStay } diff --git a/src/components/IconNoBackpack.tsx b/src/components/IconNoBackpack.tsx new file mode 100644 index 000000000..3f9a0de32 --- /dev/null +++ b/src/components/IconNoBackpack.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoBackpack: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNoBackpack } diff --git a/src/components/IconNoCell.tsx b/src/components/IconNoCell.tsx new file mode 100644 index 000000000..9557b008e --- /dev/null +++ b/src/components/IconNoCell.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoCell: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconNoCell } diff --git a/src/components/IconNoDrinks.tsx b/src/components/IconNoDrinks.tsx new file mode 100644 index 000000000..269d41370 --- /dev/null +++ b/src/components/IconNoDrinks.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoDrinks: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconNoDrinks } diff --git a/src/components/IconNoEncryption.tsx b/src/components/IconNoEncryption.tsx new file mode 100644 index 000000000..96f969556 --- /dev/null +++ b/src/components/IconNoEncryption.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoEncryption: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNoEncryption } diff --git a/src/components/IconNoFlash.tsx b/src/components/IconNoFlash.tsx new file mode 100644 index 000000000..dcc7e8421 --- /dev/null +++ b/src/components/IconNoFlash.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoFlash: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconNoFlash } diff --git a/src/components/IconNoFood.tsx b/src/components/IconNoFood.tsx new file mode 100644 index 000000000..ecf63d98e --- /dev/null +++ b/src/components/IconNoFood.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoFood: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconNoFood } diff --git a/src/components/IconNoLuggage.tsx b/src/components/IconNoLuggage.tsx new file mode 100644 index 000000000..2d9b1af57 --- /dev/null +++ b/src/components/IconNoLuggage.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoLuggage: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNoLuggage } diff --git a/src/components/IconNoMeals.tsx b/src/components/IconNoMeals.tsx new file mode 100644 index 000000000..cb958a646 --- /dev/null +++ b/src/components/IconNoMeals.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoMeals: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNoMeals } diff --git a/src/components/IconNoMeetingRoom.tsx b/src/components/IconNoMeetingRoom.tsx new file mode 100644 index 000000000..fc25759e7 --- /dev/null +++ b/src/components/IconNoMeetingRoom.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoMeetingRoom: React.FC = (props: IconProps): any => ( + + + +) + +export { IconNoMeetingRoom } diff --git a/src/components/IconNoPhotography.tsx b/src/components/IconNoPhotography.tsx new file mode 100644 index 000000000..4af450576 --- /dev/null +++ b/src/components/IconNoPhotography.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoPhotography: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconNoPhotography } diff --git a/src/components/IconNoSim.tsx b/src/components/IconNoSim.tsx new file mode 100644 index 000000000..3d32771bf --- /dev/null +++ b/src/components/IconNoSim.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoSim: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNoSim } diff --git a/src/components/IconNoStroller.tsx b/src/components/IconNoStroller.tsx new file mode 100644 index 000000000..a3d255382 --- /dev/null +++ b/src/components/IconNoStroller.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoStroller: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconNoStroller } diff --git a/src/components/IconNoTransfer.tsx b/src/components/IconNoTransfer.tsx new file mode 100644 index 000000000..8107b17a1 --- /dev/null +++ b/src/components/IconNoTransfer.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoTransfer: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNoTransfer } diff --git a/src/components/IconNorth.tsx b/src/components/IconNorth.tsx new file mode 100644 index 000000000..f08aba88c --- /dev/null +++ b/src/components/IconNorth.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNorth: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNorth } diff --git a/src/components/IconNorthEast.tsx b/src/components/IconNorthEast.tsx new file mode 100644 index 000000000..192aea5c8 --- /dev/null +++ b/src/components/IconNorthEast.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNorthEast: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNorthEast } diff --git a/src/components/IconNorthWest.tsx b/src/components/IconNorthWest.tsx new file mode 100644 index 000000000..7c24b6c6f --- /dev/null +++ b/src/components/IconNorthWest.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconNorthWest: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNorthWest } diff --git a/src/components/IconNotAccessible.tsx b/src/components/IconNotAccessible.tsx new file mode 100644 index 000000000..7f04bb9cd --- /dev/null +++ b/src/components/IconNotAccessible.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotAccessible: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconNotAccessible } diff --git a/src/components/IconNotInterested.tsx b/src/components/IconNotInterested.tsx new file mode 100644 index 000000000..94082483e --- /dev/null +++ b/src/components/IconNotInterested.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotInterested: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNotInterested } diff --git a/src/components/IconNotListedLocation.tsx b/src/components/IconNotListedLocation.tsx new file mode 100644 index 000000000..093a686bc --- /dev/null +++ b/src/components/IconNotListedLocation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotListedLocation: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNotListedLocation } diff --git a/src/components/IconNotStarted.tsx b/src/components/IconNotStarted.tsx new file mode 100644 index 000000000..80cb584cd --- /dev/null +++ b/src/components/IconNotStarted.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotStarted: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconNotStarted } diff --git a/src/components/IconNote.tsx b/src/components/IconNote.tsx new file mode 100644 index 000000000..62efc3548 --- /dev/null +++ b/src/components/IconNote.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNote: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNote } diff --git a/src/components/IconNoteAdd.tsx b/src/components/IconNoteAdd.tsx new file mode 100644 index 000000000..8a02928bb --- /dev/null +++ b/src/components/IconNoteAdd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNoteAdd: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNoteAdd } diff --git a/src/components/IconNotes.tsx b/src/components/IconNotes.tsx new file mode 100644 index 000000000..e2fc3c288 --- /dev/null +++ b/src/components/IconNotes.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotes: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNotes } diff --git a/src/components/IconNotificationImportant.tsx b/src/components/IconNotificationImportant.tsx new file mode 100644 index 000000000..3b2000e08 --- /dev/null +++ b/src/components/IconNotificationImportant.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotificationImportant: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconNotificationImportant } diff --git a/src/components/IconNotifications.tsx b/src/components/IconNotifications.tsx new file mode 100644 index 000000000..73e6b0649 --- /dev/null +++ b/src/components/IconNotifications.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotifications: React.FC = (props: IconProps): any => ( + + + +) + +export { IconNotifications } diff --git a/src/components/IconNotificationsActive.tsx b/src/components/IconNotificationsActive.tsx new file mode 100644 index 000000000..97ec6555f --- /dev/null +++ b/src/components/IconNotificationsActive.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotificationsActive: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconNotificationsActive } diff --git a/src/components/IconNotificationsNone.tsx b/src/components/IconNotificationsNone.tsx new file mode 100644 index 000000000..560790ca9 --- /dev/null +++ b/src/components/IconNotificationsNone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotificationsNone: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNotificationsNone } diff --git a/src/components/IconNotificationsOff.tsx b/src/components/IconNotificationsOff.tsx new file mode 100644 index 000000000..d92dc340e --- /dev/null +++ b/src/components/IconNotificationsOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotificationsOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconNotificationsOff } diff --git a/src/components/IconNotificationsPaused.tsx b/src/components/IconNotificationsPaused.tsx new file mode 100644 index 000000000..c3d22f225 --- /dev/null +++ b/src/components/IconNotificationsPaused.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconNotificationsPaused: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconNotificationsPaused } diff --git a/src/components/IconOfflineBolt.tsx b/src/components/IconOfflineBolt.tsx new file mode 100644 index 000000000..eaba4c551 --- /dev/null +++ b/src/components/IconOfflineBolt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconOfflineBolt: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconOfflineBolt } diff --git a/src/components/IconOfflinePin.tsx b/src/components/IconOfflinePin.tsx new file mode 100644 index 000000000..66f361878 --- /dev/null +++ b/src/components/IconOfflinePin.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconOfflinePin: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconOfflinePin } diff --git a/src/components/IconOndemandVideo.tsx b/src/components/IconOndemandVideo.tsx new file mode 100644 index 000000000..9b93d61d9 --- /dev/null +++ b/src/components/IconOndemandVideo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconOndemandVideo: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconOndemandVideo } diff --git a/src/components/IconOnlinePrediction.tsx b/src/components/IconOnlinePrediction.tsx new file mode 100644 index 000000000..4ee953a66 --- /dev/null +++ b/src/components/IconOnlinePrediction.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconOnlinePrediction: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconOnlinePrediction } diff --git a/src/components/IconOpacity.tsx b/src/components/IconOpacity.tsx new file mode 100644 index 000000000..5d4ef69d5 --- /dev/null +++ b/src/components/IconOpacity.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconOpacity: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconOpacity } diff --git a/src/components/IconOpenInBrowser.tsx b/src/components/IconOpenInBrowser.tsx new file mode 100644 index 000000000..58599ad4b --- /dev/null +++ b/src/components/IconOpenInBrowser.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconOpenInBrowser: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconOpenInBrowser } diff --git a/src/components/IconOpenInFull.tsx b/src/components/IconOpenInFull.tsx new file mode 100644 index 000000000..33593a257 --- /dev/null +++ b/src/components/IconOpenInFull.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconOpenInFull: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconOpenInFull } diff --git a/src/components/IconOpenInNew.tsx b/src/components/IconOpenInNew.tsx new file mode 100644 index 000000000..053976158 --- /dev/null +++ b/src/components/IconOpenInNew.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconOpenInNew: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconOpenInNew } diff --git a/src/components/IconOpenWith.tsx b/src/components/IconOpenWith.tsx new file mode 100644 index 000000000..42e6f7463 --- /dev/null +++ b/src/components/IconOpenWith.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconOpenWith: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconOpenWith } diff --git a/src/components/IconOutbond.tsx b/src/components/IconOutbond.tsx new file mode 100644 index 000000000..a356eee72 --- /dev/null +++ b/src/components/IconOutbond.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconOutbond: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconOutbond } diff --git a/src/components/IconOutdoorGrill.tsx b/src/components/IconOutdoorGrill.tsx new file mode 100644 index 000000000..32349b89b --- /dev/null +++ b/src/components/IconOutdoorGrill.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconOutdoorGrill: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + +) + +export { IconOutdoorGrill } diff --git a/src/components/IconOutlet.tsx b/src/components/IconOutlet.tsx new file mode 100644 index 000000000..c85c51869 --- /dev/null +++ b/src/components/IconOutlet.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconOutlet: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconOutlet } diff --git a/src/components/IconOutlinedFlag.tsx b/src/components/IconOutlinedFlag.tsx new file mode 100644 index 000000000..c033721f1 --- /dev/null +++ b/src/components/IconOutlinedFlag.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconOutlinedFlag: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconOutlinedFlag } diff --git a/src/components/IconPages.tsx b/src/components/IconPages.tsx new file mode 100644 index 000000000..d09fb2f1d --- /dev/null +++ b/src/components/IconPages.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPages: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPages } diff --git a/src/components/IconPageview.tsx b/src/components/IconPageview.tsx new file mode 100644 index 000000000..3dfb4f7c7 --- /dev/null +++ b/src/components/IconPageview.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPageview: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPageview } diff --git a/src/components/IconPalette.tsx b/src/components/IconPalette.tsx new file mode 100644 index 000000000..e5e4c2eff --- /dev/null +++ b/src/components/IconPalette.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPalette: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPalette } diff --git a/src/components/IconPanTool.tsx b/src/components/IconPanTool.tsx new file mode 100644 index 000000000..005e28a54 --- /dev/null +++ b/src/components/IconPanTool.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconPanTool: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconPanTool } diff --git a/src/components/IconPanorama.tsx b/src/components/IconPanorama.tsx new file mode 100644 index 000000000..74f79229b --- /dev/null +++ b/src/components/IconPanorama.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPanorama: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPanorama } diff --git a/src/components/IconPanoramaFishEye.tsx b/src/components/IconPanoramaFishEye.tsx new file mode 100644 index 000000000..106d215a9 --- /dev/null +++ b/src/components/IconPanoramaFishEye.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPanoramaFishEye: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPanoramaFishEye } diff --git a/src/components/IconPanoramaHorizontal.tsx b/src/components/IconPanoramaHorizontal.tsx new file mode 100644 index 000000000..1bf55d493 --- /dev/null +++ b/src/components/IconPanoramaHorizontal.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPanoramaHorizontal: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPanoramaHorizontal } diff --git a/src/components/IconPanoramaVertical.tsx b/src/components/IconPanoramaVertical.tsx new file mode 100644 index 000000000..54b4f9fe6 --- /dev/null +++ b/src/components/IconPanoramaVertical.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPanoramaVertical: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPanoramaVertical } diff --git a/src/components/IconPanoramaWideAngle.tsx b/src/components/IconPanoramaWideAngle.tsx new file mode 100644 index 000000000..38a1ef3d6 --- /dev/null +++ b/src/components/IconPanoramaWideAngle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPanoramaWideAngle: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPanoramaWideAngle } diff --git a/src/components/IconPartyMode.tsx b/src/components/IconPartyMode.tsx new file mode 100644 index 000000000..00d87f66a --- /dev/null +++ b/src/components/IconPartyMode.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPartyMode: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPartyMode } diff --git a/src/components/IconPause.tsx b/src/components/IconPause.tsx new file mode 100644 index 000000000..d50bf3073 --- /dev/null +++ b/src/components/IconPause.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPause: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPause } diff --git a/src/components/IconPauseCircleFilled.tsx b/src/components/IconPauseCircleFilled.tsx new file mode 100644 index 000000000..88331b3f3 --- /dev/null +++ b/src/components/IconPauseCircleFilled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPauseCircleFilled: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPauseCircleFilled } diff --git a/src/components/IconPauseCircleOutline.tsx b/src/components/IconPauseCircleOutline.tsx new file mode 100644 index 000000000..9724cdcdc --- /dev/null +++ b/src/components/IconPauseCircleOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPauseCircleOutline: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPauseCircleOutline } diff --git a/src/components/IconPausePresentation.tsx b/src/components/IconPausePresentation.tsx new file mode 100644 index 000000000..273d86bf3 --- /dev/null +++ b/src/components/IconPausePresentation.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconPausePresentation: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconPausePresentation } diff --git a/src/components/IconPayment.tsx b/src/components/IconPayment.tsx new file mode 100644 index 000000000..96964f12c --- /dev/null +++ b/src/components/IconPayment.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPayment: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPayment } diff --git a/src/components/IconPayments.tsx b/src/components/IconPayments.tsx new file mode 100644 index 000000000..bb8b8d612 --- /dev/null +++ b/src/components/IconPayments.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPayments: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPayments } diff --git a/src/components/IconPedalBike.tsx b/src/components/IconPedalBike.tsx new file mode 100644 index 000000000..2f0d132d4 --- /dev/null +++ b/src/components/IconPedalBike.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconPedalBike: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconPedalBike } diff --git a/src/components/IconPending.tsx b/src/components/IconPending.tsx new file mode 100644 index 000000000..0373e88fb --- /dev/null +++ b/src/components/IconPending.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconPending: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconPending } diff --git a/src/components/IconPendingActions.tsx b/src/components/IconPendingActions.tsx new file mode 100644 index 000000000..093b127e6 --- /dev/null +++ b/src/components/IconPendingActions.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconPendingActions: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconPendingActions } diff --git a/src/components/IconPeople.tsx b/src/components/IconPeople.tsx new file mode 100644 index 000000000..092c46587 --- /dev/null +++ b/src/components/IconPeople.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPeople: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPeople } diff --git a/src/components/IconPeopleAlt.tsx b/src/components/IconPeopleAlt.tsx new file mode 100644 index 000000000..2a7a6c8fc --- /dev/null +++ b/src/components/IconPeopleAlt.tsx @@ -0,0 +1,42 @@ +import React from 'react' +import { IconProps } from './types' +const IconPeopleAlt: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconPeopleAlt } diff --git a/src/components/IconPeopleOutline.tsx b/src/components/IconPeopleOutline.tsx new file mode 100644 index 000000000..6bd9d9e17 --- /dev/null +++ b/src/components/IconPeopleOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPeopleOutline: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPeopleOutline } diff --git a/src/components/IconPermCameraMic.tsx b/src/components/IconPermCameraMic.tsx new file mode 100644 index 000000000..7818f49d8 --- /dev/null +++ b/src/components/IconPermCameraMic.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPermCameraMic: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPermCameraMic } diff --git a/src/components/IconPermContactCalendar.tsx b/src/components/IconPermContactCalendar.tsx new file mode 100644 index 000000000..c9f375c08 --- /dev/null +++ b/src/components/IconPermContactCalendar.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconPermContactCalendar: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconPermContactCalendar } diff --git a/src/components/IconPermDataSetting.tsx b/src/components/IconPermDataSetting.tsx new file mode 100644 index 000000000..efd8f4ead --- /dev/null +++ b/src/components/IconPermDataSetting.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPermDataSetting: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPermDataSetting } diff --git a/src/components/IconPermDeviceInformation.tsx b/src/components/IconPermDeviceInformation.tsx new file mode 100644 index 000000000..097ddd165 --- /dev/null +++ b/src/components/IconPermDeviceInformation.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconPermDeviceInformation: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconPermDeviceInformation } diff --git a/src/components/IconPermIdentity.tsx b/src/components/IconPermIdentity.tsx new file mode 100644 index 000000000..088dd47ca --- /dev/null +++ b/src/components/IconPermIdentity.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPermIdentity: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPermIdentity } diff --git a/src/components/IconPermMedia.tsx b/src/components/IconPermMedia.tsx new file mode 100644 index 000000000..4eae80d09 --- /dev/null +++ b/src/components/IconPermMedia.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPermMedia: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPermMedia } diff --git a/src/components/IconPermPhoneMsg.tsx b/src/components/IconPermPhoneMsg.tsx new file mode 100644 index 000000000..1043aa9a8 --- /dev/null +++ b/src/components/IconPermPhoneMsg.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPermPhoneMsg: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPermPhoneMsg } diff --git a/src/components/IconPermScanWifi.tsx b/src/components/IconPermScanWifi.tsx new file mode 100644 index 000000000..645030ae9 --- /dev/null +++ b/src/components/IconPermScanWifi.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPermScanWifi: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPermScanWifi } diff --git a/src/components/IconPerson.tsx b/src/components/IconPerson.tsx new file mode 100644 index 000000000..8162f9af0 --- /dev/null +++ b/src/components/IconPerson.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPerson: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPerson } diff --git a/src/components/IconPersonAdd.tsx b/src/components/IconPersonAdd.tsx new file mode 100644 index 000000000..d3b64ef1d --- /dev/null +++ b/src/components/IconPersonAdd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonAdd: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPersonAdd } diff --git a/src/components/IconPersonAddAlt1.tsx b/src/components/IconPersonAddAlt1.tsx new file mode 100644 index 000000000..3e81af138 --- /dev/null +++ b/src/components/IconPersonAddAlt1.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonAddAlt1: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconPersonAddAlt1 } diff --git a/src/components/IconPersonAddDisabled.tsx b/src/components/IconPersonAddDisabled.tsx new file mode 100644 index 000000000..94223e38c --- /dev/null +++ b/src/components/IconPersonAddDisabled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonAddDisabled: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconPersonAddDisabled } diff --git a/src/components/IconPersonOutline.tsx b/src/components/IconPersonOutline.tsx new file mode 100644 index 000000000..4b2ecc4c6 --- /dev/null +++ b/src/components/IconPersonOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonOutline: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPersonOutline } diff --git a/src/components/IconPersonPin.tsx b/src/components/IconPersonPin.tsx new file mode 100644 index 000000000..216e41a56 --- /dev/null +++ b/src/components/IconPersonPin.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonPin: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPersonPin } diff --git a/src/components/IconPersonPinCircle.tsx b/src/components/IconPersonPinCircle.tsx new file mode 100644 index 000000000..a7e7dbc93 --- /dev/null +++ b/src/components/IconPersonPinCircle.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonPinCircle: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconPersonPinCircle } diff --git a/src/components/IconPersonRemove.tsx b/src/components/IconPersonRemove.tsx new file mode 100644 index 000000000..f7606b521 --- /dev/null +++ b/src/components/IconPersonRemove.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonRemove: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconPersonRemove } diff --git a/src/components/IconPersonRemoveAlt1.tsx b/src/components/IconPersonRemoveAlt1.tsx new file mode 100644 index 000000000..db4e01d61 --- /dev/null +++ b/src/components/IconPersonRemoveAlt1.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonRemoveAlt1: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconPersonRemoveAlt1 } diff --git a/src/components/IconPersonSearch.tsx b/src/components/IconPersonSearch.tsx new file mode 100644 index 000000000..b70682965 --- /dev/null +++ b/src/components/IconPersonSearch.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonSearch: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconPersonSearch } diff --git a/src/components/IconPersonalVideo.tsx b/src/components/IconPersonalVideo.tsx new file mode 100644 index 000000000..541cdade6 --- /dev/null +++ b/src/components/IconPersonalVideo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPersonalVideo: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPersonalVideo } diff --git a/src/components/IconPestControl.tsx b/src/components/IconPestControl.tsx new file mode 100644 index 000000000..92b4df050 --- /dev/null +++ b/src/components/IconPestControl.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconPestControl: React.FC = (props: IconProps): any => ( + + + + + + + + + + +) + +export { IconPestControl } diff --git a/src/components/IconPestControlRodent.tsx b/src/components/IconPestControlRodent.tsx new file mode 100644 index 000000000..bbcce2688 --- /dev/null +++ b/src/components/IconPestControlRodent.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconPestControlRodent: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconPestControlRodent } diff --git a/src/components/IconPets.tsx b/src/components/IconPets.tsx new file mode 100644 index 000000000..ce9025028 --- /dev/null +++ b/src/components/IconPets.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' +const IconPets: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconPets } diff --git a/src/components/IconPhone.tsx b/src/components/IconPhone.tsx new file mode 100644 index 000000000..45b194e75 --- /dev/null +++ b/src/components/IconPhone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhone: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhone } diff --git a/src/components/IconPhoneAndroid.tsx b/src/components/IconPhoneAndroid.tsx new file mode 100644 index 000000000..a0f05ed39 --- /dev/null +++ b/src/components/IconPhoneAndroid.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneAndroid: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhoneAndroid } diff --git a/src/components/IconPhoneBluetoothSpeaker.tsx b/src/components/IconPhoneBluetoothSpeaker.tsx new file mode 100644 index 000000000..6201b0173 --- /dev/null +++ b/src/components/IconPhoneBluetoothSpeaker.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneBluetoothSpeaker: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconPhoneBluetoothSpeaker } diff --git a/src/components/IconPhoneCallback.tsx b/src/components/IconPhoneCallback.tsx new file mode 100644 index 000000000..f7fc2a76c --- /dev/null +++ b/src/components/IconPhoneCallback.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneCallback: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhoneCallback } diff --git a/src/components/IconPhoneDisabled.tsx b/src/components/IconPhoneDisabled.tsx new file mode 100644 index 000000000..6fc099a29 --- /dev/null +++ b/src/components/IconPhoneDisabled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneDisabled: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhoneDisabled } diff --git a/src/components/IconPhoneEnabled.tsx b/src/components/IconPhoneEnabled.tsx new file mode 100644 index 000000000..ad25b0c69 --- /dev/null +++ b/src/components/IconPhoneEnabled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneEnabled: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhoneEnabled } diff --git a/src/components/IconPhoneForwarded.tsx b/src/components/IconPhoneForwarded.tsx new file mode 100644 index 000000000..f5b96ecb3 --- /dev/null +++ b/src/components/IconPhoneForwarded.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneForwarded: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhoneForwarded } diff --git a/src/components/IconPhoneInTalk.tsx b/src/components/IconPhoneInTalk.tsx new file mode 100644 index 000000000..f7a50fdbf --- /dev/null +++ b/src/components/IconPhoneInTalk.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneInTalk: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhoneInTalk } diff --git a/src/components/IconPhoneIphone.tsx b/src/components/IconPhoneIphone.tsx new file mode 100644 index 000000000..8c1843b76 --- /dev/null +++ b/src/components/IconPhoneIphone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneIphone: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhoneIphone } diff --git a/src/components/IconPhoneLocked.tsx b/src/components/IconPhoneLocked.tsx new file mode 100644 index 000000000..4cecd1b0f --- /dev/null +++ b/src/components/IconPhoneLocked.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneLocked: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhoneLocked } diff --git a/src/components/IconPhoneMissed.tsx b/src/components/IconPhoneMissed.tsx new file mode 100644 index 000000000..df6419e29 --- /dev/null +++ b/src/components/IconPhoneMissed.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoneMissed: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhoneMissed } diff --git a/src/components/IconPhonePaused.tsx b/src/components/IconPhonePaused.tsx new file mode 100644 index 000000000..f850d1518 --- /dev/null +++ b/src/components/IconPhonePaused.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhonePaused: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhonePaused } diff --git a/src/components/IconPhonelink.tsx b/src/components/IconPhonelink.tsx new file mode 100644 index 000000000..c302f1fdd --- /dev/null +++ b/src/components/IconPhonelink.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhonelink: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhonelink } diff --git a/src/components/IconPhonelinkErase.tsx b/src/components/IconPhonelinkErase.tsx new file mode 100644 index 000000000..dcaddfde1 --- /dev/null +++ b/src/components/IconPhonelinkErase.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhonelinkErase: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhonelinkErase } diff --git a/src/components/IconPhonelinkLock.tsx b/src/components/IconPhonelinkLock.tsx new file mode 100644 index 000000000..337739006 --- /dev/null +++ b/src/components/IconPhonelinkLock.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhonelinkLock: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhonelinkLock } diff --git a/src/components/IconPhonelinkOff.tsx b/src/components/IconPhonelinkOff.tsx new file mode 100644 index 000000000..d297ac608 --- /dev/null +++ b/src/components/IconPhonelinkOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhonelinkOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhonelinkOff } diff --git a/src/components/IconPhonelinkRing.tsx b/src/components/IconPhonelinkRing.tsx new file mode 100644 index 000000000..e6967336e --- /dev/null +++ b/src/components/IconPhonelinkRing.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhonelinkRing: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhonelinkRing } diff --git a/src/components/IconPhonelinkSetup.tsx b/src/components/IconPhonelinkSetup.tsx new file mode 100644 index 000000000..3617be38a --- /dev/null +++ b/src/components/IconPhonelinkSetup.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhonelinkSetup: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhonelinkSetup } diff --git a/src/components/IconPhoto.tsx b/src/components/IconPhoto.tsx new file mode 100644 index 000000000..715a32fbb --- /dev/null +++ b/src/components/IconPhoto.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhoto: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhoto } diff --git a/src/components/IconPhotoAlbum.tsx b/src/components/IconPhotoAlbum.tsx new file mode 100644 index 000000000..8a7c95fa9 --- /dev/null +++ b/src/components/IconPhotoAlbum.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhotoAlbum: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhotoAlbum } diff --git a/src/components/IconPhotoCamera.tsx b/src/components/IconPhotoCamera.tsx new file mode 100644 index 000000000..1c2abbe55 --- /dev/null +++ b/src/components/IconPhotoCamera.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhotoCamera: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconPhotoCamera } diff --git a/src/components/IconPhotoFilter.tsx b/src/components/IconPhotoFilter.tsx new file mode 100644 index 000000000..2cb6c6d22 --- /dev/null +++ b/src/components/IconPhotoFilter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhotoFilter: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhotoFilter } diff --git a/src/components/IconPhotoLibrary.tsx b/src/components/IconPhotoLibrary.tsx new file mode 100644 index 000000000..372bdc867 --- /dev/null +++ b/src/components/IconPhotoLibrary.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhotoLibrary: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPhotoLibrary } diff --git a/src/components/IconPhotoSizeSelectActual.tsx b/src/components/IconPhotoSizeSelectActual.tsx new file mode 100644 index 000000000..848451bf8 --- /dev/null +++ b/src/components/IconPhotoSizeSelectActual.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhotoSizeSelectActual: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconPhotoSizeSelectActual } diff --git a/src/components/IconPhotoSizeSelectLarge.tsx b/src/components/IconPhotoSizeSelectLarge.tsx new file mode 100644 index 000000000..2ad87499b --- /dev/null +++ b/src/components/IconPhotoSizeSelectLarge.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhotoSizeSelectLarge: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconPhotoSizeSelectLarge } diff --git a/src/components/IconPhotoSizeSelectSmall.tsx b/src/components/IconPhotoSizeSelectSmall.tsx new file mode 100644 index 000000000..a286f2a13 --- /dev/null +++ b/src/components/IconPhotoSizeSelectSmall.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconPhotoSizeSelectSmall: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconPhotoSizeSelectSmall } diff --git a/src/components/IconPictureAsPdf.tsx b/src/components/IconPictureAsPdf.tsx new file mode 100644 index 000000000..dae13e73c --- /dev/null +++ b/src/components/IconPictureAsPdf.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPictureAsPdf: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPictureAsPdf } diff --git a/src/components/IconPictureInPicture.tsx b/src/components/IconPictureInPicture.tsx new file mode 100644 index 000000000..48c26c4e7 --- /dev/null +++ b/src/components/IconPictureInPicture.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPictureInPicture: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPictureInPicture } diff --git a/src/components/IconPictureInPictureAlt.tsx b/src/components/IconPictureInPictureAlt.tsx new file mode 100644 index 000000000..3156b5d09 --- /dev/null +++ b/src/components/IconPictureInPictureAlt.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconPictureInPictureAlt: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconPictureInPictureAlt } diff --git a/src/components/IconPieChart.tsx b/src/components/IconPieChart.tsx new file mode 100644 index 000000000..bf8c8558f --- /dev/null +++ b/src/components/IconPieChart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPieChart: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPieChart } diff --git a/src/components/IconPinDrop.tsx b/src/components/IconPinDrop.tsx new file mode 100644 index 000000000..980d232f9 --- /dev/null +++ b/src/components/IconPinDrop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPinDrop: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPinDrop } diff --git a/src/components/IconPlace.tsx b/src/components/IconPlace.tsx new file mode 100644 index 000000000..8c022840e --- /dev/null +++ b/src/components/IconPlace.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlace: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPlace } diff --git a/src/components/IconPlagiarism.tsx b/src/components/IconPlagiarism.tsx new file mode 100644 index 000000000..bae28d3c4 --- /dev/null +++ b/src/components/IconPlagiarism.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlagiarism: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconPlagiarism } diff --git a/src/components/IconPlayArrow.tsx b/src/components/IconPlayArrow.tsx new file mode 100644 index 000000000..e79befe7e --- /dev/null +++ b/src/components/IconPlayArrow.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlayArrow: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPlayArrow } diff --git a/src/components/IconPlayCircleFilled.tsx b/src/components/IconPlayCircleFilled.tsx new file mode 100644 index 000000000..644274afe --- /dev/null +++ b/src/components/IconPlayCircleFilled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlayCircleFilled: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPlayCircleFilled } diff --git a/src/components/IconPlayCircleOutline.tsx b/src/components/IconPlayCircleOutline.tsx new file mode 100644 index 000000000..f3b6c2830 --- /dev/null +++ b/src/components/IconPlayCircleOutline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlayCircleOutline: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPlayCircleOutline } diff --git a/src/components/IconPlayForWork.tsx b/src/components/IconPlayForWork.tsx new file mode 100644 index 000000000..36c1745a6 --- /dev/null +++ b/src/components/IconPlayForWork.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlayForWork: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPlayForWork } diff --git a/src/components/IconPlaylistAdd.tsx b/src/components/IconPlaylistAdd.tsx new file mode 100644 index 000000000..20fe27a28 --- /dev/null +++ b/src/components/IconPlaylistAdd.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlaylistAdd: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPlaylistAdd } diff --git a/src/components/IconPlaylistAddCheck.tsx b/src/components/IconPlaylistAddCheck.tsx new file mode 100644 index 000000000..7f13b80b4 --- /dev/null +++ b/src/components/IconPlaylistAddCheck.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlaylistAddCheck: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconPlaylistAddCheck } diff --git a/src/components/IconPlaylistPlay.tsx b/src/components/IconPlaylistPlay.tsx new file mode 100644 index 000000000..393837636 --- /dev/null +++ b/src/components/IconPlaylistPlay.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlaylistPlay: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPlaylistPlay } diff --git a/src/components/IconPlumbing.tsx b/src/components/IconPlumbing.tsx new file mode 100644 index 000000000..b23eb8ab1 --- /dev/null +++ b/src/components/IconPlumbing.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlumbing: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconPlumbing } diff --git a/src/components/IconPlusOne.tsx b/src/components/IconPlusOne.tsx new file mode 100644 index 000000000..3c9cb0004 --- /dev/null +++ b/src/components/IconPlusOne.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPlusOne: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPlusOne } diff --git a/src/components/IconPointOfSale.tsx b/src/components/IconPointOfSale.tsx new file mode 100644 index 000000000..21e3395d4 --- /dev/null +++ b/src/components/IconPointOfSale.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconPointOfSale: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconPointOfSale } diff --git a/src/components/IconPolicy.tsx b/src/components/IconPolicy.tsx new file mode 100644 index 000000000..f699c7a44 --- /dev/null +++ b/src/components/IconPolicy.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconPolicy: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconPolicy } diff --git a/src/components/IconPoll.tsx b/src/components/IconPoll.tsx new file mode 100644 index 000000000..ed08c79ed --- /dev/null +++ b/src/components/IconPoll.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPoll: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPoll } diff --git a/src/components/IconPolymer.tsx b/src/components/IconPolymer.tsx new file mode 100644 index 000000000..269e7e147 --- /dev/null +++ b/src/components/IconPolymer.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPolymer: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPolymer } diff --git a/src/components/IconPool.tsx b/src/components/IconPool.tsx new file mode 100644 index 000000000..1bb037518 --- /dev/null +++ b/src/components/IconPool.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconPool: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconPool } diff --git a/src/components/IconPortableWifiOff.tsx b/src/components/IconPortableWifiOff.tsx new file mode 100644 index 000000000..2a4003dc8 --- /dev/null +++ b/src/components/IconPortableWifiOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPortableWifiOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPortableWifiOff } diff --git a/src/components/IconPortrait.tsx b/src/components/IconPortrait.tsx new file mode 100644 index 000000000..ab1079f71 --- /dev/null +++ b/src/components/IconPortrait.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPortrait: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPortrait } diff --git a/src/components/IconPostAdd.tsx b/src/components/IconPostAdd.tsx new file mode 100644 index 000000000..ac2377ee4 --- /dev/null +++ b/src/components/IconPostAdd.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconPostAdd: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + +) + +export { IconPostAdd } diff --git a/src/components/IconPower.tsx b/src/components/IconPower.tsx new file mode 100644 index 000000000..266b8601f --- /dev/null +++ b/src/components/IconPower.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPower: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPower } diff --git a/src/components/IconPowerInput.tsx b/src/components/IconPowerInput.tsx new file mode 100644 index 000000000..8c2e764de --- /dev/null +++ b/src/components/IconPowerInput.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPowerInput: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPowerInput } diff --git a/src/components/IconPowerOff.tsx b/src/components/IconPowerOff.tsx new file mode 100644 index 000000000..c2f2a62e3 --- /dev/null +++ b/src/components/IconPowerOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPowerOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPowerOff } diff --git a/src/components/IconPowerSettingsNew.tsx b/src/components/IconPowerSettingsNew.tsx new file mode 100644 index 000000000..5ce25c176 --- /dev/null +++ b/src/components/IconPowerSettingsNew.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPowerSettingsNew: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPowerSettingsNew } diff --git a/src/components/IconPregnantWoman.tsx b/src/components/IconPregnantWoman.tsx new file mode 100644 index 000000000..21fae8990 --- /dev/null +++ b/src/components/IconPregnantWoman.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconPregnantWoman: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconPregnantWoman } diff --git a/src/components/IconPresentToAll.tsx b/src/components/IconPresentToAll.tsx new file mode 100644 index 000000000..586cafbe5 --- /dev/null +++ b/src/components/IconPresentToAll.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPresentToAll: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPresentToAll } diff --git a/src/components/IconPreview.tsx b/src/components/IconPreview.tsx new file mode 100644 index 000000000..5beab2779 --- /dev/null +++ b/src/components/IconPreview.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconPreview: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconPreview } diff --git a/src/components/IconPrint.tsx b/src/components/IconPrint.tsx new file mode 100644 index 000000000..fa934e9bc --- /dev/null +++ b/src/components/IconPrint.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPrint: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPrint } diff --git a/src/components/IconPrintDisabled.tsx b/src/components/IconPrintDisabled.tsx new file mode 100644 index 000000000..8318619c3 --- /dev/null +++ b/src/components/IconPrintDisabled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPrintDisabled: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPrintDisabled } diff --git a/src/components/IconPriorityHigh.tsx b/src/components/IconPriorityHigh.tsx new file mode 100644 index 000000000..80d95a47a --- /dev/null +++ b/src/components/IconPriorityHigh.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconPriorityHigh: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconPriorityHigh } diff --git a/src/components/IconPrivacyTip.tsx b/src/components/IconPrivacyTip.tsx new file mode 100644 index 000000000..879d261ba --- /dev/null +++ b/src/components/IconPrivacyTip.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconPrivacyTip: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconPrivacyTip } diff --git a/src/components/IconPsychology.tsx b/src/components/IconPsychology.tsx new file mode 100644 index 000000000..3373ac5f9 --- /dev/null +++ b/src/components/IconPsychology.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconPsychology: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconPsychology } diff --git a/src/components/IconPublic.tsx b/src/components/IconPublic.tsx new file mode 100644 index 000000000..5cf72e2de --- /dev/null +++ b/src/components/IconPublic.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPublic: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPublic } diff --git a/src/components/IconPublicOff.tsx b/src/components/IconPublicOff.tsx new file mode 100644 index 000000000..5bed0de29 --- /dev/null +++ b/src/components/IconPublicOff.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconPublicOff: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconPublicOff } diff --git a/src/components/IconPublish.tsx b/src/components/IconPublish.tsx new file mode 100644 index 000000000..d640543bd --- /dev/null +++ b/src/components/IconPublish.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconPublish: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconPublish } diff --git a/src/components/IconPublishedWithChanges.tsx b/src/components/IconPublishedWithChanges.tsx new file mode 100644 index 000000000..9ae6c4521 --- /dev/null +++ b/src/components/IconPublishedWithChanges.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconPublishedWithChanges: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconPublishedWithChanges } diff --git a/src/components/IconPushPin.tsx b/src/components/IconPushPin.tsx new file mode 100644 index 000000000..065f26841 --- /dev/null +++ b/src/components/IconPushPin.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconPushPin: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconPushPin } diff --git a/src/components/IconQrCode.tsx b/src/components/IconQrCode.tsx new file mode 100644 index 000000000..7dea33f34 --- /dev/null +++ b/src/components/IconQrCode.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' +const IconQrCode: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + + + + + + +) + +export { IconQrCode } diff --git a/src/components/IconQrCode2.tsx b/src/components/IconQrCode2.tsx new file mode 100644 index 000000000..dd3031d30 --- /dev/null +++ b/src/components/IconQrCode2.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconQrCode2: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconQrCode2 } diff --git a/src/components/IconQrCodeScanner.tsx b/src/components/IconQrCodeScanner.tsx new file mode 100644 index 000000000..9823e82eb --- /dev/null +++ b/src/components/IconQrCodeScanner.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconQrCodeScanner: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconQrCodeScanner } diff --git a/src/components/IconQueryBuilder.tsx b/src/components/IconQueryBuilder.tsx new file mode 100644 index 000000000..6aa2f4737 --- /dev/null +++ b/src/components/IconQueryBuilder.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconQueryBuilder: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconQueryBuilder } diff --git a/src/components/IconQuestionAnswer.tsx b/src/components/IconQuestionAnswer.tsx new file mode 100644 index 000000000..7c4658166 --- /dev/null +++ b/src/components/IconQuestionAnswer.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconQuestionAnswer: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconQuestionAnswer } diff --git a/src/components/IconQueue.tsx b/src/components/IconQueue.tsx new file mode 100644 index 000000000..7760a4015 --- /dev/null +++ b/src/components/IconQueue.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconQueue: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconQueue } diff --git a/src/components/IconQueueMusic.tsx b/src/components/IconQueueMusic.tsx new file mode 100644 index 000000000..0b73d42bd --- /dev/null +++ b/src/components/IconQueueMusic.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconQueueMusic: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconQueueMusic } diff --git a/src/components/IconQueuePlayNext.tsx b/src/components/IconQueuePlayNext.tsx new file mode 100644 index 000000000..cfb204db1 --- /dev/null +++ b/src/components/IconQueuePlayNext.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconQueuePlayNext: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconQueuePlayNext } diff --git a/src/components/IconQuickreply.tsx b/src/components/IconQuickreply.tsx new file mode 100644 index 000000000..1c45efad5 --- /dev/null +++ b/src/components/IconQuickreply.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconQuickreply: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + +) + +export { IconQuickreply } diff --git a/src/components/IconRadio.tsx b/src/components/IconRadio.tsx new file mode 100644 index 000000000..3aa49735c --- /dev/null +++ b/src/components/IconRadio.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRadio: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRadio } diff --git a/src/components/IconRadioButtonChecked.tsx b/src/components/IconRadioButtonChecked.tsx new file mode 100644 index 000000000..d0fb9b264 --- /dev/null +++ b/src/components/IconRadioButtonChecked.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRadioButtonChecked: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRadioButtonChecked } diff --git a/src/components/IconRadioButtonUnchecked.tsx b/src/components/IconRadioButtonUnchecked.tsx new file mode 100644 index 000000000..185bc5c52 --- /dev/null +++ b/src/components/IconRadioButtonUnchecked.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconRadioButtonUnchecked: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconRadioButtonUnchecked } diff --git a/src/components/IconRateReview.tsx b/src/components/IconRateReview.tsx new file mode 100644 index 000000000..4858d4da1 --- /dev/null +++ b/src/components/IconRateReview.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconRateReview: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRateReview } diff --git a/src/components/IconReadMore.tsx b/src/components/IconReadMore.tsx new file mode 100644 index 000000000..330c5fa30 --- /dev/null +++ b/src/components/IconReadMore.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconReadMore: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + +) + +export { IconReadMore } diff --git a/src/components/IconReceipt.tsx b/src/components/IconReceipt.tsx new file mode 100644 index 000000000..5d9128fb2 --- /dev/null +++ b/src/components/IconReceipt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconReceipt: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconReceipt } diff --git a/src/components/IconReceiptLong.tsx b/src/components/IconReceiptLong.tsx new file mode 100644 index 000000000..242ff411c --- /dev/null +++ b/src/components/IconReceiptLong.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconReceiptLong: React.FC = (props: IconProps): any => ( + + + + + + + + + + +) + +export { IconReceiptLong } diff --git a/src/components/IconRecentActors.tsx b/src/components/IconRecentActors.tsx new file mode 100644 index 000000000..8f657f4d7 --- /dev/null +++ b/src/components/IconRecentActors.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRecentActors: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRecentActors } diff --git a/src/components/IconRecordVoiceOver.tsx b/src/components/IconRecordVoiceOver.tsx new file mode 100644 index 000000000..50d77f6be --- /dev/null +++ b/src/components/IconRecordVoiceOver.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconRecordVoiceOver: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconRecordVoiceOver } diff --git a/src/components/IconRedeem.tsx b/src/components/IconRedeem.tsx new file mode 100644 index 000000000..511bede9e --- /dev/null +++ b/src/components/IconRedeem.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRedeem: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRedeem } diff --git a/src/components/IconRedo.tsx b/src/components/IconRedo.tsx new file mode 100644 index 000000000..c75fd84e6 --- /dev/null +++ b/src/components/IconRedo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRedo: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRedo } diff --git a/src/components/IconReduceCapacity.tsx b/src/components/IconReduceCapacity.tsx new file mode 100644 index 000000000..1c8ca959a --- /dev/null +++ b/src/components/IconReduceCapacity.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconReduceCapacity: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconReduceCapacity } diff --git a/src/components/IconRefresh.tsx b/src/components/IconRefresh.tsx new file mode 100644 index 000000000..3590891fb --- /dev/null +++ b/src/components/IconRefresh.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRefresh: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRefresh } diff --git a/src/components/IconRemove.tsx b/src/components/IconRemove.tsx new file mode 100644 index 000000000..ecd2b1761 --- /dev/null +++ b/src/components/IconRemove.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRemove: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRemove } diff --git a/src/components/IconRemoveCircle.tsx b/src/components/IconRemoveCircle.tsx new file mode 100644 index 000000000..ac44f20cd --- /dev/null +++ b/src/components/IconRemoveCircle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRemoveCircle: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRemoveCircle } diff --git a/src/components/IconRemoveCircleOutline.tsx b/src/components/IconRemoveCircleOutline.tsx new file mode 100644 index 000000000..e2a32f81b --- /dev/null +++ b/src/components/IconRemoveCircleOutline.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconRemoveCircleOutline: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconRemoveCircleOutline } diff --git a/src/components/IconRemoveFromQueue.tsx b/src/components/IconRemoveFromQueue.tsx new file mode 100644 index 000000000..8e23e9c41 --- /dev/null +++ b/src/components/IconRemoveFromQueue.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconRemoveFromQueue: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconRemoveFromQueue } diff --git a/src/components/IconRemoveRedEye.tsx b/src/components/IconRemoveRedEye.tsx new file mode 100644 index 000000000..ee25396db --- /dev/null +++ b/src/components/IconRemoveRedEye.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRemoveRedEye: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRemoveRedEye } diff --git a/src/components/IconRemoveShoppingCart.tsx b/src/components/IconRemoveShoppingCart.tsx new file mode 100644 index 000000000..f66593d3d --- /dev/null +++ b/src/components/IconRemoveShoppingCart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRemoveShoppingCart: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRemoveShoppingCart } diff --git a/src/components/IconReorder.tsx b/src/components/IconReorder.tsx new file mode 100644 index 000000000..f0deeb359 --- /dev/null +++ b/src/components/IconReorder.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconReorder: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconReorder } diff --git a/src/components/IconRepeat.tsx b/src/components/IconRepeat.tsx new file mode 100644 index 000000000..2558aefbb --- /dev/null +++ b/src/components/IconRepeat.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRepeat: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRepeat } diff --git a/src/components/IconRepeatOne.tsx b/src/components/IconRepeatOne.tsx new file mode 100644 index 000000000..42bac6b40 --- /dev/null +++ b/src/components/IconRepeatOne.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRepeatOne: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRepeatOne } diff --git a/src/components/IconReplay.tsx b/src/components/IconReplay.tsx new file mode 100644 index 000000000..edb091438 --- /dev/null +++ b/src/components/IconReplay.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconReplay: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconReplay } diff --git a/src/components/IconReplay10.tsx b/src/components/IconReplay10.tsx new file mode 100644 index 000000000..01430d613 --- /dev/null +++ b/src/components/IconReplay10.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' +const IconReplay10: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + +) + +export { IconReplay10 } diff --git a/src/components/IconReplay30.tsx b/src/components/IconReplay30.tsx new file mode 100644 index 000000000..e487462a8 --- /dev/null +++ b/src/components/IconReplay30.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' +const IconReplay30: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + +) + +export { IconReplay30 } diff --git a/src/components/IconReplay5.tsx b/src/components/IconReplay5.tsx new file mode 100644 index 000000000..8db76506a --- /dev/null +++ b/src/components/IconReplay5.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconReplay5: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + +) + +export { IconReplay5 } diff --git a/src/components/IconReply.tsx b/src/components/IconReply.tsx new file mode 100644 index 000000000..969cea43b --- /dev/null +++ b/src/components/IconReply.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconReply: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconReply } diff --git a/src/components/IconReplyAll.tsx b/src/components/IconReplyAll.tsx new file mode 100644 index 000000000..b7136e39a --- /dev/null +++ b/src/components/IconReplyAll.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconReplyAll: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconReplyAll } diff --git a/src/components/IconReport.tsx b/src/components/IconReport.tsx new file mode 100644 index 000000000..c5fcf0328 --- /dev/null +++ b/src/components/IconReport.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconReport: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconReport } diff --git a/src/components/IconReportOff.tsx b/src/components/IconReportOff.tsx new file mode 100644 index 000000000..9d0c8fc3a --- /dev/null +++ b/src/components/IconReportOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconReportOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconReportOff } diff --git a/src/components/IconReportProblem.tsx b/src/components/IconReportProblem.tsx new file mode 100644 index 000000000..52e8684ad --- /dev/null +++ b/src/components/IconReportProblem.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconReportProblem: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconReportProblem } diff --git a/src/components/IconRequestPage.tsx b/src/components/IconRequestPage.tsx new file mode 100644 index 000000000..8ab868674 --- /dev/null +++ b/src/components/IconRequestPage.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconRequestPage: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRequestPage } diff --git a/src/components/IconRequestQuote.tsx b/src/components/IconRequestQuote.tsx new file mode 100644 index 000000000..6bb2687f3 --- /dev/null +++ b/src/components/IconRequestQuote.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconRequestQuote: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconRequestQuote } diff --git a/src/components/IconRestaurant.tsx b/src/components/IconRestaurant.tsx new file mode 100644 index 000000000..eb93ecbf2 --- /dev/null +++ b/src/components/IconRestaurant.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRestaurant: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRestaurant } diff --git a/src/components/IconRestaurantMenu.tsx b/src/components/IconRestaurantMenu.tsx new file mode 100644 index 000000000..954ce7dae --- /dev/null +++ b/src/components/IconRestaurantMenu.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRestaurantMenu: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRestaurantMenu } diff --git a/src/components/IconRestore.tsx b/src/components/IconRestore.tsx new file mode 100644 index 000000000..2c807ba6a --- /dev/null +++ b/src/components/IconRestore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRestore: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRestore } diff --git a/src/components/IconRestoreFromTrash.tsx b/src/components/IconRestoreFromTrash.tsx new file mode 100644 index 000000000..6c46c943b --- /dev/null +++ b/src/components/IconRestoreFromTrash.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRestoreFromTrash: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRestoreFromTrash } diff --git a/src/components/IconRestorePage.tsx b/src/components/IconRestorePage.tsx new file mode 100644 index 000000000..ea3ef4745 --- /dev/null +++ b/src/components/IconRestorePage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRestorePage: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRestorePage } diff --git a/src/components/IconRiceBowl.tsx b/src/components/IconRiceBowl.tsx new file mode 100644 index 000000000..771156bcf --- /dev/null +++ b/src/components/IconRiceBowl.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconRiceBowl: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRiceBowl } diff --git a/src/components/IconRingVolume.tsx b/src/components/IconRingVolume.tsx new file mode 100644 index 000000000..209c88b64 --- /dev/null +++ b/src/components/IconRingVolume.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRingVolume: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRingVolume } diff --git a/src/components/IconRoofing.tsx b/src/components/IconRoofing.tsx new file mode 100644 index 000000000..3ed9e89e7 --- /dev/null +++ b/src/components/IconRoofing.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconRoofing: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRoofing } diff --git a/src/components/IconRoom.tsx b/src/components/IconRoom.tsx new file mode 100644 index 000000000..7594306c1 --- /dev/null +++ b/src/components/IconRoom.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRoom: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRoom } diff --git a/src/components/IconRoomPreferences.tsx b/src/components/IconRoomPreferences.tsx new file mode 100644 index 000000000..5788124ef --- /dev/null +++ b/src/components/IconRoomPreferences.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconRoomPreferences: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconRoomPreferences } diff --git a/src/components/IconRoomService.tsx b/src/components/IconRoomService.tsx new file mode 100644 index 000000000..f30a9e9c4 --- /dev/null +++ b/src/components/IconRoomService.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRoomService: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRoomService } diff --git a/src/components/IconRotate90DegreesCcw.tsx b/src/components/IconRotate90DegreesCcw.tsx new file mode 100644 index 000000000..51e1b83be --- /dev/null +++ b/src/components/IconRotate90DegreesCcw.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRotate90DegreesCcw: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRotate90DegreesCcw } diff --git a/src/components/IconRotateLeft.tsx b/src/components/IconRotateLeft.tsx new file mode 100644 index 000000000..b05336afa --- /dev/null +++ b/src/components/IconRotateLeft.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRotateLeft: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRotateLeft } diff --git a/src/components/IconRotateRight.tsx b/src/components/IconRotateRight.tsx new file mode 100644 index 000000000..90f00968a --- /dev/null +++ b/src/components/IconRotateRight.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRotateRight: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRotateRight } diff --git a/src/components/IconRoundedCorner.tsx b/src/components/IconRoundedCorner.tsx new file mode 100644 index 000000000..cab6ae2dc --- /dev/null +++ b/src/components/IconRoundedCorner.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconRoundedCorner: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconRoundedCorner } diff --git a/src/components/IconRouter.tsx b/src/components/IconRouter.tsx new file mode 100644 index 000000000..276da15a6 --- /dev/null +++ b/src/components/IconRouter.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconRouter: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconRouter } diff --git a/src/components/IconRowing.tsx b/src/components/IconRowing.tsx new file mode 100644 index 000000000..7862d962a --- /dev/null +++ b/src/components/IconRowing.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconRowing: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconRowing } diff --git a/src/components/IconRssFeed.tsx b/src/components/IconRssFeed.tsx new file mode 100644 index 000000000..faff81ea6 --- /dev/null +++ b/src/components/IconRssFeed.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconRssFeed: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconRssFeed } diff --git a/src/components/IconRule.tsx b/src/components/IconRule.tsx new file mode 100644 index 000000000..d0153ae1b --- /dev/null +++ b/src/components/IconRule.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconRule: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconRule } diff --git a/src/components/IconRuleFolder.tsx b/src/components/IconRuleFolder.tsx new file mode 100644 index 000000000..fcee5b0e7 --- /dev/null +++ b/src/components/IconRuleFolder.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconRuleFolder: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconRuleFolder } diff --git a/src/components/IconRunCircle.tsx b/src/components/IconRunCircle.tsx new file mode 100644 index 000000000..eb98c3137 --- /dev/null +++ b/src/components/IconRunCircle.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconRunCircle: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconRunCircle } diff --git a/src/components/IconRvHookup.tsx b/src/components/IconRvHookup.tsx new file mode 100644 index 000000000..fb856e44a --- /dev/null +++ b/src/components/IconRvHookup.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconRvHookup: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconRvHookup } diff --git a/src/components/IconSanitizer.tsx b/src/components/IconSanitizer.tsx new file mode 100644 index 000000000..bc7875902 --- /dev/null +++ b/src/components/IconSanitizer.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSanitizer: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSanitizer } diff --git a/src/components/IconSatellite.tsx b/src/components/IconSatellite.tsx new file mode 100644 index 000000000..8d3abc9c7 --- /dev/null +++ b/src/components/IconSatellite.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSatellite: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSatellite } diff --git a/src/components/IconSave.tsx b/src/components/IconSave.tsx new file mode 100644 index 000000000..a3177fa5a --- /dev/null +++ b/src/components/IconSave.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSave: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSave } diff --git a/src/components/IconSaveAlt.tsx b/src/components/IconSaveAlt.tsx new file mode 100644 index 000000000..53adc4b0b --- /dev/null +++ b/src/components/IconSaveAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSaveAlt: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSaveAlt } diff --git a/src/components/IconScanner.tsx b/src/components/IconScanner.tsx new file mode 100644 index 000000000..d07e8a51e --- /dev/null +++ b/src/components/IconScanner.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconScanner: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconScanner } diff --git a/src/components/IconScatterPlot.tsx b/src/components/IconScatterPlot.tsx new file mode 100644 index 000000000..86838293c --- /dev/null +++ b/src/components/IconScatterPlot.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' +const IconScatterPlot: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconScatterPlot } diff --git a/src/components/IconSchedule.tsx b/src/components/IconSchedule.tsx new file mode 100644 index 000000000..e89ae8002 --- /dev/null +++ b/src/components/IconSchedule.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconSchedule: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconSchedule } diff --git a/src/components/IconSchool.tsx b/src/components/IconSchool.tsx new file mode 100644 index 000000000..d64f2f6f0 --- /dev/null +++ b/src/components/IconSchool.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSchool: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSchool } diff --git a/src/components/IconScience.tsx b/src/components/IconScience.tsx new file mode 100644 index 000000000..241b7dbe1 --- /dev/null +++ b/src/components/IconScience.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconScience: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconScience } diff --git a/src/components/IconScore.tsx b/src/components/IconScore.tsx new file mode 100644 index 000000000..2ebe7f2b3 --- /dev/null +++ b/src/components/IconScore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconScore: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconScore } diff --git a/src/components/IconScreenLockLandscape.tsx b/src/components/IconScreenLockLandscape.tsx new file mode 100644 index 000000000..86031490f --- /dev/null +++ b/src/components/IconScreenLockLandscape.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconScreenLockLandscape: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconScreenLockLandscape } diff --git a/src/components/IconScreenLockPortrait.tsx b/src/components/IconScreenLockPortrait.tsx new file mode 100644 index 000000000..0d9651759 --- /dev/null +++ b/src/components/IconScreenLockPortrait.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconScreenLockPortrait: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconScreenLockPortrait } diff --git a/src/components/IconScreenLockRotation.tsx b/src/components/IconScreenLockRotation.tsx new file mode 100644 index 000000000..c32de2104 --- /dev/null +++ b/src/components/IconScreenLockRotation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconScreenLockRotation: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconScreenLockRotation } diff --git a/src/components/IconScreenRotation.tsx b/src/components/IconScreenRotation.tsx new file mode 100644 index 000000000..fcf26589c --- /dev/null +++ b/src/components/IconScreenRotation.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconScreenRotation: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconScreenRotation } diff --git a/src/components/IconScreenShare.tsx b/src/components/IconScreenShare.tsx new file mode 100644 index 000000000..7c6cbe71a --- /dev/null +++ b/src/components/IconScreenShare.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconScreenShare: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconScreenShare } diff --git a/src/components/IconSdCard.tsx b/src/components/IconSdCard.tsx new file mode 100644 index 000000000..159e54193 --- /dev/null +++ b/src/components/IconSdCard.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSdCard: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSdCard } diff --git a/src/components/IconSdStorage.tsx b/src/components/IconSdStorage.tsx new file mode 100644 index 000000000..886b68bd9 --- /dev/null +++ b/src/components/IconSdStorage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSdStorage: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSdStorage } diff --git a/src/components/IconSearch.tsx b/src/components/IconSearch.tsx new file mode 100644 index 000000000..871a1bfb7 --- /dev/null +++ b/src/components/IconSearch.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSearch: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSearch } diff --git a/src/components/IconSearchOff.tsx b/src/components/IconSearchOff.tsx new file mode 100644 index 000000000..f290defc4 --- /dev/null +++ b/src/components/IconSearchOff.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconSearchOff: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconSearchOff } diff --git a/src/components/IconSecurity.tsx b/src/components/IconSecurity.tsx new file mode 100644 index 000000000..d02c73147 --- /dev/null +++ b/src/components/IconSecurity.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSecurity: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSecurity } diff --git a/src/components/IconSelectAll.tsx b/src/components/IconSelectAll.tsx new file mode 100644 index 000000000..33313e7f1 --- /dev/null +++ b/src/components/IconSelectAll.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSelectAll: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSelectAll } diff --git a/src/components/IconSelfImprovement.tsx b/src/components/IconSelfImprovement.tsx new file mode 100644 index 000000000..7e8342824 --- /dev/null +++ b/src/components/IconSelfImprovement.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconSelfImprovement: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconSelfImprovement } diff --git a/src/components/IconSend.tsx b/src/components/IconSend.tsx new file mode 100644 index 000000000..37caf6f1a --- /dev/null +++ b/src/components/IconSend.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSend: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSend } diff --git a/src/components/IconSensorDoor.tsx b/src/components/IconSensorDoor.tsx new file mode 100644 index 000000000..ed546d58f --- /dev/null +++ b/src/components/IconSensorDoor.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSensorDoor: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconSensorDoor } diff --git a/src/components/IconSensorWindow.tsx b/src/components/IconSensorWindow.tsx new file mode 100644 index 000000000..21897f92c --- /dev/null +++ b/src/components/IconSensorWindow.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSensorWindow: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconSensorWindow } diff --git a/src/components/IconSentimentDissatisfied.tsx b/src/components/IconSentimentDissatisfied.tsx new file mode 100644 index 000000000..d61ad6a6b --- /dev/null +++ b/src/components/IconSentimentDissatisfied.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' +const IconSentimentDissatisfied: React.FC = ( + props: IconProps +): any => ( + + + + + + +) + +export { IconSentimentDissatisfied } diff --git a/src/components/IconSentimentSatisfied.tsx b/src/components/IconSentimentSatisfied.tsx new file mode 100644 index 000000000..db1a3b436 --- /dev/null +++ b/src/components/IconSentimentSatisfied.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSentimentSatisfied: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconSentimentSatisfied } diff --git a/src/components/IconSentimentSatisfiedAlt.tsx b/src/components/IconSentimentSatisfiedAlt.tsx new file mode 100644 index 000000000..2ccde2406 --- /dev/null +++ b/src/components/IconSentimentSatisfiedAlt.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSentimentSatisfiedAlt: React.FC = ( + props: IconProps +): any => ( + + + + + + + + + +) + +export { IconSentimentSatisfiedAlt } diff --git a/src/components/IconSentimentVeryDissatisfied.tsx b/src/components/IconSentimentVeryDissatisfied.tsx new file mode 100644 index 000000000..734bd8827 --- /dev/null +++ b/src/components/IconSentimentVeryDissatisfied.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' +const IconSentimentVeryDissatisfied: React.FC = ( + props: IconProps +): any => ( + + + + + + +) + +export { IconSentimentVeryDissatisfied } diff --git a/src/components/IconSentimentVerySatisfied.tsx b/src/components/IconSentimentVerySatisfied.tsx new file mode 100644 index 000000000..b0823d610 --- /dev/null +++ b/src/components/IconSentimentVerySatisfied.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' +const IconSentimentVerySatisfied: React.FC = ( + props: IconProps +): any => ( + + + + + + +) + +export { IconSentimentVerySatisfied } diff --git a/src/components/IconSetMeal.tsx b/src/components/IconSetMeal.tsx new file mode 100644 index 000000000..edf348033 --- /dev/null +++ b/src/components/IconSetMeal.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSetMeal: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSetMeal } diff --git a/src/components/IconSettings.tsx b/src/components/IconSettings.tsx new file mode 100644 index 000000000..144f65105 --- /dev/null +++ b/src/components/IconSettings.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettings: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconSettings } diff --git a/src/components/IconSettingsApplications.tsx b/src/components/IconSettingsApplications.tsx new file mode 100644 index 000000000..f84b7274a --- /dev/null +++ b/src/components/IconSettingsApplications.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsApplications: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconSettingsApplications } diff --git a/src/components/IconSettingsBackupRestore.tsx b/src/components/IconSettingsBackupRestore.tsx new file mode 100644 index 000000000..1432c4ce1 --- /dev/null +++ b/src/components/IconSettingsBackupRestore.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsBackupRestore: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconSettingsBackupRestore } diff --git a/src/components/IconSettingsBluetooth.tsx b/src/components/IconSettingsBluetooth.tsx new file mode 100644 index 000000000..4ca32323c --- /dev/null +++ b/src/components/IconSettingsBluetooth.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsBluetooth: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSettingsBluetooth } diff --git a/src/components/IconSettingsBrightness.tsx b/src/components/IconSettingsBrightness.tsx new file mode 100644 index 000000000..391bdb07d --- /dev/null +++ b/src/components/IconSettingsBrightness.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsBrightness: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSettingsBrightness } diff --git a/src/components/IconSettingsCell.tsx b/src/components/IconSettingsCell.tsx new file mode 100644 index 000000000..03a45ed39 --- /dev/null +++ b/src/components/IconSettingsCell.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsCell: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSettingsCell } diff --git a/src/components/IconSettingsEthernet.tsx b/src/components/IconSettingsEthernet.tsx new file mode 100644 index 000000000..ad76519d5 --- /dev/null +++ b/src/components/IconSettingsEthernet.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsEthernet: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSettingsEthernet } diff --git a/src/components/IconSettingsInputAntenna.tsx b/src/components/IconSettingsInputAntenna.tsx new file mode 100644 index 000000000..5fc40784c --- /dev/null +++ b/src/components/IconSettingsInputAntenna.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsInputAntenna: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconSettingsInputAntenna } diff --git a/src/components/IconSettingsInputComponent.tsx b/src/components/IconSettingsInputComponent.tsx new file mode 100644 index 000000000..9b1aabdbc --- /dev/null +++ b/src/components/IconSettingsInputComponent.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsInputComponent: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconSettingsInputComponent } diff --git a/src/components/IconSettingsInputComposite.tsx b/src/components/IconSettingsInputComposite.tsx new file mode 100644 index 000000000..fe8020ab6 --- /dev/null +++ b/src/components/IconSettingsInputComposite.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsInputComposite: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconSettingsInputComposite } diff --git a/src/components/IconSettingsInputHdmi.tsx b/src/components/IconSettingsInputHdmi.tsx new file mode 100644 index 000000000..8e589baa4 --- /dev/null +++ b/src/components/IconSettingsInputHdmi.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsInputHdmi: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSettingsInputHdmi } diff --git a/src/components/IconSettingsInputSvideo.tsx b/src/components/IconSettingsInputSvideo.tsx new file mode 100644 index 000000000..5c5ba7cca --- /dev/null +++ b/src/components/IconSettingsInputSvideo.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsInputSvideo: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconSettingsInputSvideo } diff --git a/src/components/IconSettingsOverscan.tsx b/src/components/IconSettingsOverscan.tsx new file mode 100644 index 000000000..1db3f632b --- /dev/null +++ b/src/components/IconSettingsOverscan.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsOverscan: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSettingsOverscan } diff --git a/src/components/IconSettingsPhone.tsx b/src/components/IconSettingsPhone.tsx new file mode 100644 index 000000000..dd625f98a --- /dev/null +++ b/src/components/IconSettingsPhone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsPhone: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSettingsPhone } diff --git a/src/components/IconSettingsPower.tsx b/src/components/IconSettingsPower.tsx new file mode 100644 index 000000000..622847bf9 --- /dev/null +++ b/src/components/IconSettingsPower.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsPower: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSettingsPower } diff --git a/src/components/IconSettingsRemote.tsx b/src/components/IconSettingsRemote.tsx new file mode 100644 index 000000000..47a42a081 --- /dev/null +++ b/src/components/IconSettingsRemote.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsRemote: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSettingsRemote } diff --git a/src/components/IconSettingsSystemDaydream.tsx b/src/components/IconSettingsSystemDaydream.tsx new file mode 100644 index 000000000..875c46dec --- /dev/null +++ b/src/components/IconSettingsSystemDaydream.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsSystemDaydream: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconSettingsSystemDaydream } diff --git a/src/components/IconSettingsVoice.tsx b/src/components/IconSettingsVoice.tsx new file mode 100644 index 000000000..0057be5bc --- /dev/null +++ b/src/components/IconSettingsVoice.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSettingsVoice: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSettingsVoice } diff --git a/src/components/IconShare.tsx b/src/components/IconShare.tsx new file mode 100644 index 000000000..492ee9c71 --- /dev/null +++ b/src/components/IconShare.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconShare: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconShare } diff --git a/src/components/IconShop.tsx b/src/components/IconShop.tsx new file mode 100644 index 000000000..a3b60d316 --- /dev/null +++ b/src/components/IconShop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconShop: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconShop } diff --git a/src/components/IconShopTwo.tsx b/src/components/IconShopTwo.tsx new file mode 100644 index 000000000..5a0657960 --- /dev/null +++ b/src/components/IconShopTwo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconShopTwo: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconShopTwo } diff --git a/src/components/IconShoppingBag.tsx b/src/components/IconShoppingBag.tsx new file mode 100644 index 000000000..1ee005ac1 --- /dev/null +++ b/src/components/IconShoppingBag.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconShoppingBag: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconShoppingBag } diff --git a/src/components/IconShoppingBasket.tsx b/src/components/IconShoppingBasket.tsx new file mode 100644 index 000000000..9f1a80688 --- /dev/null +++ b/src/components/IconShoppingBasket.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconShoppingBasket: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconShoppingBasket } diff --git a/src/components/IconShoppingCart.tsx b/src/components/IconShoppingCart.tsx new file mode 100644 index 000000000..d1506df40 --- /dev/null +++ b/src/components/IconShoppingCart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconShoppingCart: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconShoppingCart } diff --git a/src/components/IconShortText.tsx b/src/components/IconShortText.tsx new file mode 100644 index 000000000..80a2ca604 --- /dev/null +++ b/src/components/IconShortText.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconShortText: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconShortText } diff --git a/src/components/IconShowChart.tsx b/src/components/IconShowChart.tsx new file mode 100644 index 000000000..f8f89cd63 --- /dev/null +++ b/src/components/IconShowChart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconShowChart: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconShowChart } diff --git a/src/components/IconShuffle.tsx b/src/components/IconShuffle.tsx new file mode 100644 index 000000000..3316b6add --- /dev/null +++ b/src/components/IconShuffle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconShuffle: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconShuffle } diff --git a/src/components/IconShutterSpeed.tsx b/src/components/IconShutterSpeed.tsx new file mode 100644 index 000000000..aca353e85 --- /dev/null +++ b/src/components/IconShutterSpeed.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconShutterSpeed: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconShutterSpeed } diff --git a/src/components/IconSick.tsx b/src/components/IconSick.tsx new file mode 100644 index 000000000..200d8a8c9 --- /dev/null +++ b/src/components/IconSick.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSick: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSick } diff --git a/src/components/IconSignalCellular4Bar.tsx b/src/components/IconSignalCellular4Bar.tsx new file mode 100644 index 000000000..bf21a6a9e --- /dev/null +++ b/src/components/IconSignalCellular4Bar.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalCellular4Bar: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSignalCellular4Bar } diff --git a/src/components/IconSignalCellularAlt.tsx b/src/components/IconSignalCellularAlt.tsx new file mode 100644 index 000000000..f6b916ab2 --- /dev/null +++ b/src/components/IconSignalCellularAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalCellularAlt: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSignalCellularAlt } diff --git a/src/components/IconSignalCellularConnectedNoInternet4Bar.tsx b/src/components/IconSignalCellularConnectedNoInternet4Bar.tsx new file mode 100644 index 000000000..e6e0b59f4 --- /dev/null +++ b/src/components/IconSignalCellularConnectedNoInternet4Bar.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalCellularConnectedNoInternet4Bar: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconSignalCellularConnectedNoInternet4Bar } diff --git a/src/components/IconSignalCellularNoSim.tsx b/src/components/IconSignalCellularNoSim.tsx new file mode 100644 index 000000000..e178bdcbe --- /dev/null +++ b/src/components/IconSignalCellularNoSim.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalCellularNoSim: React.FC = ( + props: IconProps +): any => ( + + + + + +) + +export { IconSignalCellularNoSim } diff --git a/src/components/IconSignalCellularNull.tsx b/src/components/IconSignalCellularNull.tsx new file mode 100644 index 000000000..f400ab272 --- /dev/null +++ b/src/components/IconSignalCellularNull.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalCellularNull: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSignalCellularNull } diff --git a/src/components/IconSignalCellularOff.tsx b/src/components/IconSignalCellularOff.tsx new file mode 100644 index 000000000..210644b16 --- /dev/null +++ b/src/components/IconSignalCellularOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalCellularOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSignalCellularOff } diff --git a/src/components/IconSignalWifi4Bar.tsx b/src/components/IconSignalWifi4Bar.tsx new file mode 100644 index 000000000..214f7b9f8 --- /dev/null +++ b/src/components/IconSignalWifi4Bar.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalWifi4Bar: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSignalWifi4Bar } diff --git a/src/components/IconSignalWifi4BarLock.tsx b/src/components/IconSignalWifi4BarLock.tsx new file mode 100644 index 000000000..7fc16adb3 --- /dev/null +++ b/src/components/IconSignalWifi4BarLock.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalWifi4BarLock: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSignalWifi4BarLock } diff --git a/src/components/IconSignalWifiOff.tsx b/src/components/IconSignalWifiOff.tsx new file mode 100644 index 000000000..3b39df520 --- /dev/null +++ b/src/components/IconSignalWifiOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSignalWifiOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSignalWifiOff } diff --git a/src/components/IconSimCard.tsx b/src/components/IconSimCard.tsx new file mode 100644 index 000000000..d8665253a --- /dev/null +++ b/src/components/IconSimCard.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSimCard: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSimCard } diff --git a/src/components/IconSingleBed.tsx b/src/components/IconSingleBed.tsx new file mode 100644 index 000000000..40417d518 --- /dev/null +++ b/src/components/IconSingleBed.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconSingleBed: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconSingleBed } diff --git a/src/components/IconSkipNext.tsx b/src/components/IconSkipNext.tsx new file mode 100644 index 000000000..7fa3ba52c --- /dev/null +++ b/src/components/IconSkipNext.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSkipNext: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSkipNext } diff --git a/src/components/IconSkipPrevious.tsx b/src/components/IconSkipPrevious.tsx new file mode 100644 index 000000000..2d22c87c1 --- /dev/null +++ b/src/components/IconSkipPrevious.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSkipPrevious: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSkipPrevious } diff --git a/src/components/IconSlideshow.tsx b/src/components/IconSlideshow.tsx new file mode 100644 index 000000000..c2b52ad48 --- /dev/null +++ b/src/components/IconSlideshow.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSlideshow: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSlideshow } diff --git a/src/components/IconSlowMotionVideo.tsx b/src/components/IconSlowMotionVideo.tsx new file mode 100644 index 000000000..dd3dd1c01 --- /dev/null +++ b/src/components/IconSlowMotionVideo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSlowMotionVideo: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSlowMotionVideo } diff --git a/src/components/IconSmartButton.tsx b/src/components/IconSmartButton.tsx new file mode 100644 index 000000000..2063dc207 --- /dev/null +++ b/src/components/IconSmartButton.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSmartButton: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconSmartButton } diff --git a/src/components/IconSmartphone.tsx b/src/components/IconSmartphone.tsx new file mode 100644 index 000000000..4de3e7214 --- /dev/null +++ b/src/components/IconSmartphone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSmartphone: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSmartphone } diff --git a/src/components/IconSmokeFree.tsx b/src/components/IconSmokeFree.tsx new file mode 100644 index 000000000..a7f3a868e --- /dev/null +++ b/src/components/IconSmokeFree.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSmokeFree: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSmokeFree } diff --git a/src/components/IconSmokingRooms.tsx b/src/components/IconSmokingRooms.tsx new file mode 100644 index 000000000..3fe2b592d --- /dev/null +++ b/src/components/IconSmokingRooms.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSmokingRooms: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSmokingRooms } diff --git a/src/components/IconSms.tsx b/src/components/IconSms.tsx new file mode 100644 index 000000000..f6abfff47 --- /dev/null +++ b/src/components/IconSms.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSms: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSms } diff --git a/src/components/IconSmsFailed.tsx b/src/components/IconSmsFailed.tsx new file mode 100644 index 000000000..964157b17 --- /dev/null +++ b/src/components/IconSmsFailed.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSmsFailed: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSmsFailed } diff --git a/src/components/IconSnippetFolder.tsx b/src/components/IconSnippetFolder.tsx new file mode 100644 index 000000000..d9d0611ea --- /dev/null +++ b/src/components/IconSnippetFolder.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSnippetFolder: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconSnippetFolder } diff --git a/src/components/IconSnooze.tsx b/src/components/IconSnooze.tsx new file mode 100644 index 000000000..d0e142d00 --- /dev/null +++ b/src/components/IconSnooze.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSnooze: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSnooze } diff --git a/src/components/IconSoap.tsx b/src/components/IconSoap.tsx new file mode 100644 index 000000000..86b2758fc --- /dev/null +++ b/src/components/IconSoap.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSoap: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconSoap } diff --git a/src/components/IconSort.tsx b/src/components/IconSort.tsx new file mode 100644 index 000000000..acc680342 --- /dev/null +++ b/src/components/IconSort.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSort: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSort } diff --git a/src/components/IconSortByAlpha.tsx b/src/components/IconSortByAlpha.tsx new file mode 100644 index 000000000..ba291ad35 --- /dev/null +++ b/src/components/IconSortByAlpha.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconSortByAlpha: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSortByAlpha } diff --git a/src/components/IconSource.tsx b/src/components/IconSource.tsx new file mode 100644 index 000000000..e479f8394 --- /dev/null +++ b/src/components/IconSource.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSource: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconSource } diff --git a/src/components/IconSouth.tsx b/src/components/IconSouth.tsx new file mode 100644 index 000000000..92c349395 --- /dev/null +++ b/src/components/IconSouth.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSouth: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSouth } diff --git a/src/components/IconSouthEast.tsx b/src/components/IconSouthEast.tsx new file mode 100644 index 000000000..20ab83406 --- /dev/null +++ b/src/components/IconSouthEast.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSouthEast: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSouthEast } diff --git a/src/components/IconSouthWest.tsx b/src/components/IconSouthWest.tsx new file mode 100644 index 000000000..598a9db6a --- /dev/null +++ b/src/components/IconSouthWest.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSouthWest: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSouthWest } diff --git a/src/components/IconSpa.tsx b/src/components/IconSpa.tsx new file mode 100644 index 000000000..c5c1a873b --- /dev/null +++ b/src/components/IconSpa.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpa: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconSpa } diff --git a/src/components/IconSpaceBar.tsx b/src/components/IconSpaceBar.tsx new file mode 100644 index 000000000..0754707a9 --- /dev/null +++ b/src/components/IconSpaceBar.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpaceBar: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSpaceBar } diff --git a/src/components/IconSpeaker.tsx b/src/components/IconSpeaker.tsx new file mode 100644 index 000000000..6cee60cf4 --- /dev/null +++ b/src/components/IconSpeaker.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpeaker: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSpeaker } diff --git a/src/components/IconSpeakerGroup.tsx b/src/components/IconSpeakerGroup.tsx new file mode 100644 index 000000000..cef1ec146 --- /dev/null +++ b/src/components/IconSpeakerGroup.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpeakerGroup: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconSpeakerGroup } diff --git a/src/components/IconSpeakerNotes.tsx b/src/components/IconSpeakerNotes.tsx new file mode 100644 index 000000000..3ad57803e --- /dev/null +++ b/src/components/IconSpeakerNotes.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpeakerNotes: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSpeakerNotes } diff --git a/src/components/IconSpeakerNotesOff.tsx b/src/components/IconSpeakerNotesOff.tsx new file mode 100644 index 000000000..46a0d7281 --- /dev/null +++ b/src/components/IconSpeakerNotesOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpeakerNotesOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSpeakerNotesOff } diff --git a/src/components/IconSpeakerPhone.tsx b/src/components/IconSpeakerPhone.tsx new file mode 100644 index 000000000..d3569c251 --- /dev/null +++ b/src/components/IconSpeakerPhone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpeakerPhone: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSpeakerPhone } diff --git a/src/components/IconSpeed.tsx b/src/components/IconSpeed.tsx new file mode 100644 index 000000000..f6e69c8ee --- /dev/null +++ b/src/components/IconSpeed.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpeed: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSpeed } diff --git a/src/components/IconSpellcheck.tsx b/src/components/IconSpellcheck.tsx new file mode 100644 index 000000000..51039c640 --- /dev/null +++ b/src/components/IconSpellcheck.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSpellcheck: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSpellcheck } diff --git a/src/components/IconSports.tsx b/src/components/IconSports.tsx new file mode 100644 index 000000000..cd981adfd --- /dev/null +++ b/src/components/IconSports.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconSports: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + +) + +export { IconSports } diff --git a/src/components/IconSportsBar.tsx b/src/components/IconSportsBar.tsx new file mode 100644 index 000000000..c8105ee93 --- /dev/null +++ b/src/components/IconSportsBar.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsBar: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSportsBar } diff --git a/src/components/IconSportsBaseball.tsx b/src/components/IconSportsBaseball.tsx new file mode 100644 index 000000000..f9965285e --- /dev/null +++ b/src/components/IconSportsBaseball.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsBaseball: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + + + + +) + +export { IconSportsBaseball } diff --git a/src/components/IconSportsBasketball.tsx b/src/components/IconSportsBasketball.tsx new file mode 100644 index 000000000..2833d7334 --- /dev/null +++ b/src/components/IconSportsBasketball.tsx @@ -0,0 +1,44 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsBasketball: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconSportsBasketball } diff --git a/src/components/IconSportsCricket.tsx b/src/components/IconSportsCricket.tsx new file mode 100644 index 000000000..6cd5d9e13 --- /dev/null +++ b/src/components/IconSportsCricket.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsCricket: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + +) + +export { IconSportsCricket } diff --git a/src/components/IconSportsEsports.tsx b/src/components/IconSportsEsports.tsx new file mode 100644 index 000000000..994a02ce9 --- /dev/null +++ b/src/components/IconSportsEsports.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsEsports: React.FC = (props: IconProps): any => ( + + + + + + + + + + +) + +export { IconSportsEsports } diff --git a/src/components/IconSportsFootball.tsx b/src/components/IconSportsFootball.tsx new file mode 100644 index 000000000..a435e446f --- /dev/null +++ b/src/components/IconSportsFootball.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsFootball: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconSportsFootball } diff --git a/src/components/IconSportsGolf.tsx b/src/components/IconSportsGolf.tsx new file mode 100644 index 000000000..bd12b8130 --- /dev/null +++ b/src/components/IconSportsGolf.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsGolf: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + +) + +export { IconSportsGolf } diff --git a/src/components/IconSportsHandball.tsx b/src/components/IconSportsHandball.tsx new file mode 100644 index 000000000..72c167cee --- /dev/null +++ b/src/components/IconSportsHandball.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsHandball: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconSportsHandball } diff --git a/src/components/IconSportsHockey.tsx b/src/components/IconSportsHockey.tsx new file mode 100644 index 000000000..e129ec30c --- /dev/null +++ b/src/components/IconSportsHockey.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsHockey: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + +) + +export { IconSportsHockey } diff --git a/src/components/IconSportsKabaddi.tsx b/src/components/IconSportsKabaddi.tsx new file mode 100644 index 000000000..8d3348560 --- /dev/null +++ b/src/components/IconSportsKabaddi.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsKabaddi: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + +) + +export { IconSportsKabaddi } diff --git a/src/components/IconSportsMma.tsx b/src/components/IconSportsMma.tsx new file mode 100644 index 000000000..362fc9684 --- /dev/null +++ b/src/components/IconSportsMma.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsMma: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconSportsMma } diff --git a/src/components/IconSportsMotorsports.tsx b/src/components/IconSportsMotorsports.tsx new file mode 100644 index 000000000..8890687a5 --- /dev/null +++ b/src/components/IconSportsMotorsports.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsMotorsports: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconSportsMotorsports } diff --git a/src/components/IconSportsRugby.tsx b/src/components/IconSportsRugby.tsx new file mode 100644 index 000000000..53bf9209a --- /dev/null +++ b/src/components/IconSportsRugby.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsRugby: React.FC = (props: IconProps): any => ( + + + + + + + + + + +) + +export { IconSportsRugby } diff --git a/src/components/IconSportsSoccer.tsx b/src/components/IconSportsSoccer.tsx new file mode 100644 index 000000000..cd1db806b --- /dev/null +++ b/src/components/IconSportsSoccer.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsSoccer: React.FC = (props: IconProps): any => ( + + + + + + + + + + +) + +export { IconSportsSoccer } diff --git a/src/components/IconSportsTennis.tsx b/src/components/IconSportsTennis.tsx new file mode 100644 index 000000000..20c7dc951 --- /dev/null +++ b/src/components/IconSportsTennis.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsTennis: React.FC = (props: IconProps): any => ( + + + + + + + + + +) + +export { IconSportsTennis } diff --git a/src/components/IconSportsVolleyball.tsx b/src/components/IconSportsVolleyball.tsx new file mode 100644 index 000000000..73b1ba922 --- /dev/null +++ b/src/components/IconSportsVolleyball.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconSportsVolleyball: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + +) + +export { IconSportsVolleyball } diff --git a/src/components/IconSquareFoot.tsx b/src/components/IconSquareFoot.tsx new file mode 100644 index 000000000..f9026230e --- /dev/null +++ b/src/components/IconSquareFoot.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconSquareFoot: React.FC = (props: IconProps): any => ( + + + + + + + + + + +) + +export { IconSquareFoot } diff --git a/src/components/IconStackedLineChart.tsx b/src/components/IconStackedLineChart.tsx new file mode 100644 index 000000000..5c4bd15a6 --- /dev/null +++ b/src/components/IconStackedLineChart.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconStackedLineChart: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconStackedLineChart } diff --git a/src/components/IconStairs.tsx b/src/components/IconStairs.tsx new file mode 100644 index 000000000..a4b461838 --- /dev/null +++ b/src/components/IconStairs.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' +const IconStairs: React.FC = (props: IconProps): any => ( + + + + + + + + + + +) + +export { IconStairs } diff --git a/src/components/IconStar.tsx b/src/components/IconStar.tsx new file mode 100644 index 000000000..2da884dcd --- /dev/null +++ b/src/components/IconStar.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconStar: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconStar } diff --git a/src/components/IconStarBorder.tsx b/src/components/IconStarBorder.tsx new file mode 100644 index 000000000..42be5e3ab --- /dev/null +++ b/src/components/IconStarBorder.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStarBorder: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconStarBorder } diff --git a/src/components/IconStarHalf.tsx b/src/components/IconStarHalf.tsx new file mode 100644 index 000000000..79a3b9b83 --- /dev/null +++ b/src/components/IconStarHalf.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconStarHalf: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconStarHalf } diff --git a/src/components/IconStarOutline.tsx b/src/components/IconStarOutline.tsx new file mode 100644 index 000000000..17c6fa118 --- /dev/null +++ b/src/components/IconStarOutline.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { IconProps } from './types' +const IconStarOutline: React.FC = (props: IconProps): any => ( + + + +) + +export { IconStarOutline } diff --git a/src/components/IconStarRate.tsx b/src/components/IconStarRate.tsx new file mode 100644 index 000000000..8a57ca533 --- /dev/null +++ b/src/components/IconStarRate.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconStarRate: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconStarRate } diff --git a/src/components/IconStars.tsx b/src/components/IconStars.tsx new file mode 100644 index 000000000..56379f32a --- /dev/null +++ b/src/components/IconStars.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStars: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconStars } diff --git a/src/components/IconStayCurrentLandscape.tsx b/src/components/IconStayCurrentLandscape.tsx new file mode 100644 index 000000000..4390d8063 --- /dev/null +++ b/src/components/IconStayCurrentLandscape.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconStayCurrentLandscape: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconStayCurrentLandscape } diff --git a/src/components/IconStayCurrentPortrait.tsx b/src/components/IconStayCurrentPortrait.tsx new file mode 100644 index 000000000..88b3b4f77 --- /dev/null +++ b/src/components/IconStayCurrentPortrait.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconStayCurrentPortrait: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconStayCurrentPortrait } diff --git a/src/components/IconStayPrimaryLandscape.tsx b/src/components/IconStayPrimaryLandscape.tsx new file mode 100644 index 000000000..37f816fb3 --- /dev/null +++ b/src/components/IconStayPrimaryLandscape.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconStayPrimaryLandscape: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconStayPrimaryLandscape } diff --git a/src/components/IconStayPrimaryPortrait.tsx b/src/components/IconStayPrimaryPortrait.tsx new file mode 100644 index 000000000..fa162f5bb --- /dev/null +++ b/src/components/IconStayPrimaryPortrait.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconStayPrimaryPortrait: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconStayPrimaryPortrait } diff --git a/src/components/IconStickyNote2.tsx b/src/components/IconStickyNote2.tsx new file mode 100644 index 000000000..ab428aea3 --- /dev/null +++ b/src/components/IconStickyNote2.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconStickyNote2: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconStickyNote2 } diff --git a/src/components/IconStop.tsx b/src/components/IconStop.tsx new file mode 100644 index 000000000..a05784577 --- /dev/null +++ b/src/components/IconStop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStop: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconStop } diff --git a/src/components/IconStopCircle.tsx b/src/components/IconStopCircle.tsx new file mode 100644 index 000000000..b365ea2db --- /dev/null +++ b/src/components/IconStopCircle.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconStopCircle: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconStopCircle } diff --git a/src/components/IconStopScreenShare.tsx b/src/components/IconStopScreenShare.tsx new file mode 100644 index 000000000..2a18dca1f --- /dev/null +++ b/src/components/IconStopScreenShare.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStopScreenShare: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconStopScreenShare } diff --git a/src/components/IconStorage.tsx b/src/components/IconStorage.tsx new file mode 100644 index 000000000..082c421bb --- /dev/null +++ b/src/components/IconStorage.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStorage: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconStorage } diff --git a/src/components/IconStore.tsx b/src/components/IconStore.tsx new file mode 100644 index 000000000..6f58ca46d --- /dev/null +++ b/src/components/IconStore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStore: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconStore } diff --git a/src/components/IconStoreMallDirectory.tsx b/src/components/IconStoreMallDirectory.tsx new file mode 100644 index 000000000..88f30f211 --- /dev/null +++ b/src/components/IconStoreMallDirectory.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStoreMallDirectory: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconStoreMallDirectory } diff --git a/src/components/IconStorefront.tsx b/src/components/IconStorefront.tsx new file mode 100644 index 000000000..f90799393 --- /dev/null +++ b/src/components/IconStorefront.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconStorefront: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconStorefront } diff --git a/src/components/IconStraighten.tsx b/src/components/IconStraighten.tsx new file mode 100644 index 000000000..661573c5e --- /dev/null +++ b/src/components/IconStraighten.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStraighten: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconStraighten } diff --git a/src/components/IconStreetview.tsx b/src/components/IconStreetview.tsx new file mode 100644 index 000000000..133142f38 --- /dev/null +++ b/src/components/IconStreetview.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconStreetview: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconStreetview } diff --git a/src/components/IconStrikethroughS.tsx b/src/components/IconStrikethroughS.tsx new file mode 100644 index 000000000..7f6699900 --- /dev/null +++ b/src/components/IconStrikethroughS.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconStrikethroughS: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconStrikethroughS } diff --git a/src/components/IconStroller.tsx b/src/components/IconStroller.tsx new file mode 100644 index 000000000..b8abb552e --- /dev/null +++ b/src/components/IconStroller.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconStroller: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconStroller } diff --git a/src/components/IconStyle.tsx b/src/components/IconStyle.tsx new file mode 100644 index 000000000..051fe0de4 --- /dev/null +++ b/src/components/IconStyle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconStyle: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconStyle } diff --git a/src/components/IconSubdirectoryArrowLeft.tsx b/src/components/IconSubdirectoryArrowLeft.tsx new file mode 100644 index 000000000..f27b6583f --- /dev/null +++ b/src/components/IconSubdirectoryArrowLeft.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSubdirectoryArrowLeft: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconSubdirectoryArrowLeft } diff --git a/src/components/IconSubdirectoryArrowRight.tsx b/src/components/IconSubdirectoryArrowRight.tsx new file mode 100644 index 000000000..1ee4ba468 --- /dev/null +++ b/src/components/IconSubdirectoryArrowRight.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSubdirectoryArrowRight: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconSubdirectoryArrowRight } diff --git a/src/components/IconSubject.tsx b/src/components/IconSubject.tsx new file mode 100644 index 000000000..33b5285e2 --- /dev/null +++ b/src/components/IconSubject.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSubject: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSubject } diff --git a/src/components/IconSubscript.tsx b/src/components/IconSubscript.tsx new file mode 100644 index 000000000..4c5e63ecd --- /dev/null +++ b/src/components/IconSubscript.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSubscript: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconSubscript } diff --git a/src/components/IconSubscriptions.tsx b/src/components/IconSubscriptions.tsx new file mode 100644 index 000000000..202bb448b --- /dev/null +++ b/src/components/IconSubscriptions.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSubscriptions: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSubscriptions } diff --git a/src/components/IconSubtitles.tsx b/src/components/IconSubtitles.tsx new file mode 100644 index 000000000..ded0e8d40 --- /dev/null +++ b/src/components/IconSubtitles.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSubtitles: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSubtitles } diff --git a/src/components/IconSubtitlesOff.tsx b/src/components/IconSubtitlesOff.tsx new file mode 100644 index 000000000..0270769bd --- /dev/null +++ b/src/components/IconSubtitlesOff.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconSubtitlesOff: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconSubtitlesOff } diff --git a/src/components/IconSubway.tsx b/src/components/IconSubway.tsx new file mode 100644 index 000000000..fa10ed125 --- /dev/null +++ b/src/components/IconSubway.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSubway: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconSubway } diff --git a/src/components/IconSuperscript.tsx b/src/components/IconSuperscript.tsx new file mode 100644 index 000000000..b157d1e66 --- /dev/null +++ b/src/components/IconSuperscript.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconSuperscript: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconSuperscript } diff --git a/src/components/IconSupervisedUserCircle.tsx b/src/components/IconSupervisedUserCircle.tsx new file mode 100644 index 000000000..911112b9d --- /dev/null +++ b/src/components/IconSupervisedUserCircle.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSupervisedUserCircle: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconSupervisedUserCircle } diff --git a/src/components/IconSupervisorAccount.tsx b/src/components/IconSupervisorAccount.tsx new file mode 100644 index 000000000..6931b5f4e --- /dev/null +++ b/src/components/IconSupervisorAccount.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSupervisorAccount: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSupervisorAccount } diff --git a/src/components/IconSupport.tsx b/src/components/IconSupport.tsx new file mode 100644 index 000000000..094f0b535 --- /dev/null +++ b/src/components/IconSupport.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconSupport: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconSupport } diff --git a/src/components/IconSupportAgent.tsx b/src/components/IconSupportAgent.tsx new file mode 100644 index 000000000..66a4d946e --- /dev/null +++ b/src/components/IconSupportAgent.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconSupportAgent: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + +) + +export { IconSupportAgent } diff --git a/src/components/IconSurroundSound.tsx b/src/components/IconSurroundSound.tsx new file mode 100644 index 000000000..f7c3327a1 --- /dev/null +++ b/src/components/IconSurroundSound.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSurroundSound: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSurroundSound } diff --git a/src/components/IconSwapCalls.tsx b/src/components/IconSwapCalls.tsx new file mode 100644 index 000000000..77ef134b7 --- /dev/null +++ b/src/components/IconSwapCalls.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwapCalls: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSwapCalls } diff --git a/src/components/IconSwapHoriz.tsx b/src/components/IconSwapHoriz.tsx new file mode 100644 index 000000000..11271e8d9 --- /dev/null +++ b/src/components/IconSwapHoriz.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwapHoriz: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSwapHoriz } diff --git a/src/components/IconSwapHorizontalCircle.tsx b/src/components/IconSwapHorizontalCircle.tsx new file mode 100644 index 000000000..449e304d5 --- /dev/null +++ b/src/components/IconSwapHorizontalCircle.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwapHorizontalCircle: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconSwapHorizontalCircle } diff --git a/src/components/IconSwapVert.tsx b/src/components/IconSwapVert.tsx new file mode 100644 index 000000000..3021fa624 --- /dev/null +++ b/src/components/IconSwapVert.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwapVert: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSwapVert } diff --git a/src/components/IconSwapVerticalCircle.tsx b/src/components/IconSwapVerticalCircle.tsx new file mode 100644 index 000000000..cdd4d5ae9 --- /dev/null +++ b/src/components/IconSwapVerticalCircle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwapVerticalCircle: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSwapVerticalCircle } diff --git a/src/components/IconSwitchCamera.tsx b/src/components/IconSwitchCamera.tsx new file mode 100644 index 000000000..d18f831f2 --- /dev/null +++ b/src/components/IconSwitchCamera.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwitchCamera: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSwitchCamera } diff --git a/src/components/IconSwitchLeft.tsx b/src/components/IconSwitchLeft.tsx new file mode 100644 index 000000000..d456cd8c0 --- /dev/null +++ b/src/components/IconSwitchLeft.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwitchLeft: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSwitchLeft } diff --git a/src/components/IconSwitchRight.tsx b/src/components/IconSwitchRight.tsx new file mode 100644 index 000000000..11825b823 --- /dev/null +++ b/src/components/IconSwitchRight.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwitchRight: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSwitchRight } diff --git a/src/components/IconSwitchVideo.tsx b/src/components/IconSwitchVideo.tsx new file mode 100644 index 000000000..faf6229ac --- /dev/null +++ b/src/components/IconSwitchVideo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSwitchVideo: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSwitchVideo } diff --git a/src/components/IconSync.tsx b/src/components/IconSync.tsx new file mode 100644 index 000000000..3972661ed --- /dev/null +++ b/src/components/IconSync.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSync: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSync } diff --git a/src/components/IconSyncAlt.tsx b/src/components/IconSyncAlt.tsx new file mode 100644 index 000000000..97d7f0d67 --- /dev/null +++ b/src/components/IconSyncAlt.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconSyncAlt: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconSyncAlt } diff --git a/src/components/IconSyncDisabled.tsx b/src/components/IconSyncDisabled.tsx new file mode 100644 index 000000000..84fc82eab --- /dev/null +++ b/src/components/IconSyncDisabled.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSyncDisabled: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSyncDisabled } diff --git a/src/components/IconSyncProblem.tsx b/src/components/IconSyncProblem.tsx new file mode 100644 index 000000000..855983bad --- /dev/null +++ b/src/components/IconSyncProblem.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSyncProblem: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSyncProblem } diff --git a/src/components/IconSystemUpdate.tsx b/src/components/IconSystemUpdate.tsx new file mode 100644 index 000000000..5cee2c69e --- /dev/null +++ b/src/components/IconSystemUpdate.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSystemUpdate: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSystemUpdate } diff --git a/src/components/IconSystemUpdateAlt.tsx b/src/components/IconSystemUpdateAlt.tsx new file mode 100644 index 000000000..6603ebdc1 --- /dev/null +++ b/src/components/IconSystemUpdateAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconSystemUpdateAlt: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconSystemUpdateAlt } diff --git a/src/components/IconTab.tsx b/src/components/IconTab.tsx new file mode 100644 index 000000000..af1ad7971 --- /dev/null +++ b/src/components/IconTab.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTab: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTab } diff --git a/src/components/IconTabUnselected.tsx b/src/components/IconTabUnselected.tsx new file mode 100644 index 000000000..e56ed26f7 --- /dev/null +++ b/src/components/IconTabUnselected.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTabUnselected: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTabUnselected } diff --git a/src/components/IconTableChart.tsx b/src/components/IconTableChart.tsx new file mode 100644 index 000000000..e698eaa91 --- /dev/null +++ b/src/components/IconTableChart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTableChart: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTableChart } diff --git a/src/components/IconTableRows.tsx b/src/components/IconTableRows.tsx new file mode 100644 index 000000000..f9aeb5440 --- /dev/null +++ b/src/components/IconTableRows.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconTableRows: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconTableRows } diff --git a/src/components/IconTableView.tsx b/src/components/IconTableView.tsx new file mode 100644 index 000000000..fb62e2dab --- /dev/null +++ b/src/components/IconTableView.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconTableView: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconTableView } diff --git a/src/components/IconTablet.tsx b/src/components/IconTablet.tsx new file mode 100644 index 000000000..c87c411cd --- /dev/null +++ b/src/components/IconTablet.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTablet: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTablet } diff --git a/src/components/IconTabletAndroid.tsx b/src/components/IconTabletAndroid.tsx new file mode 100644 index 000000000..a36f72cfa --- /dev/null +++ b/src/components/IconTabletAndroid.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconTabletAndroid: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconTabletAndroid } diff --git a/src/components/IconTabletMac.tsx b/src/components/IconTabletMac.tsx new file mode 100644 index 000000000..c68d5b82b --- /dev/null +++ b/src/components/IconTabletMac.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { IconProps } from './types' +const IconTabletMac: React.FC = (props: IconProps): any => ( + + + +) + +export { IconTabletMac } diff --git a/src/components/IconTagFaces.tsx b/src/components/IconTagFaces.tsx new file mode 100644 index 000000000..7e8728285 --- /dev/null +++ b/src/components/IconTagFaces.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTagFaces: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTagFaces } diff --git a/src/components/IconTapAndPlay.tsx b/src/components/IconTapAndPlay.tsx new file mode 100644 index 000000000..729488e1b --- /dev/null +++ b/src/components/IconTapAndPlay.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTapAndPlay: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTapAndPlay } diff --git a/src/components/IconTapas.tsx b/src/components/IconTapas.tsx new file mode 100644 index 000000000..762858718 --- /dev/null +++ b/src/components/IconTapas.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconTapas: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTapas } diff --git a/src/components/IconTerrain.tsx b/src/components/IconTerrain.tsx new file mode 100644 index 000000000..0a49cdf4a --- /dev/null +++ b/src/components/IconTerrain.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTerrain: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTerrain } diff --git a/src/components/IconTextFields.tsx b/src/components/IconTextFields.tsx new file mode 100644 index 000000000..db2b2fbff --- /dev/null +++ b/src/components/IconTextFields.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextFields: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconTextFields } diff --git a/src/components/IconTextFormat.tsx b/src/components/IconTextFormat.tsx new file mode 100644 index 000000000..d03bff470 --- /dev/null +++ b/src/components/IconTextFormat.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextFormat: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTextFormat } diff --git a/src/components/IconTextRotateUp.tsx b/src/components/IconTextRotateUp.tsx new file mode 100644 index 000000000..c18af112e --- /dev/null +++ b/src/components/IconTextRotateUp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextRotateUp: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTextRotateUp } diff --git a/src/components/IconTextRotateVertical.tsx b/src/components/IconTextRotateVertical.tsx new file mode 100644 index 000000000..170117416 --- /dev/null +++ b/src/components/IconTextRotateVertical.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextRotateVertical: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTextRotateVertical } diff --git a/src/components/IconTextRotationAngledown.tsx b/src/components/IconTextRotationAngledown.tsx new file mode 100644 index 000000000..870ec59cb --- /dev/null +++ b/src/components/IconTextRotationAngledown.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextRotationAngledown: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconTextRotationAngledown } diff --git a/src/components/IconTextRotationAngleup.tsx b/src/components/IconTextRotationAngleup.tsx new file mode 100644 index 000000000..1932f5d55 --- /dev/null +++ b/src/components/IconTextRotationAngleup.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextRotationAngleup: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconTextRotationAngleup } diff --git a/src/components/IconTextRotationDown.tsx b/src/components/IconTextRotationDown.tsx new file mode 100644 index 000000000..a408523ab --- /dev/null +++ b/src/components/IconTextRotationDown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextRotationDown: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTextRotationDown } diff --git a/src/components/IconTextRotationNone.tsx b/src/components/IconTextRotationNone.tsx new file mode 100644 index 000000000..a18db2352 --- /dev/null +++ b/src/components/IconTextRotationNone.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextRotationNone: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTextRotationNone } diff --git a/src/components/IconTextSnippet.tsx b/src/components/IconTextSnippet.tsx new file mode 100644 index 000000000..400e0ba82 --- /dev/null +++ b/src/components/IconTextSnippet.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextSnippet: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconTextSnippet } diff --git a/src/components/IconTextsms.tsx b/src/components/IconTextsms.tsx new file mode 100644 index 000000000..4069a1957 --- /dev/null +++ b/src/components/IconTextsms.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTextsms: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTextsms } diff --git a/src/components/IconTexture.tsx b/src/components/IconTexture.tsx new file mode 100644 index 000000000..0a91549db --- /dev/null +++ b/src/components/IconTexture.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTexture: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTexture } diff --git a/src/components/IconTheaters.tsx b/src/components/IconTheaters.tsx new file mode 100644 index 000000000..854c9c58d --- /dev/null +++ b/src/components/IconTheaters.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTheaters: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTheaters } diff --git a/src/components/IconThumbDown.tsx b/src/components/IconThumbDown.tsx new file mode 100644 index 000000000..0d0f73834 --- /dev/null +++ b/src/components/IconThumbDown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconThumbDown: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconThumbDown } diff --git a/src/components/IconThumbDownAlt.tsx b/src/components/IconThumbDownAlt.tsx new file mode 100644 index 000000000..0882392fb --- /dev/null +++ b/src/components/IconThumbDownAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconThumbDownAlt: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconThumbDownAlt } diff --git a/src/components/IconThumbUp.tsx b/src/components/IconThumbUp.tsx new file mode 100644 index 000000000..75395aad9 --- /dev/null +++ b/src/components/IconThumbUp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconThumbUp: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconThumbUp } diff --git a/src/components/IconThumbUpAlt.tsx b/src/components/IconThumbUpAlt.tsx new file mode 100644 index 000000000..5cb4c583e --- /dev/null +++ b/src/components/IconThumbUpAlt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconThumbUpAlt: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconThumbUpAlt } diff --git a/src/components/IconThumbsUpDown.tsx b/src/components/IconThumbsUpDown.tsx new file mode 100644 index 000000000..9b973ce07 --- /dev/null +++ b/src/components/IconThumbsUpDown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconThumbsUpDown: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconThumbsUpDown } diff --git a/src/components/IconTimeToLeave.tsx b/src/components/IconTimeToLeave.tsx new file mode 100644 index 000000000..dc0e46391 --- /dev/null +++ b/src/components/IconTimeToLeave.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTimeToLeave: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTimeToLeave } diff --git a/src/components/IconTimelapse.tsx b/src/components/IconTimelapse.tsx new file mode 100644 index 000000000..c756797d9 --- /dev/null +++ b/src/components/IconTimelapse.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTimelapse: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTimelapse } diff --git a/src/components/IconTimeline.tsx b/src/components/IconTimeline.tsx new file mode 100644 index 000000000..4a2727724 --- /dev/null +++ b/src/components/IconTimeline.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconTimeline: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconTimeline } diff --git a/src/components/IconTimer.tsx b/src/components/IconTimer.tsx new file mode 100644 index 000000000..11a2bfe76 --- /dev/null +++ b/src/components/IconTimer.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTimer: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTimer } diff --git a/src/components/IconTimer10.tsx b/src/components/IconTimer10.tsx new file mode 100644 index 000000000..4133dc005 --- /dev/null +++ b/src/components/IconTimer10.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTimer10: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTimer10 } diff --git a/src/components/IconTimer3.tsx b/src/components/IconTimer3.tsx new file mode 100644 index 000000000..911ce02eb --- /dev/null +++ b/src/components/IconTimer3.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTimer3: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTimer3 } diff --git a/src/components/IconTimerOff.tsx b/src/components/IconTimerOff.tsx new file mode 100644 index 000000000..90464b79b --- /dev/null +++ b/src/components/IconTimerOff.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconTimerOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTimerOff } diff --git a/src/components/IconTitle.tsx b/src/components/IconTitle.tsx new file mode 100644 index 000000000..a3add85ca --- /dev/null +++ b/src/components/IconTitle.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTitle: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTitle } diff --git a/src/components/IconToc.tsx b/src/components/IconToc.tsx new file mode 100644 index 000000000..0c5c0bcd6 --- /dev/null +++ b/src/components/IconToc.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconToc: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconToc } diff --git a/src/components/IconToday.tsx b/src/components/IconToday.tsx new file mode 100644 index 000000000..85a7a03be --- /dev/null +++ b/src/components/IconToday.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconToday: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconToday } diff --git a/src/components/IconToggleOff.tsx b/src/components/IconToggleOff.tsx new file mode 100644 index 000000000..549dbc029 --- /dev/null +++ b/src/components/IconToggleOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconToggleOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconToggleOff } diff --git a/src/components/IconToggleOn.tsx b/src/components/IconToggleOn.tsx new file mode 100644 index 000000000..4a5ba001d --- /dev/null +++ b/src/components/IconToggleOn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconToggleOn: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconToggleOn } diff --git a/src/components/IconToll.tsx b/src/components/IconToll.tsx new file mode 100644 index 000000000..7f732a2bf --- /dev/null +++ b/src/components/IconToll.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconToll: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconToll } diff --git a/src/components/IconTonality.tsx b/src/components/IconTonality.tsx new file mode 100644 index 000000000..d9a13167b --- /dev/null +++ b/src/components/IconTonality.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTonality: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTonality } diff --git a/src/components/IconTopic.tsx b/src/components/IconTopic.tsx new file mode 100644 index 000000000..868ec086f --- /dev/null +++ b/src/components/IconTopic.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconTopic: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconTopic } diff --git a/src/components/IconTouchApp.tsx b/src/components/IconTouchApp.tsx new file mode 100644 index 000000000..0dc845675 --- /dev/null +++ b/src/components/IconTouchApp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconTouchApp: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconTouchApp } diff --git a/src/components/IconTour.tsx b/src/components/IconTour.tsx new file mode 100644 index 000000000..bb0b7c2f9 --- /dev/null +++ b/src/components/IconTour.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTour: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTour } diff --git a/src/components/IconToys.tsx b/src/components/IconToys.tsx new file mode 100644 index 000000000..c60fc0074 --- /dev/null +++ b/src/components/IconToys.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconToys: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconToys } diff --git a/src/components/IconTrackChanges.tsx b/src/components/IconTrackChanges.tsx new file mode 100644 index 000000000..446b07934 --- /dev/null +++ b/src/components/IconTrackChanges.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTrackChanges: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTrackChanges } diff --git a/src/components/IconTraffic.tsx b/src/components/IconTraffic.tsx new file mode 100644 index 000000000..39f5d886a --- /dev/null +++ b/src/components/IconTraffic.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTraffic: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTraffic } diff --git a/src/components/IconTrain.tsx b/src/components/IconTrain.tsx new file mode 100644 index 000000000..932ee6f3b --- /dev/null +++ b/src/components/IconTrain.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTrain: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTrain } diff --git a/src/components/IconTram.tsx b/src/components/IconTram.tsx new file mode 100644 index 000000000..527c43ab4 --- /dev/null +++ b/src/components/IconTram.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTram: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTram } diff --git a/src/components/IconTransferWithinAStation.tsx b/src/components/IconTransferWithinAStation.tsx new file mode 100644 index 000000000..e7f4bf5c4 --- /dev/null +++ b/src/components/IconTransferWithinAStation.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconTransferWithinAStation: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconTransferWithinAStation } diff --git a/src/components/IconTransform.tsx b/src/components/IconTransform.tsx new file mode 100644 index 000000000..f62e5e891 --- /dev/null +++ b/src/components/IconTransform.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTransform: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTransform } diff --git a/src/components/IconTransitEnterexit.tsx b/src/components/IconTransitEnterexit.tsx new file mode 100644 index 000000000..127d1d258 --- /dev/null +++ b/src/components/IconTransitEnterexit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTransitEnterexit: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTransitEnterexit } diff --git a/src/components/IconTranslate.tsx b/src/components/IconTranslate.tsx new file mode 100644 index 000000000..b8a33adda --- /dev/null +++ b/src/components/IconTranslate.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTranslate: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTranslate } diff --git a/src/components/IconTrendingDown.tsx b/src/components/IconTrendingDown.tsx new file mode 100644 index 000000000..a2f868bc7 --- /dev/null +++ b/src/components/IconTrendingDown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTrendingDown: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTrendingDown } diff --git a/src/components/IconTrendingFlat.tsx b/src/components/IconTrendingFlat.tsx new file mode 100644 index 000000000..e43ed70a2 --- /dev/null +++ b/src/components/IconTrendingFlat.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTrendingFlat: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTrendingFlat } diff --git a/src/components/IconTrendingUp.tsx b/src/components/IconTrendingUp.tsx new file mode 100644 index 000000000..31c79eb07 --- /dev/null +++ b/src/components/IconTrendingUp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTrendingUp: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTrendingUp } diff --git a/src/components/IconTripOrigin.tsx b/src/components/IconTripOrigin.tsx new file mode 100644 index 000000000..cebb40e10 --- /dev/null +++ b/src/components/IconTripOrigin.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconTripOrigin: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconTripOrigin } diff --git a/src/components/IconTty.tsx b/src/components/IconTty.tsx new file mode 100644 index 000000000..1867dbe18 --- /dev/null +++ b/src/components/IconTty.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconTty: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconTty } diff --git a/src/components/IconTune.tsx b/src/components/IconTune.tsx new file mode 100644 index 000000000..824633d55 --- /dev/null +++ b/src/components/IconTune.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTune: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTune } diff --git a/src/components/IconTurnedIn.tsx b/src/components/IconTurnedIn.tsx new file mode 100644 index 000000000..7c1bdede6 --- /dev/null +++ b/src/components/IconTurnedIn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTurnedIn: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTurnedIn } diff --git a/src/components/IconTurnedInNot.tsx b/src/components/IconTurnedInNot.tsx new file mode 100644 index 000000000..973d0a515 --- /dev/null +++ b/src/components/IconTurnedInNot.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTurnedInNot: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTurnedInNot } diff --git a/src/components/IconTv.tsx b/src/components/IconTv.tsx new file mode 100644 index 000000000..fe3ed3c09 --- /dev/null +++ b/src/components/IconTv.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTv: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTv } diff --git a/src/components/IconTvOff.tsx b/src/components/IconTvOff.tsx new file mode 100644 index 000000000..c295d752e --- /dev/null +++ b/src/components/IconTvOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconTvOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconTvOff } diff --git a/src/components/IconTwoWheeler.tsx b/src/components/IconTwoWheeler.tsx new file mode 100644 index 000000000..9e7785541 --- /dev/null +++ b/src/components/IconTwoWheeler.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' +const IconTwoWheeler: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconTwoWheeler } diff --git a/src/components/IconUmbrella.tsx b/src/components/IconUmbrella.tsx new file mode 100644 index 000000000..5725e7bca --- /dev/null +++ b/src/components/IconUmbrella.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconUmbrella: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconUmbrella } diff --git a/src/components/IconUnarchive.tsx b/src/components/IconUnarchive.tsx new file mode 100644 index 000000000..25c2b0aa8 --- /dev/null +++ b/src/components/IconUnarchive.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconUnarchive: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconUnarchive } diff --git a/src/components/IconUndo.tsx b/src/components/IconUndo.tsx new file mode 100644 index 000000000..a90ee7974 --- /dev/null +++ b/src/components/IconUndo.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconUndo: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconUndo } diff --git a/src/components/IconUnfoldLess.tsx b/src/components/IconUnfoldLess.tsx new file mode 100644 index 000000000..85ca5ad06 --- /dev/null +++ b/src/components/IconUnfoldLess.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconUnfoldLess: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconUnfoldLess } diff --git a/src/components/IconUnfoldMore.tsx b/src/components/IconUnfoldMore.tsx new file mode 100644 index 000000000..ed4fe2411 --- /dev/null +++ b/src/components/IconUnfoldMore.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconUnfoldMore: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconUnfoldMore } diff --git a/src/components/IconUnpublished.tsx b/src/components/IconUnpublished.tsx new file mode 100644 index 000000000..22513da1a --- /dev/null +++ b/src/components/IconUnpublished.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconUnpublished: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconUnpublished } diff --git a/src/components/IconUnsubscribe.tsx b/src/components/IconUnsubscribe.tsx new file mode 100644 index 000000000..bea4aea28 --- /dev/null +++ b/src/components/IconUnsubscribe.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { IconProps } from './types' +const IconUnsubscribe: React.FC = (props: IconProps): any => ( + + + +) + +export { IconUnsubscribe } diff --git a/src/components/IconUpdate.tsx b/src/components/IconUpdate.tsx new file mode 100644 index 000000000..7b34af2f0 --- /dev/null +++ b/src/components/IconUpdate.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconUpdate: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconUpdate } diff --git a/src/components/IconUpdateDisabled.tsx b/src/components/IconUpdateDisabled.tsx new file mode 100644 index 000000000..cce82c128 --- /dev/null +++ b/src/components/IconUpdateDisabled.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconUpdateDisabled: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconUpdateDisabled } diff --git a/src/components/IconUpgrade.tsx b/src/components/IconUpgrade.tsx new file mode 100644 index 000000000..ad54edced --- /dev/null +++ b/src/components/IconUpgrade.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconUpgrade: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconUpgrade } diff --git a/src/components/IconUsb.tsx b/src/components/IconUsb.tsx new file mode 100644 index 000000000..39a9e0a6b --- /dev/null +++ b/src/components/IconUsb.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconUsb: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconUsb } diff --git a/src/components/IconVerified.tsx b/src/components/IconVerified.tsx new file mode 100644 index 000000000..a26c16f2f --- /dev/null +++ b/src/components/IconVerified.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' +const IconVerified: React.FC = (props: IconProps): any => ( + + + + + + + + +) + +export { IconVerified } diff --git a/src/components/IconVerifiedUser.tsx b/src/components/IconVerifiedUser.tsx new file mode 100644 index 000000000..06c85d2a4 --- /dev/null +++ b/src/components/IconVerifiedUser.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVerifiedUser: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVerifiedUser } diff --git a/src/components/IconVerticalAlignBottom.tsx b/src/components/IconVerticalAlignBottom.tsx new file mode 100644 index 000000000..a0ecc7fed --- /dev/null +++ b/src/components/IconVerticalAlignBottom.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconVerticalAlignBottom: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconVerticalAlignBottom } diff --git a/src/components/IconVerticalAlignCenter.tsx b/src/components/IconVerticalAlignCenter.tsx new file mode 100644 index 000000000..0e5cb5b35 --- /dev/null +++ b/src/components/IconVerticalAlignCenter.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' +const IconVerticalAlignCenter: React.FC = ( + props: IconProps +): any => ( + + + + +) + +export { IconVerticalAlignCenter } diff --git a/src/components/IconVerticalAlignTop.tsx b/src/components/IconVerticalAlignTop.tsx new file mode 100644 index 000000000..d34c6162a --- /dev/null +++ b/src/components/IconVerticalAlignTop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVerticalAlignTop: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVerticalAlignTop } diff --git a/src/components/IconVerticalDistribute.tsx b/src/components/IconVerticalDistribute.tsx new file mode 100644 index 000000000..496a480b1 --- /dev/null +++ b/src/components/IconVerticalDistribute.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconVerticalDistribute: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVerticalDistribute } diff --git a/src/components/IconVerticalSplit.tsx b/src/components/IconVerticalSplit.tsx new file mode 100644 index 000000000..12aea9d0c --- /dev/null +++ b/src/components/IconVerticalSplit.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVerticalSplit: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVerticalSplit } diff --git a/src/components/IconVibration.tsx b/src/components/IconVibration.tsx new file mode 100644 index 000000000..c4771e92c --- /dev/null +++ b/src/components/IconVibration.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVibration: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVibration } diff --git a/src/components/IconVideoCall.tsx b/src/components/IconVideoCall.tsx new file mode 100644 index 000000000..ec3993feb --- /dev/null +++ b/src/components/IconVideoCall.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVideoCall: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVideoCall } diff --git a/src/components/IconVideoLabel.tsx b/src/components/IconVideoLabel.tsx new file mode 100644 index 000000000..6a840658e --- /dev/null +++ b/src/components/IconVideoLabel.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVideoLabel: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVideoLabel } diff --git a/src/components/IconVideoLibrary.tsx b/src/components/IconVideoLibrary.tsx new file mode 100644 index 000000000..1b103ad0b --- /dev/null +++ b/src/components/IconVideoLibrary.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVideoLibrary: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVideoLibrary } diff --git a/src/components/IconVideoSettings.tsx b/src/components/IconVideoSettings.tsx new file mode 100644 index 000000000..8575ade40 --- /dev/null +++ b/src/components/IconVideoSettings.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconVideoSettings: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconVideoSettings } diff --git a/src/components/IconVideocam.tsx b/src/components/IconVideocam.tsx new file mode 100644 index 000000000..255a86165 --- /dev/null +++ b/src/components/IconVideocam.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVideocam: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVideocam } diff --git a/src/components/IconVideocamOff.tsx b/src/components/IconVideocamOff.tsx new file mode 100644 index 000000000..6da9d16e8 --- /dev/null +++ b/src/components/IconVideocamOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVideocamOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVideocamOff } diff --git a/src/components/IconVideogameAsset.tsx b/src/components/IconVideogameAsset.tsx new file mode 100644 index 000000000..405b369df --- /dev/null +++ b/src/components/IconVideogameAsset.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconVideogameAsset: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVideogameAsset } diff --git a/src/components/IconViewAgenda.tsx b/src/components/IconViewAgenda.tsx new file mode 100644 index 000000000..50f1f7655 --- /dev/null +++ b/src/components/IconViewAgenda.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewAgenda: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconViewAgenda } diff --git a/src/components/IconViewArray.tsx b/src/components/IconViewArray.tsx new file mode 100644 index 000000000..11f6448a8 --- /dev/null +++ b/src/components/IconViewArray.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewArray: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconViewArray } diff --git a/src/components/IconViewCarousel.tsx b/src/components/IconViewCarousel.tsx new file mode 100644 index 000000000..aed31ee9a --- /dev/null +++ b/src/components/IconViewCarousel.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewCarousel: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconViewCarousel } diff --git a/src/components/IconViewColumn.tsx b/src/components/IconViewColumn.tsx new file mode 100644 index 000000000..7edc250e8 --- /dev/null +++ b/src/components/IconViewColumn.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewColumn: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconViewColumn } diff --git a/src/components/IconViewComfy.tsx b/src/components/IconViewComfy.tsx new file mode 100644 index 000000000..53437da3a --- /dev/null +++ b/src/components/IconViewComfy.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewComfy: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconViewComfy } diff --git a/src/components/IconViewCompact.tsx b/src/components/IconViewCompact.tsx new file mode 100644 index 000000000..c1a23b122 --- /dev/null +++ b/src/components/IconViewCompact.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewCompact: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconViewCompact } diff --git a/src/components/IconViewDay.tsx b/src/components/IconViewDay.tsx new file mode 100644 index 000000000..db278fe7e --- /dev/null +++ b/src/components/IconViewDay.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewDay: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconViewDay } diff --git a/src/components/IconViewHeadline.tsx b/src/components/IconViewHeadline.tsx new file mode 100644 index 000000000..ab5231058 --- /dev/null +++ b/src/components/IconViewHeadline.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewHeadline: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconViewHeadline } diff --git a/src/components/IconViewList.tsx b/src/components/IconViewList.tsx new file mode 100644 index 000000000..2e27fec27 --- /dev/null +++ b/src/components/IconViewList.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewList: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconViewList } diff --git a/src/components/IconViewModule.tsx b/src/components/IconViewModule.tsx new file mode 100644 index 000000000..fcb46e4d2 --- /dev/null +++ b/src/components/IconViewModule.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewModule: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconViewModule } diff --git a/src/components/IconViewQuilt.tsx b/src/components/IconViewQuilt.tsx new file mode 100644 index 000000000..d7dc9af75 --- /dev/null +++ b/src/components/IconViewQuilt.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewQuilt: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconViewQuilt } diff --git a/src/components/IconViewSidebar.tsx b/src/components/IconViewSidebar.tsx new file mode 100644 index 000000000..68be22001 --- /dev/null +++ b/src/components/IconViewSidebar.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewSidebar: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconViewSidebar } diff --git a/src/components/IconViewStream.tsx b/src/components/IconViewStream.tsx new file mode 100644 index 000000000..d29216300 --- /dev/null +++ b/src/components/IconViewStream.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewStream: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconViewStream } diff --git a/src/components/IconViewWeek.tsx b/src/components/IconViewWeek.tsx new file mode 100644 index 000000000..07616bc3a --- /dev/null +++ b/src/components/IconViewWeek.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconViewWeek: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconViewWeek } diff --git a/src/components/IconVignette.tsx b/src/components/IconVignette.tsx new file mode 100644 index 000000000..5b5be93de --- /dev/null +++ b/src/components/IconVignette.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVignette: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVignette } diff --git a/src/components/IconVisibility.tsx b/src/components/IconVisibility.tsx new file mode 100644 index 000000000..60ab65c79 --- /dev/null +++ b/src/components/IconVisibility.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVisibility: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVisibility } diff --git a/src/components/IconVisibilityOff.tsx b/src/components/IconVisibilityOff.tsx new file mode 100644 index 000000000..c6e31186d --- /dev/null +++ b/src/components/IconVisibilityOff.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconVisibilityOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVisibilityOff } diff --git a/src/components/IconVoiceChat.tsx b/src/components/IconVoiceChat.tsx new file mode 100644 index 000000000..162e482bd --- /dev/null +++ b/src/components/IconVoiceChat.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVoiceChat: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVoiceChat } diff --git a/src/components/IconVoiceOverOff.tsx b/src/components/IconVoiceOverOff.tsx new file mode 100644 index 000000000..4ef9e5848 --- /dev/null +++ b/src/components/IconVoiceOverOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVoiceOverOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVoiceOverOff } diff --git a/src/components/IconVoicemail.tsx b/src/components/IconVoicemail.tsx new file mode 100644 index 000000000..a59ccfee9 --- /dev/null +++ b/src/components/IconVoicemail.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVoicemail: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVoicemail } diff --git a/src/components/IconVolumeDown.tsx b/src/components/IconVolumeDown.tsx new file mode 100644 index 000000000..266d5b55a --- /dev/null +++ b/src/components/IconVolumeDown.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVolumeDown: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVolumeDown } diff --git a/src/components/IconVolumeMute.tsx b/src/components/IconVolumeMute.tsx new file mode 100644 index 000000000..693038e3d --- /dev/null +++ b/src/components/IconVolumeMute.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVolumeMute: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVolumeMute } diff --git a/src/components/IconVolumeOff.tsx b/src/components/IconVolumeOff.tsx new file mode 100644 index 000000000..0824e47d6 --- /dev/null +++ b/src/components/IconVolumeOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVolumeOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVolumeOff } diff --git a/src/components/IconVolumeUp.tsx b/src/components/IconVolumeUp.tsx new file mode 100644 index 000000000..bce73a2c9 --- /dev/null +++ b/src/components/IconVolumeUp.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVolumeUp: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVolumeUp } diff --git a/src/components/IconVpnKey.tsx b/src/components/IconVpnKey.tsx new file mode 100644 index 000000000..303f882b3 --- /dev/null +++ b/src/components/IconVpnKey.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVpnKey: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVpnKey } diff --git a/src/components/IconVpnLock.tsx b/src/components/IconVpnLock.tsx new file mode 100644 index 000000000..d96f68a43 --- /dev/null +++ b/src/components/IconVpnLock.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconVpnLock: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconVpnLock } diff --git a/src/components/IconWallpaper.tsx b/src/components/IconWallpaper.tsx new file mode 100644 index 000000000..0b9cfc002 --- /dev/null +++ b/src/components/IconWallpaper.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWallpaper: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWallpaper } diff --git a/src/components/IconWarning.tsx b/src/components/IconWarning.tsx new file mode 100644 index 000000000..5ed24dd63 --- /dev/null +++ b/src/components/IconWarning.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWarning: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWarning } diff --git a/src/components/IconWash.tsx b/src/components/IconWash.tsx new file mode 100644 index 000000000..56399a917 --- /dev/null +++ b/src/components/IconWash.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconWash: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconWash } diff --git a/src/components/IconWatch.tsx b/src/components/IconWatch.tsx new file mode 100644 index 000000000..967665f7b --- /dev/null +++ b/src/components/IconWatch.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWatch: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWatch } diff --git a/src/components/IconWatchLater.tsx b/src/components/IconWatchLater.tsx new file mode 100644 index 000000000..96d19a56b --- /dev/null +++ b/src/components/IconWatchLater.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconWatchLater: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconWatchLater } diff --git a/src/components/IconWaterDamage.tsx b/src/components/IconWaterDamage.tsx new file mode 100644 index 000000000..454f2ebf2 --- /dev/null +++ b/src/components/IconWaterDamage.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconWaterDamage: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWaterDamage } diff --git a/src/components/IconWaves.tsx b/src/components/IconWaves.tsx new file mode 100644 index 000000000..ef216279b --- /dev/null +++ b/src/components/IconWaves.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { IconProps } from './types' +const IconWaves: React.FC = (props: IconProps): any => ( + + + +) + +export { IconWaves } diff --git a/src/components/IconWbAuto.tsx b/src/components/IconWbAuto.tsx new file mode 100644 index 000000000..eba1c6d55 --- /dev/null +++ b/src/components/IconWbAuto.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWbAuto: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWbAuto } diff --git a/src/components/IconWbCloudy.tsx b/src/components/IconWbCloudy.tsx new file mode 100644 index 000000000..32cbeeee7 --- /dev/null +++ b/src/components/IconWbCloudy.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWbCloudy: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWbCloudy } diff --git a/src/components/IconWbIncandescent.tsx b/src/components/IconWbIncandescent.tsx new file mode 100644 index 000000000..3bb9c35c2 --- /dev/null +++ b/src/components/IconWbIncandescent.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWbIncandescent: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWbIncandescent } diff --git a/src/components/IconWbIridescent.tsx b/src/components/IconWbIridescent.tsx new file mode 100644 index 000000000..f1913a7ae --- /dev/null +++ b/src/components/IconWbIridescent.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWbIridescent: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWbIridescent } diff --git a/src/components/IconWbSunny.tsx b/src/components/IconWbSunny.tsx new file mode 100644 index 000000000..77f368115 --- /dev/null +++ b/src/components/IconWbSunny.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWbSunny: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWbSunny } diff --git a/src/components/IconWc.tsx b/src/components/IconWc.tsx new file mode 100644 index 000000000..753ee6fcb --- /dev/null +++ b/src/components/IconWc.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWc: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWc } diff --git a/src/components/IconWeb.tsx b/src/components/IconWeb.tsx new file mode 100644 index 000000000..56cbe0ce8 --- /dev/null +++ b/src/components/IconWeb.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWeb: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWeb } diff --git a/src/components/IconWebAsset.tsx b/src/components/IconWebAsset.tsx new file mode 100644 index 000000000..e9edd1c58 --- /dev/null +++ b/src/components/IconWebAsset.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWebAsset: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWebAsset } diff --git a/src/components/IconWeekend.tsx b/src/components/IconWeekend.tsx new file mode 100644 index 000000000..6ddda2bd1 --- /dev/null +++ b/src/components/IconWeekend.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconWeekend: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconWeekend } diff --git a/src/components/IconWest.tsx b/src/components/IconWest.tsx new file mode 100644 index 000000000..4fcaef310 --- /dev/null +++ b/src/components/IconWest.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconWest: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWest } diff --git a/src/components/IconWhatshot.tsx b/src/components/IconWhatshot.tsx new file mode 100644 index 000000000..3b2f63cbe --- /dev/null +++ b/src/components/IconWhatshot.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWhatshot: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWhatshot } diff --git a/src/components/IconWheelchairPickup.tsx b/src/components/IconWheelchairPickup.tsx new file mode 100644 index 000000000..6c47aca4c --- /dev/null +++ b/src/components/IconWheelchairPickup.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconWheelchairPickup: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconWheelchairPickup } diff --git a/src/components/IconWhereToVote.tsx b/src/components/IconWhereToVote.tsx new file mode 100644 index 000000000..0bb92944b --- /dev/null +++ b/src/components/IconWhereToVote.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWhereToVote: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWhereToVote } diff --git a/src/components/IconWidgets.tsx b/src/components/IconWidgets.tsx new file mode 100644 index 000000000..b8ebb8e94 --- /dev/null +++ b/src/components/IconWidgets.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWidgets: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWidgets } diff --git a/src/components/IconWifi.tsx b/src/components/IconWifi.tsx new file mode 100644 index 000000000..38a4596b2 --- /dev/null +++ b/src/components/IconWifi.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWifi: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWifi } diff --git a/src/components/IconWifiCalling.tsx b/src/components/IconWifiCalling.tsx new file mode 100644 index 000000000..fcf4ac620 --- /dev/null +++ b/src/components/IconWifiCalling.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconWifiCalling: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconWifiCalling } diff --git a/src/components/IconWifiLock.tsx b/src/components/IconWifiLock.tsx new file mode 100644 index 000000000..0f605b6f5 --- /dev/null +++ b/src/components/IconWifiLock.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWifiLock: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWifiLock } diff --git a/src/components/IconWifiOff.tsx b/src/components/IconWifiOff.tsx new file mode 100644 index 000000000..ac7cf128c --- /dev/null +++ b/src/components/IconWifiOff.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconWifiOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWifiOff } diff --git a/src/components/IconWifiProtectedSetup.tsx b/src/components/IconWifiProtectedSetup.tsx new file mode 100644 index 000000000..4bde93378 --- /dev/null +++ b/src/components/IconWifiProtectedSetup.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' +const IconWifiProtectedSetup: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + + + + +) + +export { IconWifiProtectedSetup } diff --git a/src/components/IconWifiTethering.tsx b/src/components/IconWifiTethering.tsx new file mode 100644 index 000000000..8b3d18219 --- /dev/null +++ b/src/components/IconWifiTethering.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWifiTethering: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWifiTethering } diff --git a/src/components/IconWineBar.tsx b/src/components/IconWineBar.tsx new file mode 100644 index 000000000..c45b05051 --- /dev/null +++ b/src/components/IconWineBar.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' +const IconWineBar: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWineBar } diff --git a/src/components/IconWork.tsx b/src/components/IconWork.tsx new file mode 100644 index 000000000..45aaef5ce --- /dev/null +++ b/src/components/IconWork.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWork: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWork } diff --git a/src/components/IconWorkOff.tsx b/src/components/IconWorkOff.tsx new file mode 100644 index 000000000..d98d3aa7a --- /dev/null +++ b/src/components/IconWorkOff.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWorkOff: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWorkOff } diff --git a/src/components/IconWorkOutline.tsx b/src/components/IconWorkOutline.tsx new file mode 100644 index 000000000..dece48b11 --- /dev/null +++ b/src/components/IconWorkOutline.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' +const IconWorkOutline: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWorkOutline } diff --git a/src/components/IconWrapText.tsx b/src/components/IconWrapText.tsx new file mode 100644 index 000000000..d11f6e3ae --- /dev/null +++ b/src/components/IconWrapText.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconWrapText: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconWrapText } diff --git a/src/components/IconWrongLocation.tsx b/src/components/IconWrongLocation.tsx new file mode 100644 index 000000000..aeb9382ec --- /dev/null +++ b/src/components/IconWrongLocation.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' +const IconWrongLocation: React.FC = (props: IconProps): any => ( + + + + + + + + + + + +) + +export { IconWrongLocation } diff --git a/src/components/IconWysiwyg.tsx b/src/components/IconWysiwyg.tsx new file mode 100644 index 000000000..d1b9018d9 --- /dev/null +++ b/src/components/IconWysiwyg.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' +const IconWysiwyg: React.FC = (props: IconProps): any => ( + + + + + + +) + +export { IconWysiwyg } diff --git a/src/components/IconYoutubeSearchedFor.tsx b/src/components/IconYoutubeSearchedFor.tsx new file mode 100644 index 000000000..9d12934ef --- /dev/null +++ b/src/components/IconYoutubeSearchedFor.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconYoutubeSearchedFor: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconYoutubeSearchedFor } diff --git a/src/components/IconZoomIn.tsx b/src/components/IconZoomIn.tsx new file mode 100644 index 000000000..88150147f --- /dev/null +++ b/src/components/IconZoomIn.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' +const IconZoomIn: React.FC = (props: IconProps): any => ( + + + + + +) + +export { IconZoomIn } diff --git a/src/components/IconZoomOut.tsx b/src/components/IconZoomOut.tsx new file mode 100644 index 000000000..378b371fb --- /dev/null +++ b/src/components/IconZoomOut.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { IconProps } from './types' +const IconZoomOut: React.FC = (props: IconProps): any => ( + + + + +) + +export { IconZoomOut } diff --git a/src/components/IconZoomOutMap.tsx b/src/components/IconZoomOutMap.tsx new file mode 100644 index 000000000..c3b5b430d --- /dev/null +++ b/src/components/IconZoomOutMap.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' +const IconZoomOutMap: React.FC = (props: IconProps): any => ( + + + + + + + + + + + + +) + +export { IconZoomOutMap } From 47b25b16f3e819868500245d79c49982866962f9 Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Mon, 5 Oct 2020 17:17:05 +0200 Subject: [PATCH 17/20] Add index.ts and types.ts --- src/components/types.ts | 2 + src/index.ts | 2637 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 2639 insertions(+) create mode 100644 src/components/types.ts create mode 100644 src/index.ts diff --git a/src/components/types.ts b/src/components/types.ts new file mode 100644 index 000000000..d512964ae --- /dev/null +++ b/src/components/types.ts @@ -0,0 +1,2 @@ +import React from 'react' +export type IconProps = React.SVGProps diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 000000000..f53e2bbf9 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,2637 @@ +import { Icon360 } from './components/Icon360' +import { Icon3dRotation } from './components/Icon3dRotation' +import { Icon4k } from './components/Icon4k' +import { Icon5g } from './components/Icon5g' +import { Icon6FtApart } from './components/Icon6FtApart' +import { IconAcUnit } from './components/IconAcUnit' +import { IconAccessAlarm } from './components/IconAccessAlarm' +import { IconAccessAlarms } from './components/IconAccessAlarms' +import { IconAccessTime } from './components/IconAccessTime' +import { IconAccessibility } from './components/IconAccessibility' +import { IconAccessibilityNew } from './components/IconAccessibilityNew' +import { IconAccessible } from './components/IconAccessible' +import { IconAccessibleForward } from './components/IconAccessibleForward' +import { IconAccountBalance } from './components/IconAccountBalance' +import { IconAccountBalanceWallet } from './components/IconAccountBalanceWallet' +import { IconAccountBox } from './components/IconAccountBox' +import { IconAccountCircle } from './components/IconAccountCircle' +import { IconAccountTree } from './components/IconAccountTree' +import { IconAdUnits } from './components/IconAdUnits' +import { IconAdb } from './components/IconAdb' +import { IconAdd } from './components/IconAdd' +import { IconAddAPhoto } from './components/IconAddAPhoto' +import { IconAddAlarm } from './components/IconAddAlarm' +import { IconAddAlert } from './components/IconAddAlert' +import { IconAddBox } from './components/IconAddBox' +import { IconAddBusiness } from './components/IconAddBusiness' +import { IconAddCircle } from './components/IconAddCircle' +import { IconAddCircleOutline } from './components/IconAddCircleOutline' +import { IconAddComment } from './components/IconAddComment' +import { IconAddIcCall } from './components/IconAddIcCall' +import { IconAddLocation } from './components/IconAddLocation' +import { IconAddLocationAlt } from './components/IconAddLocationAlt' +import { IconAddPhotoAlternate } from './components/IconAddPhotoAlternate' +import { IconAddRoad } from './components/IconAddRoad' +import { IconAddShoppingCart } from './components/IconAddShoppingCart' +import { IconAddTask } from './components/IconAddTask' +import { IconAddToHomeScreen } from './components/IconAddToHomeScreen' +import { IconAddToPhotos } from './components/IconAddToPhotos' +import { IconAddToQueue } from './components/IconAddToQueue' +import { IconAddchart } from './components/IconAddchart' +import { IconAdjust } from './components/IconAdjust' +import { IconAdminPanelSettings } from './components/IconAdminPanelSettings' +import { IconAgriculture } from './components/IconAgriculture' +import { IconAirlineSeatFlat } from './components/IconAirlineSeatFlat' +import { IconAirlineSeatFlatAngled } from './components/IconAirlineSeatFlatAngled' +import { IconAirlineSeatIndividualSuite } from './components/IconAirlineSeatIndividualSuite' +import { IconAirlineSeatLegroomExtra } from './components/IconAirlineSeatLegroomExtra' +import { IconAirlineSeatLegroomNormal } from './components/IconAirlineSeatLegroomNormal' +import { IconAirlineSeatLegroomReduced } from './components/IconAirlineSeatLegroomReduced' +import { IconAirlineSeatReclineExtra } from './components/IconAirlineSeatReclineExtra' +import { IconAirlineSeatReclineNormal } from './components/IconAirlineSeatReclineNormal' +import { IconAirplanemodeActive } from './components/IconAirplanemodeActive' +import { IconAirplanemodeInactive } from './components/IconAirplanemodeInactive' +import { IconAirplay } from './components/IconAirplay' +import { IconAirportShuttle } from './components/IconAirportShuttle' +import { IconAlarm } from './components/IconAlarm' +import { IconAlarmAdd } from './components/IconAlarmAdd' +import { IconAlarmOff } from './components/IconAlarmOff' +import { IconAlarmOn } from './components/IconAlarmOn' +import { IconAlbum } from './components/IconAlbum' +import { IconAlignHorizontalCenter } from './components/IconAlignHorizontalCenter' +import { IconAlignHorizontalLeft } from './components/IconAlignHorizontalLeft' +import { IconAlignHorizontalRight } from './components/IconAlignHorizontalRight' +import { IconAlignVerticalBottom } from './components/IconAlignVerticalBottom' +import { IconAlignVerticalCenter } from './components/IconAlignVerticalCenter' +import { IconAlignVerticalTop } from './components/IconAlignVerticalTop' +import { IconAllInbox } from './components/IconAllInbox' +import { IconAllInclusive } from './components/IconAllInclusive' +import { IconAllOut } from './components/IconAllOut' +import { IconAltRoute } from './components/IconAltRoute' +import { IconAlternateEmail } from './components/IconAlternateEmail' +import { IconAmpStories } from './components/IconAmpStories' +import { IconAnalytics } from './components/IconAnalytics' +import { IconAnchor } from './components/IconAnchor' +import { IconAndroid } from './components/IconAndroid' +import { IconAnnouncement } from './components/IconAnnouncement' +import { IconApartment } from './components/IconApartment' +import { IconApi } from './components/IconApi' +import { IconAppBlocking } from './components/IconAppBlocking' +import { IconAppSettingsAlt } from './components/IconAppSettingsAlt' +import { IconApps } from './components/IconApps' +import { IconArchitecture } from './components/IconArchitecture' +import { IconArchive } from './components/IconArchive' +import { IconArrowBack } from './components/IconArrowBack' +import { IconArrowBackIos } from './components/IconArrowBackIos' +import { IconArrowCircleDown } from './components/IconArrowCircleDown' +import { IconArrowCircleUp } from './components/IconArrowCircleUp' +import { IconArrowDownward } from './components/IconArrowDownward' +import { IconArrowDropDown } from './components/IconArrowDropDown' +import { IconArrowDropDownCircle } from './components/IconArrowDropDownCircle' +import { IconArrowDropUp } from './components/IconArrowDropUp' +import { IconArrowForward } from './components/IconArrowForward' +import { IconArrowForwardIos } from './components/IconArrowForwardIos' +import { IconArrowLeft } from './components/IconArrowLeft' +import { IconArrowRight } from './components/IconArrowRight' +import { IconArrowRightAlt } from './components/IconArrowRightAlt' +import { IconArrowUpward } from './components/IconArrowUpward' +import { IconArtTrack } from './components/IconArtTrack' +import { IconArticle } from './components/IconArticle' +import { IconAspectRatio } from './components/IconAspectRatio' +import { IconAssessment } from './components/IconAssessment' +import { IconAssignment } from './components/IconAssignment' +import { IconAssignmentInd } from './components/IconAssignmentInd' +import { IconAssignmentLate } from './components/IconAssignmentLate' +import { IconAssignmentReturn } from './components/IconAssignmentReturn' +import { IconAssignmentReturned } from './components/IconAssignmentReturned' +import { IconAssignmentTurnedIn } from './components/IconAssignmentTurnedIn' +import { IconAssistant } from './components/IconAssistant' +import { IconAssistantPhoto } from './components/IconAssistantPhoto' +import { IconAtm } from './components/IconAtm' +import { IconAttachEmail } from './components/IconAttachEmail' +import { IconAttachFile } from './components/IconAttachFile' +import { IconAttachMoney } from './components/IconAttachMoney' +import { IconAttachment } from './components/IconAttachment' +import { IconAudiotrack } from './components/IconAudiotrack' +import { IconAutoDelete } from './components/IconAutoDelete' +import { IconAutorenew } from './components/IconAutorenew' +import { IconAvTimer } from './components/IconAvTimer' +import { IconBabyChangingStation } from './components/IconBabyChangingStation' +import { IconBackpack } from './components/IconBackpack' +import { IconBackspace } from './components/IconBackspace' +import { IconBackup } from './components/IconBackup' +import { IconBackupTable } from './components/IconBackupTable' +import { IconBallot } from './components/IconBallot' +import { IconBarChart } from './components/IconBarChart' +import { IconBatchPrediction } from './components/IconBatchPrediction' +import { IconBathtub } from './components/IconBathtub' +import { IconBatteryAlert } from './components/IconBatteryAlert' +import { IconBatteryChargingFull } from './components/IconBatteryChargingFull' +import { IconBatteryFull } from './components/IconBatteryFull' +import { IconBatteryStd } from './components/IconBatteryStd' +import { IconBatteryUnknown } from './components/IconBatteryUnknown' +import { IconBeachAccess } from './components/IconBeachAccess' +import { IconBedtime } from './components/IconBedtime' +import { IconBeenhere } from './components/IconBeenhere' +import { IconBento } from './components/IconBento' +import { IconBikeScooter } from './components/IconBikeScooter' +import { IconBiotech } from './components/IconBiotech' +import { IconBlock } from './components/IconBlock' +import { IconBluetooth } from './components/IconBluetooth' +import { IconBluetoothAudio } from './components/IconBluetoothAudio' +import { IconBluetoothConnected } from './components/IconBluetoothConnected' +import { IconBluetoothDisabled } from './components/IconBluetoothDisabled' +import { IconBluetoothSearching } from './components/IconBluetoothSearching' +import { IconBlurCircular } from './components/IconBlurCircular' +import { IconBlurLinear } from './components/IconBlurLinear' +import { IconBlurOff } from './components/IconBlurOff' +import { IconBlurOn } from './components/IconBlurOn' +import { IconBook } from './components/IconBook' +import { IconBookOnline } from './components/IconBookOnline' +import { IconBookmark } from './components/IconBookmark' +import { IconBookmarkBorder } from './components/IconBookmarkBorder' +import { IconBookmarks } from './components/IconBookmarks' +import { IconBorderAll } from './components/IconBorderAll' +import { IconBorderBottom } from './components/IconBorderBottom' +import { IconBorderClear } from './components/IconBorderClear' +import { IconBorderHorizontal } from './components/IconBorderHorizontal' +import { IconBorderInner } from './components/IconBorderInner' +import { IconBorderLeft } from './components/IconBorderLeft' +import { IconBorderOuter } from './components/IconBorderOuter' +import { IconBorderRight } from './components/IconBorderRight' +import { IconBorderStyle } from './components/IconBorderStyle' +import { IconBorderTop } from './components/IconBorderTop' +import { IconBorderVertical } from './components/IconBorderVertical' +import { IconBrandingWatermark } from './components/IconBrandingWatermark' +import { IconBrightness1 } from './components/IconBrightness1' +import { IconBrightness2 } from './components/IconBrightness2' +import { IconBrightness3 } from './components/IconBrightness3' +import { IconBrightness4 } from './components/IconBrightness4' +import { IconBrightness5 } from './components/IconBrightness5' +import { IconBrightness6 } from './components/IconBrightness6' +import { IconBrightness7 } from './components/IconBrightness7' +import { IconBrightnessAuto } from './components/IconBrightnessAuto' +import { IconBrightnessHigh } from './components/IconBrightnessHigh' +import { IconBrightnessLow } from './components/IconBrightnessLow' +import { IconBrightnessMedium } from './components/IconBrightnessMedium' +import { IconBrokenImage } from './components/IconBrokenImage' +import { IconBrowserNotSupported } from './components/IconBrowserNotSupported' +import { IconBrush } from './components/IconBrush' +import { IconBubbleChart } from './components/IconBubbleChart' +import { IconBugReport } from './components/IconBugReport' +import { IconBuild } from './components/IconBuild' +import { IconBuildCircle } from './components/IconBuildCircle' +import { IconBurstMode } from './components/IconBurstMode' +import { IconBusiness } from './components/IconBusiness' +import { IconBusinessCenter } from './components/IconBusinessCenter' +import { IconCached } from './components/IconCached' +import { IconCake } from './components/IconCake' +import { IconCalculate } from './components/IconCalculate' +import { IconCalendarToday } from './components/IconCalendarToday' +import { IconCalendarViewDay } from './components/IconCalendarViewDay' +import { IconCall } from './components/IconCall' +import { IconCallEnd } from './components/IconCallEnd' +import { IconCallMade } from './components/IconCallMade' +import { IconCallMerge } from './components/IconCallMerge' +import { IconCallMissed } from './components/IconCallMissed' +import { IconCallMissedOutgoing } from './components/IconCallMissedOutgoing' +import { IconCallReceived } from './components/IconCallReceived' +import { IconCallSplit } from './components/IconCallSplit' +import { IconCallToAction } from './components/IconCallToAction' +import { IconCamera } from './components/IconCamera' +import { IconCameraAlt } from './components/IconCameraAlt' +import { IconCameraEnhance } from './components/IconCameraEnhance' +import { IconCameraFront } from './components/IconCameraFront' +import { IconCameraRear } from './components/IconCameraRear' +import { IconCameraRoll } from './components/IconCameraRoll' +import { IconCampaign } from './components/IconCampaign' +import { IconCancel } from './components/IconCancel' +import { IconCancelPresentation } from './components/IconCancelPresentation' +import { IconCancelScheduleSend } from './components/IconCancelScheduleSend' +import { IconCardGiftcard } from './components/IconCardGiftcard' +import { IconCardMembership } from './components/IconCardMembership' +import { IconCardTravel } from './components/IconCardTravel' +import { IconCarpenter } from './components/IconCarpenter' +import { IconCasino } from './components/IconCasino' +import { IconCast } from './components/IconCast' +import { IconCastConnected } from './components/IconCastConnected' +import { IconCastForEducation } from './components/IconCastForEducation' +import { IconCategory } from './components/IconCategory' +import { IconCenterFocusStrong } from './components/IconCenterFocusStrong' +import { IconCenterFocusWeak } from './components/IconCenterFocusWeak' +import { IconChangeHistory } from './components/IconChangeHistory' +import { IconChargingStation } from './components/IconChargingStation' +import { IconChat } from './components/IconChat' +import { IconChatBubble } from './components/IconChatBubble' +import { IconChatBubbleOutline } from './components/IconChatBubbleOutline' +import { IconCheck } from './components/IconCheck' +import { IconCheckBox } from './components/IconCheckBox' +import { IconCheckBoxOutlineBlank } from './components/IconCheckBoxOutlineBlank' +import { IconCheckCircle } from './components/IconCheckCircle' +import { IconCheckCircleOutline } from './components/IconCheckCircleOutline' +import { IconCheckroom } from './components/IconCheckroom' +import { IconChevronLeft } from './components/IconChevronLeft' +import { IconChevronRight } from './components/IconChevronRight' +import { IconChildCare } from './components/IconChildCare' +import { IconChildFriendly } from './components/IconChildFriendly' +import { IconChromeReaderMode } from './components/IconChromeReaderMode' +import { IconClass } from './components/IconClass' +import { IconCleanHands } from './components/IconCleanHands' +import { IconCleaningServices } from './components/IconCleaningServices' +import { IconClear } from './components/IconClear' +import { IconClearAll } from './components/IconClearAll' +import { IconClose } from './components/IconClose' +import { IconCloseFullscreen } from './components/IconCloseFullscreen' +import { IconClosedCaption } from './components/IconClosedCaption' +import { IconClosedCaptionDisabled } from './components/IconClosedCaptionDisabled' +import { IconCloud } from './components/IconCloud' +import { IconCloudCircle } from './components/IconCloudCircle' +import { IconCloudDone } from './components/IconCloudDone' +import { IconCloudDownload } from './components/IconCloudDownload' +import { IconCloudOff } from './components/IconCloudOff' +import { IconCloudQueue } from './components/IconCloudQueue' +import { IconCloudUpload } from './components/IconCloudUpload' +import { IconCode } from './components/IconCode' +import { IconCollections } from './components/IconCollections' +import { IconCollectionsBookmark } from './components/IconCollectionsBookmark' +import { IconColorLens } from './components/IconColorLens' +import { IconColorize } from './components/IconColorize' +import { IconComment } from './components/IconComment' +import { IconCommentBank } from './components/IconCommentBank' +import { IconCommute } from './components/IconCommute' +import { IconCompare } from './components/IconCompare' +import { IconCompareArrows } from './components/IconCompareArrows' +import { IconCompassCalibration } from './components/IconCompassCalibration' +import { IconComputer } from './components/IconComputer' +import { IconConfirmationNumber } from './components/IconConfirmationNumber' +import { IconConnectWithoutContact } from './components/IconConnectWithoutContact' +import { IconConstruction } from './components/IconConstruction' +import { IconContactMail } from './components/IconContactMail' +import { IconContactPage } from './components/IconContactPage' +import { IconContactPhone } from './components/IconContactPhone' +import { IconContactSupport } from './components/IconContactSupport' +import { IconContactless } from './components/IconContactless' +import { IconContacts } from './components/IconContacts' +import { IconContentCopy } from './components/IconContentCopy' +import { IconContentCut } from './components/IconContentCut' +import { IconContentPaste } from './components/IconContentPaste' +import { IconControlCamera } from './components/IconControlCamera' +import { IconControlPoint } from './components/IconControlPoint' +import { IconControlPointDuplicate } from './components/IconControlPointDuplicate' +import { IconCopyright } from './components/IconCopyright' +import { IconCoronavirus } from './components/IconCoronavirus' +import { IconCorporateFare } from './components/IconCorporateFare' +import { IconCountertops } from './components/IconCountertops' +import { IconCreate } from './components/IconCreate' +import { IconCreateNewFolder } from './components/IconCreateNewFolder' +import { IconCreditCard } from './components/IconCreditCard' +import { IconCrop } from './components/IconCrop' +import { IconCrop169 } from './components/IconCrop169' +import { IconCrop32 } from './components/IconCrop32' +import { IconCrop54 } from './components/IconCrop54' +import { IconCrop75 } from './components/IconCrop75' +import { IconCropDin } from './components/IconCropDin' +import { IconCropFree } from './components/IconCropFree' +import { IconCropLandscape } from './components/IconCropLandscape' +import { IconCropOriginal } from './components/IconCropOriginal' +import { IconCropPortrait } from './components/IconCropPortrait' +import { IconCropRotate } from './components/IconCropRotate' +import { IconCropSquare } from './components/IconCropSquare' +import { IconDashboard } from './components/IconDashboard' +import { IconDataUsage } from './components/IconDataUsage' +import { IconDateRange } from './components/IconDateRange' +import { IconDeck } from './components/IconDeck' +import { IconDehaze } from './components/IconDehaze' +import { IconDelete } from './components/IconDelete' +import { IconDeleteForever } from './components/IconDeleteForever' +import { IconDeleteOutline } from './components/IconDeleteOutline' +import { IconDeleteSweep } from './components/IconDeleteSweep' +import { IconDepartureBoard } from './components/IconDepartureBoard' +import { IconDescription } from './components/IconDescription' +import { IconDesignServices } from './components/IconDesignServices' +import { IconDesktopAccessDisabled } from './components/IconDesktopAccessDisabled' +import { IconDesktopMac } from './components/IconDesktopMac' +import { IconDesktopWindows } from './components/IconDesktopWindows' +import { IconDetails } from './components/IconDetails' +import { IconDeveloperBoard } from './components/IconDeveloperBoard' +import { IconDeveloperMode } from './components/IconDeveloperMode' +import { IconDeviceHub } from './components/IconDeviceHub' +import { IconDeviceUnknown } from './components/IconDeviceUnknown' +import { IconDevices } from './components/IconDevices' +import { IconDevicesOther } from './components/IconDevicesOther' +import { IconDialerSip } from './components/IconDialerSip' +import { IconDialpad } from './components/IconDialpad' +import { IconDirections } from './components/IconDirections' +import { IconDirectionsBike } from './components/IconDirectionsBike' +import { IconDirectionsBoat } from './components/IconDirectionsBoat' +import { IconDirectionsBus } from './components/IconDirectionsBus' +import { IconDirectionsCar } from './components/IconDirectionsCar' +import { IconDirectionsOff } from './components/IconDirectionsOff' +import { IconDirectionsRailway } from './components/IconDirectionsRailway' +import { IconDirectionsRun } from './components/IconDirectionsRun' +import { IconDirectionsSubway } from './components/IconDirectionsSubway' +import { IconDirectionsTransit } from './components/IconDirectionsTransit' +import { IconDirectionsWalk } from './components/IconDirectionsWalk' +import { IconDisabledByDefault } from './components/IconDisabledByDefault' +import { IconDiscFull } from './components/IconDiscFull' +import { IconDns } from './components/IconDns' +import { IconDoNotStep } from './components/IconDoNotStep' +import { IconDoNotTouch } from './components/IconDoNotTouch' +import { IconDock } from './components/IconDock' +import { IconDomain } from './components/IconDomain' +import { IconDomainDisabled } from './components/IconDomainDisabled' +import { IconDomainVerification } from './components/IconDomainVerification' +import { IconDone } from './components/IconDone' +import { IconDoneAll } from './components/IconDoneAll' +import { IconDoneOutline } from './components/IconDoneOutline' +import { IconDonutLarge } from './components/IconDonutLarge' +import { IconDonutSmall } from './components/IconDonutSmall' +import { IconDoubleArrow } from './components/IconDoubleArrow' +import { IconDrafts } from './components/IconDrafts' +import { IconDragHandle } from './components/IconDragHandle' +import { IconDragIndicator } from './components/IconDragIndicator' +import { IconDriveEta } from './components/IconDriveEta' +import { IconDry } from './components/IconDry' +import { IconDuo } from './components/IconDuo' +import { IconDvr } from './components/IconDvr' +import { IconDynamicFeed } from './components/IconDynamicFeed' +import { IconDynamicForm } from './components/IconDynamicForm' +import { IconEast } from './components/IconEast' +import { IconEco } from './components/IconEco' +import { IconEdit } from './components/IconEdit' +import { IconEditAttributes } from './components/IconEditAttributes' +import { IconEditLocation } from './components/IconEditLocation' +import { IconEditRoad } from './components/IconEditRoad' +import { IconEject } from './components/IconEject' +import { IconElderly } from './components/IconElderly' +import { IconElectricBike } from './components/IconElectricBike' +import { IconElectricCar } from './components/IconElectricCar' +import { IconElectricMoped } from './components/IconElectricMoped' +import { IconElectricScooter } from './components/IconElectricScooter' +import { IconElectricalServices } from './components/IconElectricalServices' +import { IconElevator } from './components/IconElevator' +import { IconEmail } from './components/IconEmail' +import { IconEmojiEmotions } from './components/IconEmojiEmotions' +import { IconEmojiEvents } from './components/IconEmojiEvents' +import { IconEmojiFlags } from './components/IconEmojiFlags' +import { IconEmojiFoodBeverage } from './components/IconEmojiFoodBeverage' +import { IconEmojiNature } from './components/IconEmojiNature' +import { IconEmojiObjects } from './components/IconEmojiObjects' +import { IconEmojiPeople } from './components/IconEmojiPeople' +import { IconEmojiSymbols } from './components/IconEmojiSymbols' +import { IconEmojiTransportation } from './components/IconEmojiTransportation' +import { IconEngineering } from './components/IconEngineering' +import { IconEnhancedEncryption } from './components/IconEnhancedEncryption' +import { IconEqualizer } from './components/IconEqualizer' +import { IconError } from './components/IconError' +import { IconErrorOutline } from './components/IconErrorOutline' +import { IconEscalator } from './components/IconEscalator' +import { IconEscalatorWarning } from './components/IconEscalatorWarning' +import { IconEuro } from './components/IconEuro' +import { IconEuroSymbol } from './components/IconEuroSymbol' +import { IconEvStation } from './components/IconEvStation' +import { IconEvent } from './components/IconEvent' +import { IconEventAvailable } from './components/IconEventAvailable' +import { IconEventBusy } from './components/IconEventBusy' +import { IconEventNote } from './components/IconEventNote' +import { IconEventSeat } from './components/IconEventSeat' +import { IconExitToApp } from './components/IconExitToApp' +import { IconExpandLess } from './components/IconExpandLess' +import { IconExpandMore } from './components/IconExpandMore' +import { IconExplicit } from './components/IconExplicit' +import { IconExplore } from './components/IconExplore' +import { IconExploreOff } from './components/IconExploreOff' +import { IconExposure } from './components/IconExposure' +import { IconExposureNeg1 } from './components/IconExposureNeg1' +import { IconExposureNeg2 } from './components/IconExposureNeg2' +import { IconExposurePlus1 } from './components/IconExposurePlus1' +import { IconExposurePlus2 } from './components/IconExposurePlus2' +import { IconExposureZero } from './components/IconExposureZero' +import { IconExtension } from './components/IconExtension' +import { IconFace } from './components/IconFace' +import { IconFacebook } from './components/IconFacebook' +import { IconFactCheck } from './components/IconFactCheck' +import { IconFamilyRestroom } from './components/IconFamilyRestroom' +import { IconFastForward } from './components/IconFastForward' +import { IconFastRewind } from './components/IconFastRewind' +import { IconFastfood } from './components/IconFastfood' +import { IconFavorite } from './components/IconFavorite' +import { IconFavoriteBorder } from './components/IconFavoriteBorder' +import { IconFeaturedPlayList } from './components/IconFeaturedPlayList' +import { IconFeaturedVideo } from './components/IconFeaturedVideo' +import { IconFeedback } from './components/IconFeedback' +import { IconFence } from './components/IconFence' +import { IconFiberDvr } from './components/IconFiberDvr' +import { IconFiberManualRecord } from './components/IconFiberManualRecord' +import { IconFiberNew } from './components/IconFiberNew' +import { IconFiberPin } from './components/IconFiberPin' +import { IconFiberSmartRecord } from './components/IconFiberSmartRecord' +import { IconFileCopy } from './components/IconFileCopy' +import { IconFilter } from './components/IconFilter' +import { IconFilter1 } from './components/IconFilter1' +import { IconFilter2 } from './components/IconFilter2' +import { IconFilter3 } from './components/IconFilter3' +import { IconFilter4 } from './components/IconFilter4' +import { IconFilter5 } from './components/IconFilter5' +import { IconFilter6 } from './components/IconFilter6' +import { IconFilter7 } from './components/IconFilter7' +import { IconFilter8 } from './components/IconFilter8' +import { IconFilter9 } from './components/IconFilter9' +import { IconFilter9Plus } from './components/IconFilter9Plus' +import { IconFilterAlt } from './components/IconFilterAlt' +import { IconFilterBAndW } from './components/IconFilterBAndW' +import { IconFilterCenterFocus } from './components/IconFilterCenterFocus' +import { IconFilterDrama } from './components/IconFilterDrama' +import { IconFilterFrames } from './components/IconFilterFrames' +import { IconFilterHdr } from './components/IconFilterHdr' +import { IconFilterList } from './components/IconFilterList' +import { IconFilterNone } from './components/IconFilterNone' +import { IconFilterTiltShift } from './components/IconFilterTiltShift' +import { IconFilterVintage } from './components/IconFilterVintage' +import { IconFindInPage } from './components/IconFindInPage' +import { IconFindReplace } from './components/IconFindReplace' +import { IconFingerprint } from './components/IconFingerprint' +import { IconFireExtinguisher } from './components/IconFireExtinguisher' +import { IconFireplace } from './components/IconFireplace' +import { IconFirstPage } from './components/IconFirstPage' +import { IconFitnessCenter } from './components/IconFitnessCenter' +import { IconFlag } from './components/IconFlag' +import { IconFlaky } from './components/IconFlaky' +import { IconFlare } from './components/IconFlare' +import { IconFlashAuto } from './components/IconFlashAuto' +import { IconFlashOff } from './components/IconFlashOff' +import { IconFlashOn } from './components/IconFlashOn' +import { IconFlight } from './components/IconFlight' +import { IconFlightLand } from './components/IconFlightLand' +import { IconFlightTakeoff } from './components/IconFlightTakeoff' +import { IconFlip } from './components/IconFlip' +import { IconFlipCameraAndroid } from './components/IconFlipCameraAndroid' +import { IconFlipCameraIos } from './components/IconFlipCameraIos' +import { IconFlipToBack } from './components/IconFlipToBack' +import { IconFlipToFront } from './components/IconFlipToFront' +import { IconFolder } from './components/IconFolder' +import { IconFolderOpen } from './components/IconFolderOpen' +import { IconFolderShared } from './components/IconFolderShared' +import { IconFolderSpecial } from './components/IconFolderSpecial' +import { IconFollowTheSigns } from './components/IconFollowTheSigns' +import { IconFontDownload } from './components/IconFontDownload' +import { IconFoodBank } from './components/IconFoodBank' +import { IconFormatAlignCenter } from './components/IconFormatAlignCenter' +import { IconFormatAlignJustify } from './components/IconFormatAlignJustify' +import { IconFormatAlignLeft } from './components/IconFormatAlignLeft' +import { IconFormatAlignRight } from './components/IconFormatAlignRight' +import { IconFormatBold } from './components/IconFormatBold' +import { IconFormatClear } from './components/IconFormatClear' +import { IconFormatColorReset } from './components/IconFormatColorReset' +import { IconFormatIndentDecrease } from './components/IconFormatIndentDecrease' +import { IconFormatIndentIncrease } from './components/IconFormatIndentIncrease' +import { IconFormatItalic } from './components/IconFormatItalic' +import { IconFormatLineSpacing } from './components/IconFormatLineSpacing' +import { IconFormatListBulleted } from './components/IconFormatListBulleted' +import { IconFormatListNumbered } from './components/IconFormatListNumbered' +import { IconFormatListNumberedRtl } from './components/IconFormatListNumberedRtl' +import { IconFormatPaint } from './components/IconFormatPaint' +import { IconFormatQuote } from './components/IconFormatQuote' +import { IconFormatShapes } from './components/IconFormatShapes' +import { IconFormatSize } from './components/IconFormatSize' +import { IconFormatStrikethrough } from './components/IconFormatStrikethrough' +import { IconFormatTextdirectionLToR } from './components/IconFormatTextdirectionLToR' +import { IconFormatTextdirectionRToL } from './components/IconFormatTextdirectionRToL' +import { IconFormatUnderlined } from './components/IconFormatUnderlined' +import { IconForum } from './components/IconForum' +import { IconForward } from './components/IconForward' +import { IconForward10 } from './components/IconForward10' +import { IconForward30 } from './components/IconForward30' +import { IconForward5 } from './components/IconForward5' +import { IconForwardToInbox } from './components/IconForwardToInbox' +import { IconFoundation } from './components/IconFoundation' +import { IconFreeBreakfast } from './components/IconFreeBreakfast' +import { IconFullscreen } from './components/IconFullscreen' +import { IconFullscreenExit } from './components/IconFullscreenExit' +import { IconFunctions } from './components/IconFunctions' +import { IconGTranslate } from './components/IconGTranslate' +import { IconGamepad } from './components/IconGamepad' +import { IconGames } from './components/IconGames' +import { IconGavel } from './components/IconGavel' +import { IconGesture } from './components/IconGesture' +import { IconGetApp } from './components/IconGetApp' +import { IconGif } from './components/IconGif' +import { IconGolfCourse } from './components/IconGolfCourse' +import { IconGpsFixed } from './components/IconGpsFixed' +import { IconGpsNotFixed } from './components/IconGpsNotFixed' +import { IconGpsOff } from './components/IconGpsOff' +import { IconGrade } from './components/IconGrade' +import { IconGradient } from './components/IconGradient' +import { IconGrading } from './components/IconGrading' +import { IconGrain } from './components/IconGrain' +import { IconGraphicEq } from './components/IconGraphicEq' +import { IconGrass } from './components/IconGrass' +import { IconGridOff } from './components/IconGridOff' +import { IconGridOn } from './components/IconGridOn' +import { IconGroup } from './components/IconGroup' +import { IconGroupAdd } from './components/IconGroupAdd' +import { IconGroupWork } from './components/IconGroupWork' +import { IconGroups } from './components/IconGroups' +import { IconHandyman } from './components/IconHandyman' +import { IconHd } from './components/IconHd' +import { IconHdrOff } from './components/IconHdrOff' +import { IconHdrOn } from './components/IconHdrOn' +import { IconHdrStrong } from './components/IconHdrStrong' +import { IconHdrWeak } from './components/IconHdrWeak' +import { IconHeadset } from './components/IconHeadset' +import { IconHeadsetMic } from './components/IconHeadsetMic' +import { IconHealing } from './components/IconHealing' +import { IconHearing } from './components/IconHearing' +import { IconHearingDisabled } from './components/IconHearingDisabled' +import { IconHeight } from './components/IconHeight' +import { IconHelp } from './components/IconHelp' +import { IconHelpCenter } from './components/IconHelpCenter' +import { IconHelpOutline } from './components/IconHelpOutline' +import { IconHighQuality } from './components/IconHighQuality' +import { IconHighlight } from './components/IconHighlight' +import { IconHighlightAlt } from './components/IconHighlightAlt' +import { IconHighlightOff } from './components/IconHighlightOff' +import { IconHistory } from './components/IconHistory' +import { IconHistoryEdu } from './components/IconHistoryEdu' +import { IconHistoryToggleOff } from './components/IconHistoryToggleOff' +import { IconHome } from './components/IconHome' +import { IconHomeRepairService } from './components/IconHomeRepairService' +import { IconHomeWork } from './components/IconHomeWork' +import { IconHorizontalDistribute } from './components/IconHorizontalDistribute' +import { IconHorizontalRule } from './components/IconHorizontalRule' +import { IconHorizontalSplit } from './components/IconHorizontalSplit' +import { IconHotTub } from './components/IconHotTub' +import { IconHotel } from './components/IconHotel' +import { IconHourglassBottom } from './components/IconHourglassBottom' +import { IconHourglassDisabled } from './components/IconHourglassDisabled' +import { IconHourglassEmpty } from './components/IconHourglassEmpty' +import { IconHourglassFull } from './components/IconHourglassFull' +import { IconHourglassTop } from './components/IconHourglassTop' +import { IconHouse } from './components/IconHouse' +import { IconHouseSiding } from './components/IconHouseSiding' +import { IconHowToReg } from './components/IconHowToReg' +import { IconHowToVote } from './components/IconHowToVote' +import { IconHttp } from './components/IconHttp' +import { IconHttps } from './components/IconHttps' +import { IconHvac } from './components/IconHvac' +import { IconImage } from './components/IconImage' +import { IconImageAspectRatio } from './components/IconImageAspectRatio' +import { IconImageNotSupported } from './components/IconImageNotSupported' +import { IconImageSearch } from './components/IconImageSearch' +import { IconImportContacts } from './components/IconImportContacts' +import { IconImportExport } from './components/IconImportExport' +import { IconImportantDevices } from './components/IconImportantDevices' +import { IconInbox } from './components/IconInbox' +import { IconIndeterminateCheckBox } from './components/IconIndeterminateCheckBox' +import { IconInfo } from './components/IconInfo' +import { IconInput } from './components/IconInput' +import { IconInsertChart } from './components/IconInsertChart' +import { IconInsertChartOutlined } from './components/IconInsertChartOutlined' +import { IconInsertComment } from './components/IconInsertComment' +import { IconInsertDriveFile } from './components/IconInsertDriveFile' +import { IconInsertEmoticon } from './components/IconInsertEmoticon' +import { IconInsertInvitation } from './components/IconInsertInvitation' +import { IconInsertLink } from './components/IconInsertLink' +import { IconInsertPhoto } from './components/IconInsertPhoto' +import { IconInsights } from './components/IconInsights' +import { IconIntegrationInstructions } from './components/IconIntegrationInstructions' +import { IconInvertColors } from './components/IconInvertColors' +import { IconInvertColorsOff } from './components/IconInvertColorsOff' +import { IconIso } from './components/IconIso' +import { IconKeyboard } from './components/IconKeyboard' +import { IconKeyboardArrowDown } from './components/IconKeyboardArrowDown' +import { IconKeyboardArrowLeft } from './components/IconKeyboardArrowLeft' +import { IconKeyboardArrowRight } from './components/IconKeyboardArrowRight' +import { IconKeyboardArrowUp } from './components/IconKeyboardArrowUp' +import { IconKeyboardBackspace } from './components/IconKeyboardBackspace' +import { IconKeyboardCapslock } from './components/IconKeyboardCapslock' +import { IconKeyboardHide } from './components/IconKeyboardHide' +import { IconKeyboardReturn } from './components/IconKeyboardReturn' +import { IconKeyboardTab } from './components/IconKeyboardTab' +import { IconKeyboardVoice } from './components/IconKeyboardVoice' +import { IconKingBed } from './components/IconKingBed' +import { IconKitchen } from './components/IconKitchen' +import { IconLabel } from './components/IconLabel' +import { IconLabelImportant } from './components/IconLabelImportant' +import { IconLabelOff } from './components/IconLabelOff' +import { IconLandscape } from './components/IconLandscape' +import { IconLanguage } from './components/IconLanguage' +import { IconLaptop } from './components/IconLaptop' +import { IconLaptopChromebook } from './components/IconLaptopChromebook' +import { IconLaptopMac } from './components/IconLaptopMac' +import { IconLaptopWindows } from './components/IconLaptopWindows' +import { IconLastPage } from './components/IconLastPage' +import { IconLaunch } from './components/IconLaunch' +import { IconLayers } from './components/IconLayers' +import { IconLayersClear } from './components/IconLayersClear' +import { IconLeaderboard } from './components/IconLeaderboard' +import { IconLeakAdd } from './components/IconLeakAdd' +import { IconLeakRemove } from './components/IconLeakRemove' +import { IconLegendToggle } from './components/IconLegendToggle' +import { IconLens } from './components/IconLens' +import { IconLibraryAdd } from './components/IconLibraryAdd' +import { IconLibraryAddCheck } from './components/IconLibraryAddCheck' +import { IconLibraryBooks } from './components/IconLibraryBooks' +import { IconLibraryMusic } from './components/IconLibraryMusic' +import { IconLineStyle } from './components/IconLineStyle' +import { IconLineWeight } from './components/IconLineWeight' +import { IconLinearScale } from './components/IconLinearScale' +import { IconLink } from './components/IconLink' +import { IconLinkOff } from './components/IconLinkOff' +import { IconLinkedCamera } from './components/IconLinkedCamera' +import { IconList } from './components/IconList' +import { IconListAlt } from './components/IconListAlt' +import { IconLiveHelp } from './components/IconLiveHelp' +import { IconLiveTv } from './components/IconLiveTv' +import { IconLocalActivity } from './components/IconLocalActivity' +import { IconLocalAirport } from './components/IconLocalAirport' +import { IconLocalAtm } from './components/IconLocalAtm' +import { IconLocalBar } from './components/IconLocalBar' +import { IconLocalCafe } from './components/IconLocalCafe' +import { IconLocalCarWash } from './components/IconLocalCarWash' +import { IconLocalConvenienceStore } from './components/IconLocalConvenienceStore' +import { IconLocalDining } from './components/IconLocalDining' +import { IconLocalDrink } from './components/IconLocalDrink' +import { IconLocalFireDepartment } from './components/IconLocalFireDepartment' +import { IconLocalFlorist } from './components/IconLocalFlorist' +import { IconLocalGasStation } from './components/IconLocalGasStation' +import { IconLocalGroceryStore } from './components/IconLocalGroceryStore' +import { IconLocalHospital } from './components/IconLocalHospital' +import { IconLocalHotel } from './components/IconLocalHotel' +import { IconLocalLaundryService } from './components/IconLocalLaundryService' +import { IconLocalLibrary } from './components/IconLocalLibrary' +import { IconLocalMall } from './components/IconLocalMall' +import { IconLocalMovies } from './components/IconLocalMovies' +import { IconLocalOffer } from './components/IconLocalOffer' +import { IconLocalParking } from './components/IconLocalParking' +import { IconLocalPharmacy } from './components/IconLocalPharmacy' +import { IconLocalPhone } from './components/IconLocalPhone' +import { IconLocalPizza } from './components/IconLocalPizza' +import { IconLocalPlay } from './components/IconLocalPlay' +import { IconLocalPolice } from './components/IconLocalPolice' +import { IconLocalPostOffice } from './components/IconLocalPostOffice' +import { IconLocalPrintshop } from './components/IconLocalPrintshop' +import { IconLocalSee } from './components/IconLocalSee' +import { IconLocalShipping } from './components/IconLocalShipping' +import { IconLocalTaxi } from './components/IconLocalTaxi' +import { IconLocationCity } from './components/IconLocationCity' +import { IconLocationDisabled } from './components/IconLocationDisabled' +import { IconLocationOff } from './components/IconLocationOff' +import { IconLocationOn } from './components/IconLocationOn' +import { IconLocationSearching } from './components/IconLocationSearching' +import { IconLock } from './components/IconLock' +import { IconLockOpen } from './components/IconLockOpen' +import { IconLogin } from './components/IconLogin' +import { IconLooks } from './components/IconLooks' +import { IconLooks3 } from './components/IconLooks3' +import { IconLooks4 } from './components/IconLooks4' +import { IconLooks5 } from './components/IconLooks5' +import { IconLooks6 } from './components/IconLooks6' +import { IconLooksOne } from './components/IconLooksOne' +import { IconLooksTwo } from './components/IconLooksTwo' +import { IconLoop } from './components/IconLoop' +import { IconLoupe } from './components/IconLoupe' +import { IconLowPriority } from './components/IconLowPriority' +import { IconLoyalty } from './components/IconLoyalty' +import { IconLuggage } from './components/IconLuggage' +import { IconMail } from './components/IconMail' +import { IconMailOutline } from './components/IconMailOutline' +import { IconMap } from './components/IconMap' +import { IconMapsUgc } from './components/IconMapsUgc' +import { IconMarkChatRead } from './components/IconMarkChatRead' +import { IconMarkChatUnread } from './components/IconMarkChatUnread' +import { IconMarkEmailRead } from './components/IconMarkEmailRead' +import { IconMarkEmailUnread } from './components/IconMarkEmailUnread' +import { IconMarkunread } from './components/IconMarkunread' +import { IconMarkunreadMailbox } from './components/IconMarkunreadMailbox' +import { IconMasks } from './components/IconMasks' +import { IconMaximize } from './components/IconMaximize' +import { IconMediation } from './components/IconMediation' +import { IconMedicalServices } from './components/IconMedicalServices' +import { IconMeetingRoom } from './components/IconMeetingRoom' +import { IconMemory } from './components/IconMemory' +import { IconMenu } from './components/IconMenu' +import { IconMenuBook } from './components/IconMenuBook' +import { IconMenuOpen } from './components/IconMenuOpen' +import { IconMergeType } from './components/IconMergeType' +import { IconMessage } from './components/IconMessage' +import { IconMic } from './components/IconMic' +import { IconMicNone } from './components/IconMicNone' +import { IconMicOff } from './components/IconMicOff' +import { IconMicrowave } from './components/IconMicrowave' +import { IconMilitaryTech } from './components/IconMilitaryTech' +import { IconMinimize } from './components/IconMinimize' +import { IconMiscellaneousServices } from './components/IconMiscellaneousServices' +import { IconMissedVideoCall } from './components/IconMissedVideoCall' +import { IconMms } from './components/IconMms' +import { IconMobileFriendly } from './components/IconMobileFriendly' +import { IconMobileOff } from './components/IconMobileOff' +import { IconMobileScreenShare } from './components/IconMobileScreenShare' +import { IconModeComment } from './components/IconModeComment' +import { IconModelTraining } from './components/IconModelTraining' +import { IconMonetizationOn } from './components/IconMonetizationOn' +import { IconMoney } from './components/IconMoney' +import { IconMoneyOff } from './components/IconMoneyOff' +import { IconMonochromePhotos } from './components/IconMonochromePhotos' +import { IconMood } from './components/IconMood' +import { IconMoodBad } from './components/IconMoodBad' +import { IconMoped } from './components/IconMoped' +import { IconMore } from './components/IconMore' +import { IconMoreHoriz } from './components/IconMoreHoriz' +import { IconMoreTime } from './components/IconMoreTime' +import { IconMoreVert } from './components/IconMoreVert' +import { IconMotionPhotosOn } from './components/IconMotionPhotosOn' +import { IconMotionPhotosPause } from './components/IconMotionPhotosPause' +import { IconMotionPhotosPaused } from './components/IconMotionPhotosPaused' +import { IconMouse } from './components/IconMouse' +import { IconMoveToInbox } from './components/IconMoveToInbox' +import { IconMovie } from './components/IconMovie' +import { IconMovieCreation } from './components/IconMovieCreation' +import { IconMovieFilter } from './components/IconMovieFilter' +import { IconMultilineChart } from './components/IconMultilineChart' +import { IconMultipleStop } from './components/IconMultipleStop' +import { IconMuseum } from './components/IconMuseum' +import { IconMusicNote } from './components/IconMusicNote' +import { IconMusicOff } from './components/IconMusicOff' +import { IconMusicVideo } from './components/IconMusicVideo' +import { IconMyLocation } from './components/IconMyLocation' +import { IconNat } from './components/IconNat' +import { IconNature } from './components/IconNature' +import { IconNaturePeople } from './components/IconNaturePeople' +import { IconNavigateBefore } from './components/IconNavigateBefore' +import { IconNavigateNext } from './components/IconNavigateNext' +import { IconNavigation } from './components/IconNavigation' +import { IconNearMe } from './components/IconNearMe' +import { IconNearMeDisabled } from './components/IconNearMeDisabled' +import { IconNetworkCheck } from './components/IconNetworkCheck' +import { IconNetworkLocked } from './components/IconNetworkLocked' +import { IconNewReleases } from './components/IconNewReleases' +import { IconNextPlan } from './components/IconNextPlan' +import { IconNextWeek } from './components/IconNextWeek' +import { IconNfc } from './components/IconNfc' +import { IconNightShelter } from './components/IconNightShelter' +import { IconNightsStay } from './components/IconNightsStay' +import { IconNoBackpack } from './components/IconNoBackpack' +import { IconNoCell } from './components/IconNoCell' +import { IconNoDrinks } from './components/IconNoDrinks' +import { IconNoEncryption } from './components/IconNoEncryption' +import { IconNoFlash } from './components/IconNoFlash' +import { IconNoFood } from './components/IconNoFood' +import { IconNoLuggage } from './components/IconNoLuggage' +import { IconNoMeals } from './components/IconNoMeals' +import { IconNoMeetingRoom } from './components/IconNoMeetingRoom' +import { IconNoPhotography } from './components/IconNoPhotography' +import { IconNoSim } from './components/IconNoSim' +import { IconNoStroller } from './components/IconNoStroller' +import { IconNoTransfer } from './components/IconNoTransfer' +import { IconNorth } from './components/IconNorth' +import { IconNorthEast } from './components/IconNorthEast' +import { IconNorthWest } from './components/IconNorthWest' +import { IconNotAccessible } from './components/IconNotAccessible' +import { IconNotInterested } from './components/IconNotInterested' +import { IconNotListedLocation } from './components/IconNotListedLocation' +import { IconNotStarted } from './components/IconNotStarted' +import { IconNote } from './components/IconNote' +import { IconNoteAdd } from './components/IconNoteAdd' +import { IconNotes } from './components/IconNotes' +import { IconNotificationImportant } from './components/IconNotificationImportant' +import { IconNotifications } from './components/IconNotifications' +import { IconNotificationsActive } from './components/IconNotificationsActive' +import { IconNotificationsNone } from './components/IconNotificationsNone' +import { IconNotificationsOff } from './components/IconNotificationsOff' +import { IconNotificationsPaused } from './components/IconNotificationsPaused' +import { IconOfflineBolt } from './components/IconOfflineBolt' +import { IconOfflinePin } from './components/IconOfflinePin' +import { IconOndemandVideo } from './components/IconOndemandVideo' +import { IconOnlinePrediction } from './components/IconOnlinePrediction' +import { IconOpacity } from './components/IconOpacity' +import { IconOpenInBrowser } from './components/IconOpenInBrowser' +import { IconOpenInFull } from './components/IconOpenInFull' +import { IconOpenInNew } from './components/IconOpenInNew' +import { IconOpenWith } from './components/IconOpenWith' +import { IconOutbond } from './components/IconOutbond' +import { IconOutdoorGrill } from './components/IconOutdoorGrill' +import { IconOutlet } from './components/IconOutlet' +import { IconOutlinedFlag } from './components/IconOutlinedFlag' +import { IconPages } from './components/IconPages' +import { IconPageview } from './components/IconPageview' +import { IconPalette } from './components/IconPalette' +import { IconPanTool } from './components/IconPanTool' +import { IconPanorama } from './components/IconPanorama' +import { IconPanoramaFishEye } from './components/IconPanoramaFishEye' +import { IconPanoramaHorizontal } from './components/IconPanoramaHorizontal' +import { IconPanoramaVertical } from './components/IconPanoramaVertical' +import { IconPanoramaWideAngle } from './components/IconPanoramaWideAngle' +import { IconPartyMode } from './components/IconPartyMode' +import { IconPause } from './components/IconPause' +import { IconPauseCircleFilled } from './components/IconPauseCircleFilled' +import { IconPauseCircleOutline } from './components/IconPauseCircleOutline' +import { IconPausePresentation } from './components/IconPausePresentation' +import { IconPayment } from './components/IconPayment' +import { IconPayments } from './components/IconPayments' +import { IconPedalBike } from './components/IconPedalBike' +import { IconPending } from './components/IconPending' +import { IconPendingActions } from './components/IconPendingActions' +import { IconPeople } from './components/IconPeople' +import { IconPeopleAlt } from './components/IconPeopleAlt' +import { IconPeopleOutline } from './components/IconPeopleOutline' +import { IconPermCameraMic } from './components/IconPermCameraMic' +import { IconPermContactCalendar } from './components/IconPermContactCalendar' +import { IconPermDataSetting } from './components/IconPermDataSetting' +import { IconPermDeviceInformation } from './components/IconPermDeviceInformation' +import { IconPermIdentity } from './components/IconPermIdentity' +import { IconPermMedia } from './components/IconPermMedia' +import { IconPermPhoneMsg } from './components/IconPermPhoneMsg' +import { IconPermScanWifi } from './components/IconPermScanWifi' +import { IconPerson } from './components/IconPerson' +import { IconPersonAdd } from './components/IconPersonAdd' +import { IconPersonAddAlt1 } from './components/IconPersonAddAlt1' +import { IconPersonAddDisabled } from './components/IconPersonAddDisabled' +import { IconPersonOutline } from './components/IconPersonOutline' +import { IconPersonPin } from './components/IconPersonPin' +import { IconPersonPinCircle } from './components/IconPersonPinCircle' +import { IconPersonRemove } from './components/IconPersonRemove' +import { IconPersonRemoveAlt1 } from './components/IconPersonRemoveAlt1' +import { IconPersonSearch } from './components/IconPersonSearch' +import { IconPersonalVideo } from './components/IconPersonalVideo' +import { IconPestControl } from './components/IconPestControl' +import { IconPestControlRodent } from './components/IconPestControlRodent' +import { IconPets } from './components/IconPets' +import { IconPhone } from './components/IconPhone' +import { IconPhoneAndroid } from './components/IconPhoneAndroid' +import { IconPhoneBluetoothSpeaker } from './components/IconPhoneBluetoothSpeaker' +import { IconPhoneCallback } from './components/IconPhoneCallback' +import { IconPhoneDisabled } from './components/IconPhoneDisabled' +import { IconPhoneEnabled } from './components/IconPhoneEnabled' +import { IconPhoneForwarded } from './components/IconPhoneForwarded' +import { IconPhoneInTalk } from './components/IconPhoneInTalk' +import { IconPhoneIphone } from './components/IconPhoneIphone' +import { IconPhoneLocked } from './components/IconPhoneLocked' +import { IconPhoneMissed } from './components/IconPhoneMissed' +import { IconPhonePaused } from './components/IconPhonePaused' +import { IconPhonelink } from './components/IconPhonelink' +import { IconPhonelinkErase } from './components/IconPhonelinkErase' +import { IconPhonelinkLock } from './components/IconPhonelinkLock' +import { IconPhonelinkOff } from './components/IconPhonelinkOff' +import { IconPhonelinkRing } from './components/IconPhonelinkRing' +import { IconPhonelinkSetup } from './components/IconPhonelinkSetup' +import { IconPhoto } from './components/IconPhoto' +import { IconPhotoAlbum } from './components/IconPhotoAlbum' +import { IconPhotoCamera } from './components/IconPhotoCamera' +import { IconPhotoFilter } from './components/IconPhotoFilter' +import { IconPhotoLibrary } from './components/IconPhotoLibrary' +import { IconPhotoSizeSelectActual } from './components/IconPhotoSizeSelectActual' +import { IconPhotoSizeSelectLarge } from './components/IconPhotoSizeSelectLarge' +import { IconPhotoSizeSelectSmall } from './components/IconPhotoSizeSelectSmall' +import { IconPictureAsPdf } from './components/IconPictureAsPdf' +import { IconPictureInPicture } from './components/IconPictureInPicture' +import { IconPictureInPictureAlt } from './components/IconPictureInPictureAlt' +import { IconPieChart } from './components/IconPieChart' +import { IconPinDrop } from './components/IconPinDrop' +import { IconPlace } from './components/IconPlace' +import { IconPlagiarism } from './components/IconPlagiarism' +import { IconPlayArrow } from './components/IconPlayArrow' +import { IconPlayCircleFilled } from './components/IconPlayCircleFilled' +import { IconPlayCircleOutline } from './components/IconPlayCircleOutline' +import { IconPlayForWork } from './components/IconPlayForWork' +import { IconPlaylistAdd } from './components/IconPlaylistAdd' +import { IconPlaylistAddCheck } from './components/IconPlaylistAddCheck' +import { IconPlaylistPlay } from './components/IconPlaylistPlay' +import { IconPlumbing } from './components/IconPlumbing' +import { IconPlusOne } from './components/IconPlusOne' +import { IconPointOfSale } from './components/IconPointOfSale' +import { IconPolicy } from './components/IconPolicy' +import { IconPoll } from './components/IconPoll' +import { IconPolymer } from './components/IconPolymer' +import { IconPool } from './components/IconPool' +import { IconPortableWifiOff } from './components/IconPortableWifiOff' +import { IconPortrait } from './components/IconPortrait' +import { IconPostAdd } from './components/IconPostAdd' +import { IconPower } from './components/IconPower' +import { IconPowerInput } from './components/IconPowerInput' +import { IconPowerOff } from './components/IconPowerOff' +import { IconPowerSettingsNew } from './components/IconPowerSettingsNew' +import { IconPregnantWoman } from './components/IconPregnantWoman' +import { IconPresentToAll } from './components/IconPresentToAll' +import { IconPreview } from './components/IconPreview' +import { IconPrint } from './components/IconPrint' +import { IconPrintDisabled } from './components/IconPrintDisabled' +import { IconPriorityHigh } from './components/IconPriorityHigh' +import { IconPrivacyTip } from './components/IconPrivacyTip' +import { IconPsychology } from './components/IconPsychology' +import { IconPublic } from './components/IconPublic' +import { IconPublicOff } from './components/IconPublicOff' +import { IconPublish } from './components/IconPublish' +import { IconPublishedWithChanges } from './components/IconPublishedWithChanges' +import { IconPushPin } from './components/IconPushPin' +import { IconQrCode } from './components/IconQrCode' +import { IconQrCode2 } from './components/IconQrCode2' +import { IconQrCodeScanner } from './components/IconQrCodeScanner' +import { IconQueryBuilder } from './components/IconQueryBuilder' +import { IconQuestionAnswer } from './components/IconQuestionAnswer' +import { IconQueue } from './components/IconQueue' +import { IconQueueMusic } from './components/IconQueueMusic' +import { IconQueuePlayNext } from './components/IconQueuePlayNext' +import { IconQuickreply } from './components/IconQuickreply' +import { IconRadio } from './components/IconRadio' +import { IconRadioButtonChecked } from './components/IconRadioButtonChecked' +import { IconRadioButtonUnchecked } from './components/IconRadioButtonUnchecked' +import { IconRateReview } from './components/IconRateReview' +import { IconReadMore } from './components/IconReadMore' +import { IconReceipt } from './components/IconReceipt' +import { IconReceiptLong } from './components/IconReceiptLong' +import { IconRecentActors } from './components/IconRecentActors' +import { IconRecordVoiceOver } from './components/IconRecordVoiceOver' +import { IconRedeem } from './components/IconRedeem' +import { IconRedo } from './components/IconRedo' +import { IconReduceCapacity } from './components/IconReduceCapacity' +import { IconRefresh } from './components/IconRefresh' +import { IconRemove } from './components/IconRemove' +import { IconRemoveCircle } from './components/IconRemoveCircle' +import { IconRemoveCircleOutline } from './components/IconRemoveCircleOutline' +import { IconRemoveFromQueue } from './components/IconRemoveFromQueue' +import { IconRemoveRedEye } from './components/IconRemoveRedEye' +import { IconRemoveShoppingCart } from './components/IconRemoveShoppingCart' +import { IconReorder } from './components/IconReorder' +import { IconRepeat } from './components/IconRepeat' +import { IconRepeatOne } from './components/IconRepeatOne' +import { IconReplay } from './components/IconReplay' +import { IconReplay10 } from './components/IconReplay10' +import { IconReplay30 } from './components/IconReplay30' +import { IconReplay5 } from './components/IconReplay5' +import { IconReply } from './components/IconReply' +import { IconReplyAll } from './components/IconReplyAll' +import { IconReport } from './components/IconReport' +import { IconReportOff } from './components/IconReportOff' +import { IconReportProblem } from './components/IconReportProblem' +import { IconRequestPage } from './components/IconRequestPage' +import { IconRequestQuote } from './components/IconRequestQuote' +import { IconRestaurant } from './components/IconRestaurant' +import { IconRestaurantMenu } from './components/IconRestaurantMenu' +import { IconRestore } from './components/IconRestore' +import { IconRestoreFromTrash } from './components/IconRestoreFromTrash' +import { IconRestorePage } from './components/IconRestorePage' +import { IconRiceBowl } from './components/IconRiceBowl' +import { IconRingVolume } from './components/IconRingVolume' +import { IconRoofing } from './components/IconRoofing' +import { IconRoom } from './components/IconRoom' +import { IconRoomPreferences } from './components/IconRoomPreferences' +import { IconRoomService } from './components/IconRoomService' +import { IconRotate90DegreesCcw } from './components/IconRotate90DegreesCcw' +import { IconRotateLeft } from './components/IconRotateLeft' +import { IconRotateRight } from './components/IconRotateRight' +import { IconRoundedCorner } from './components/IconRoundedCorner' +import { IconRouter } from './components/IconRouter' +import { IconRowing } from './components/IconRowing' +import { IconRssFeed } from './components/IconRssFeed' +import { IconRule } from './components/IconRule' +import { IconRuleFolder } from './components/IconRuleFolder' +import { IconRunCircle } from './components/IconRunCircle' +import { IconRvHookup } from './components/IconRvHookup' +import { IconSanitizer } from './components/IconSanitizer' +import { IconSatellite } from './components/IconSatellite' +import { IconSave } from './components/IconSave' +import { IconSaveAlt } from './components/IconSaveAlt' +import { IconScanner } from './components/IconScanner' +import { IconScatterPlot } from './components/IconScatterPlot' +import { IconSchedule } from './components/IconSchedule' +import { IconSchool } from './components/IconSchool' +import { IconScience } from './components/IconScience' +import { IconScore } from './components/IconScore' +import { IconScreenLockLandscape } from './components/IconScreenLockLandscape' +import { IconScreenLockPortrait } from './components/IconScreenLockPortrait' +import { IconScreenLockRotation } from './components/IconScreenLockRotation' +import { IconScreenRotation } from './components/IconScreenRotation' +import { IconScreenShare } from './components/IconScreenShare' +import { IconSdCard } from './components/IconSdCard' +import { IconSdStorage } from './components/IconSdStorage' +import { IconSearch } from './components/IconSearch' +import { IconSearchOff } from './components/IconSearchOff' +import { IconSecurity } from './components/IconSecurity' +import { IconSelectAll } from './components/IconSelectAll' +import { IconSelfImprovement } from './components/IconSelfImprovement' +import { IconSend } from './components/IconSend' +import { IconSensorDoor } from './components/IconSensorDoor' +import { IconSensorWindow } from './components/IconSensorWindow' +import { IconSentimentDissatisfied } from './components/IconSentimentDissatisfied' +import { IconSentimentSatisfied } from './components/IconSentimentSatisfied' +import { IconSentimentSatisfiedAlt } from './components/IconSentimentSatisfiedAlt' +import { IconSentimentVeryDissatisfied } from './components/IconSentimentVeryDissatisfied' +import { IconSentimentVerySatisfied } from './components/IconSentimentVerySatisfied' +import { IconSetMeal } from './components/IconSetMeal' +import { IconSettings } from './components/IconSettings' +import { IconSettingsApplications } from './components/IconSettingsApplications' +import { IconSettingsBackupRestore } from './components/IconSettingsBackupRestore' +import { IconSettingsBluetooth } from './components/IconSettingsBluetooth' +import { IconSettingsBrightness } from './components/IconSettingsBrightness' +import { IconSettingsCell } from './components/IconSettingsCell' +import { IconSettingsEthernet } from './components/IconSettingsEthernet' +import { IconSettingsInputAntenna } from './components/IconSettingsInputAntenna' +import { IconSettingsInputComponent } from './components/IconSettingsInputComponent' +import { IconSettingsInputComposite } from './components/IconSettingsInputComposite' +import { IconSettingsInputHdmi } from './components/IconSettingsInputHdmi' +import { IconSettingsInputSvideo } from './components/IconSettingsInputSvideo' +import { IconSettingsOverscan } from './components/IconSettingsOverscan' +import { IconSettingsPhone } from './components/IconSettingsPhone' +import { IconSettingsPower } from './components/IconSettingsPower' +import { IconSettingsRemote } from './components/IconSettingsRemote' +import { IconSettingsSystemDaydream } from './components/IconSettingsSystemDaydream' +import { IconSettingsVoice } from './components/IconSettingsVoice' +import { IconShare } from './components/IconShare' +import { IconShop } from './components/IconShop' +import { IconShopTwo } from './components/IconShopTwo' +import { IconShoppingBag } from './components/IconShoppingBag' +import { IconShoppingBasket } from './components/IconShoppingBasket' +import { IconShoppingCart } from './components/IconShoppingCart' +import { IconShortText } from './components/IconShortText' +import { IconShowChart } from './components/IconShowChart' +import { IconShuffle } from './components/IconShuffle' +import { IconShutterSpeed } from './components/IconShutterSpeed' +import { IconSick } from './components/IconSick' +import { IconSignalCellular4Bar } from './components/IconSignalCellular4Bar' +import { IconSignalCellularAlt } from './components/IconSignalCellularAlt' +import { IconSignalCellularConnectedNoInternet4Bar } from './components/IconSignalCellularConnectedNoInternet4Bar' +import { IconSignalCellularNoSim } from './components/IconSignalCellularNoSim' +import { IconSignalCellularNull } from './components/IconSignalCellularNull' +import { IconSignalCellularOff } from './components/IconSignalCellularOff' +import { IconSignalWifi4Bar } from './components/IconSignalWifi4Bar' +import { IconSignalWifi4BarLock } from './components/IconSignalWifi4BarLock' +import { IconSignalWifiOff } from './components/IconSignalWifiOff' +import { IconSimCard } from './components/IconSimCard' +import { IconSingleBed } from './components/IconSingleBed' +import { IconSkipNext } from './components/IconSkipNext' +import { IconSkipPrevious } from './components/IconSkipPrevious' +import { IconSlideshow } from './components/IconSlideshow' +import { IconSlowMotionVideo } from './components/IconSlowMotionVideo' +import { IconSmartButton } from './components/IconSmartButton' +import { IconSmartphone } from './components/IconSmartphone' +import { IconSmokeFree } from './components/IconSmokeFree' +import { IconSmokingRooms } from './components/IconSmokingRooms' +import { IconSms } from './components/IconSms' +import { IconSmsFailed } from './components/IconSmsFailed' +import { IconSnippetFolder } from './components/IconSnippetFolder' +import { IconSnooze } from './components/IconSnooze' +import { IconSoap } from './components/IconSoap' +import { IconSort } from './components/IconSort' +import { IconSortByAlpha } from './components/IconSortByAlpha' +import { IconSource } from './components/IconSource' +import { IconSouth } from './components/IconSouth' +import { IconSouthEast } from './components/IconSouthEast' +import { IconSouthWest } from './components/IconSouthWest' +import { IconSpa } from './components/IconSpa' +import { IconSpaceBar } from './components/IconSpaceBar' +import { IconSpeaker } from './components/IconSpeaker' +import { IconSpeakerGroup } from './components/IconSpeakerGroup' +import { IconSpeakerNotes } from './components/IconSpeakerNotes' +import { IconSpeakerNotesOff } from './components/IconSpeakerNotesOff' +import { IconSpeakerPhone } from './components/IconSpeakerPhone' +import { IconSpeed } from './components/IconSpeed' +import { IconSpellcheck } from './components/IconSpellcheck' +import { IconSports } from './components/IconSports' +import { IconSportsBar } from './components/IconSportsBar' +import { IconSportsBaseball } from './components/IconSportsBaseball' +import { IconSportsBasketball } from './components/IconSportsBasketball' +import { IconSportsCricket } from './components/IconSportsCricket' +import { IconSportsEsports } from './components/IconSportsEsports' +import { IconSportsFootball } from './components/IconSportsFootball' +import { IconSportsGolf } from './components/IconSportsGolf' +import { IconSportsHandball } from './components/IconSportsHandball' +import { IconSportsHockey } from './components/IconSportsHockey' +import { IconSportsKabaddi } from './components/IconSportsKabaddi' +import { IconSportsMma } from './components/IconSportsMma' +import { IconSportsMotorsports } from './components/IconSportsMotorsports' +import { IconSportsRugby } from './components/IconSportsRugby' +import { IconSportsSoccer } from './components/IconSportsSoccer' +import { IconSportsTennis } from './components/IconSportsTennis' +import { IconSportsVolleyball } from './components/IconSportsVolleyball' +import { IconSquareFoot } from './components/IconSquareFoot' +import { IconStackedLineChart } from './components/IconStackedLineChart' +import { IconStairs } from './components/IconStairs' +import { IconStar } from './components/IconStar' +import { IconStarBorder } from './components/IconStarBorder' +import { IconStarHalf } from './components/IconStarHalf' +import { IconStarOutline } from './components/IconStarOutline' +import { IconStarRate } from './components/IconStarRate' +import { IconStars } from './components/IconStars' +import { IconStayCurrentLandscape } from './components/IconStayCurrentLandscape' +import { IconStayCurrentPortrait } from './components/IconStayCurrentPortrait' +import { IconStayPrimaryLandscape } from './components/IconStayPrimaryLandscape' +import { IconStayPrimaryPortrait } from './components/IconStayPrimaryPortrait' +import { IconStickyNote2 } from './components/IconStickyNote2' +import { IconStop } from './components/IconStop' +import { IconStopCircle } from './components/IconStopCircle' +import { IconStopScreenShare } from './components/IconStopScreenShare' +import { IconStorage } from './components/IconStorage' +import { IconStore } from './components/IconStore' +import { IconStoreMallDirectory } from './components/IconStoreMallDirectory' +import { IconStorefront } from './components/IconStorefront' +import { IconStraighten } from './components/IconStraighten' +import { IconStreetview } from './components/IconStreetview' +import { IconStrikethroughS } from './components/IconStrikethroughS' +import { IconStroller } from './components/IconStroller' +import { IconStyle } from './components/IconStyle' +import { IconSubdirectoryArrowLeft } from './components/IconSubdirectoryArrowLeft' +import { IconSubdirectoryArrowRight } from './components/IconSubdirectoryArrowRight' +import { IconSubject } from './components/IconSubject' +import { IconSubscript } from './components/IconSubscript' +import { IconSubscriptions } from './components/IconSubscriptions' +import { IconSubtitles } from './components/IconSubtitles' +import { IconSubtitlesOff } from './components/IconSubtitlesOff' +import { IconSubway } from './components/IconSubway' +import { IconSuperscript } from './components/IconSuperscript' +import { IconSupervisedUserCircle } from './components/IconSupervisedUserCircle' +import { IconSupervisorAccount } from './components/IconSupervisorAccount' +import { IconSupport } from './components/IconSupport' +import { IconSupportAgent } from './components/IconSupportAgent' +import { IconSurroundSound } from './components/IconSurroundSound' +import { IconSwapCalls } from './components/IconSwapCalls' +import { IconSwapHoriz } from './components/IconSwapHoriz' +import { IconSwapHorizontalCircle } from './components/IconSwapHorizontalCircle' +import { IconSwapVert } from './components/IconSwapVert' +import { IconSwapVerticalCircle } from './components/IconSwapVerticalCircle' +import { IconSwitchCamera } from './components/IconSwitchCamera' +import { IconSwitchLeft } from './components/IconSwitchLeft' +import { IconSwitchRight } from './components/IconSwitchRight' +import { IconSwitchVideo } from './components/IconSwitchVideo' +import { IconSync } from './components/IconSync' +import { IconSyncAlt } from './components/IconSyncAlt' +import { IconSyncDisabled } from './components/IconSyncDisabled' +import { IconSyncProblem } from './components/IconSyncProblem' +import { IconSystemUpdate } from './components/IconSystemUpdate' +import { IconSystemUpdateAlt } from './components/IconSystemUpdateAlt' +import { IconTab } from './components/IconTab' +import { IconTabUnselected } from './components/IconTabUnselected' +import { IconTableChart } from './components/IconTableChart' +import { IconTableRows } from './components/IconTableRows' +import { IconTableView } from './components/IconTableView' +import { IconTablet } from './components/IconTablet' +import { IconTabletAndroid } from './components/IconTabletAndroid' +import { IconTabletMac } from './components/IconTabletMac' +import { IconTagFaces } from './components/IconTagFaces' +import { IconTapAndPlay } from './components/IconTapAndPlay' +import { IconTapas } from './components/IconTapas' +import { IconTerrain } from './components/IconTerrain' +import { IconTextFields } from './components/IconTextFields' +import { IconTextFormat } from './components/IconTextFormat' +import { IconTextRotateUp } from './components/IconTextRotateUp' +import { IconTextRotateVertical } from './components/IconTextRotateVertical' +import { IconTextRotationAngledown } from './components/IconTextRotationAngledown' +import { IconTextRotationAngleup } from './components/IconTextRotationAngleup' +import { IconTextRotationDown } from './components/IconTextRotationDown' +import { IconTextRotationNone } from './components/IconTextRotationNone' +import { IconTextSnippet } from './components/IconTextSnippet' +import { IconTextsms } from './components/IconTextsms' +import { IconTexture } from './components/IconTexture' +import { IconTheaters } from './components/IconTheaters' +import { IconThumbDown } from './components/IconThumbDown' +import { IconThumbDownAlt } from './components/IconThumbDownAlt' +import { IconThumbUp } from './components/IconThumbUp' +import { IconThumbUpAlt } from './components/IconThumbUpAlt' +import { IconThumbsUpDown } from './components/IconThumbsUpDown' +import { IconTimeToLeave } from './components/IconTimeToLeave' +import { IconTimelapse } from './components/IconTimelapse' +import { IconTimeline } from './components/IconTimeline' +import { IconTimer } from './components/IconTimer' +import { IconTimer10 } from './components/IconTimer10' +import { IconTimer3 } from './components/IconTimer3' +import { IconTimerOff } from './components/IconTimerOff' +import { IconTitle } from './components/IconTitle' +import { IconToc } from './components/IconToc' +import { IconToday } from './components/IconToday' +import { IconToggleOff } from './components/IconToggleOff' +import { IconToggleOn } from './components/IconToggleOn' +import { IconToll } from './components/IconToll' +import { IconTonality } from './components/IconTonality' +import { IconTopic } from './components/IconTopic' +import { IconTouchApp } from './components/IconTouchApp' +import { IconTour } from './components/IconTour' +import { IconToys } from './components/IconToys' +import { IconTrackChanges } from './components/IconTrackChanges' +import { IconTraffic } from './components/IconTraffic' +import { IconTrain } from './components/IconTrain' +import { IconTram } from './components/IconTram' +import { IconTransferWithinAStation } from './components/IconTransferWithinAStation' +import { IconTransform } from './components/IconTransform' +import { IconTransitEnterexit } from './components/IconTransitEnterexit' +import { IconTranslate } from './components/IconTranslate' +import { IconTrendingDown } from './components/IconTrendingDown' +import { IconTrendingFlat } from './components/IconTrendingFlat' +import { IconTrendingUp } from './components/IconTrendingUp' +import { IconTripOrigin } from './components/IconTripOrigin' +import { IconTty } from './components/IconTty' +import { IconTune } from './components/IconTune' +import { IconTurnedIn } from './components/IconTurnedIn' +import { IconTurnedInNot } from './components/IconTurnedInNot' +import { IconTv } from './components/IconTv' +import { IconTvOff } from './components/IconTvOff' +import { IconTwoWheeler } from './components/IconTwoWheeler' +import { IconUmbrella } from './components/IconUmbrella' +import { IconUnarchive } from './components/IconUnarchive' +import { IconUndo } from './components/IconUndo' +import { IconUnfoldLess } from './components/IconUnfoldLess' +import { IconUnfoldMore } from './components/IconUnfoldMore' +import { IconUnpublished } from './components/IconUnpublished' +import { IconUnsubscribe } from './components/IconUnsubscribe' +import { IconUpdate } from './components/IconUpdate' +import { IconUpdateDisabled } from './components/IconUpdateDisabled' +import { IconUpgrade } from './components/IconUpgrade' +import { IconUsb } from './components/IconUsb' +import { IconVerified } from './components/IconVerified' +import { IconVerifiedUser } from './components/IconVerifiedUser' +import { IconVerticalAlignBottom } from './components/IconVerticalAlignBottom' +import { IconVerticalAlignCenter } from './components/IconVerticalAlignCenter' +import { IconVerticalAlignTop } from './components/IconVerticalAlignTop' +import { IconVerticalDistribute } from './components/IconVerticalDistribute' +import { IconVerticalSplit } from './components/IconVerticalSplit' +import { IconVibration } from './components/IconVibration' +import { IconVideoCall } from './components/IconVideoCall' +import { IconVideoLabel } from './components/IconVideoLabel' +import { IconVideoLibrary } from './components/IconVideoLibrary' +import { IconVideoSettings } from './components/IconVideoSettings' +import { IconVideocam } from './components/IconVideocam' +import { IconVideocamOff } from './components/IconVideocamOff' +import { IconVideogameAsset } from './components/IconVideogameAsset' +import { IconViewAgenda } from './components/IconViewAgenda' +import { IconViewArray } from './components/IconViewArray' +import { IconViewCarousel } from './components/IconViewCarousel' +import { IconViewColumn } from './components/IconViewColumn' +import { IconViewComfy } from './components/IconViewComfy' +import { IconViewCompact } from './components/IconViewCompact' +import { IconViewDay } from './components/IconViewDay' +import { IconViewHeadline } from './components/IconViewHeadline' +import { IconViewList } from './components/IconViewList' +import { IconViewModule } from './components/IconViewModule' +import { IconViewQuilt } from './components/IconViewQuilt' +import { IconViewSidebar } from './components/IconViewSidebar' +import { IconViewStream } from './components/IconViewStream' +import { IconViewWeek } from './components/IconViewWeek' +import { IconVignette } from './components/IconVignette' +import { IconVisibility } from './components/IconVisibility' +import { IconVisibilityOff } from './components/IconVisibilityOff' +import { IconVoiceChat } from './components/IconVoiceChat' +import { IconVoiceOverOff } from './components/IconVoiceOverOff' +import { IconVoicemail } from './components/IconVoicemail' +import { IconVolumeDown } from './components/IconVolumeDown' +import { IconVolumeMute } from './components/IconVolumeMute' +import { IconVolumeOff } from './components/IconVolumeOff' +import { IconVolumeUp } from './components/IconVolumeUp' +import { IconVpnKey } from './components/IconVpnKey' +import { IconVpnLock } from './components/IconVpnLock' +import { IconWallpaper } from './components/IconWallpaper' +import { IconWarning } from './components/IconWarning' +import { IconWash } from './components/IconWash' +import { IconWatch } from './components/IconWatch' +import { IconWatchLater } from './components/IconWatchLater' +import { IconWaterDamage } from './components/IconWaterDamage' +import { IconWaves } from './components/IconWaves' +import { IconWbAuto } from './components/IconWbAuto' +import { IconWbCloudy } from './components/IconWbCloudy' +import { IconWbIncandescent } from './components/IconWbIncandescent' +import { IconWbIridescent } from './components/IconWbIridescent' +import { IconWbSunny } from './components/IconWbSunny' +import { IconWc } from './components/IconWc' +import { IconWeb } from './components/IconWeb' +import { IconWebAsset } from './components/IconWebAsset' +import { IconWeekend } from './components/IconWeekend' +import { IconWest } from './components/IconWest' +import { IconWhatshot } from './components/IconWhatshot' +import { IconWheelchairPickup } from './components/IconWheelchairPickup' +import { IconWhereToVote } from './components/IconWhereToVote' +import { IconWidgets } from './components/IconWidgets' +import { IconWifi } from './components/IconWifi' +import { IconWifiCalling } from './components/IconWifiCalling' +import { IconWifiLock } from './components/IconWifiLock' +import { IconWifiOff } from './components/IconWifiOff' +import { IconWifiProtectedSetup } from './components/IconWifiProtectedSetup' +import { IconWifiTethering } from './components/IconWifiTethering' +import { IconWineBar } from './components/IconWineBar' +import { IconWork } from './components/IconWork' +import { IconWorkOff } from './components/IconWorkOff' +import { IconWorkOutline } from './components/IconWorkOutline' +import { IconWrapText } from './components/IconWrapText' +import { IconWrongLocation } from './components/IconWrongLocation' +import { IconWysiwyg } from './components/IconWysiwyg' +import { IconYoutubeSearchedFor } from './components/IconYoutubeSearchedFor' +import { IconZoomIn } from './components/IconZoomIn' +import { IconZoomOut } from './components/IconZoomOut' +import { IconZoomOutMap } from './components/IconZoomOutMap' + +export { + Icon360, + Icon3dRotation, + Icon4k, + Icon5g, + Icon6FtApart, + IconAcUnit, + IconAccessAlarm, + IconAccessAlarms, + IconAccessTime, + IconAccessibility, + IconAccessibilityNew, + IconAccessible, + IconAccessibleForward, + IconAccountBalance, + IconAccountBalanceWallet, + IconAccountBox, + IconAccountCircle, + IconAccountTree, + IconAdUnits, + IconAdb, + IconAdd, + IconAddAPhoto, + IconAddAlarm, + IconAddAlert, + IconAddBox, + IconAddBusiness, + IconAddCircle, + IconAddCircleOutline, + IconAddComment, + IconAddIcCall, + IconAddLocation, + IconAddLocationAlt, + IconAddPhotoAlternate, + IconAddRoad, + IconAddShoppingCart, + IconAddTask, + IconAddToHomeScreen, + IconAddToPhotos, + IconAddToQueue, + IconAddchart, + IconAdjust, + IconAdminPanelSettings, + IconAgriculture, + IconAirlineSeatFlat, + IconAirlineSeatFlatAngled, + IconAirlineSeatIndividualSuite, + IconAirlineSeatLegroomExtra, + IconAirlineSeatLegroomNormal, + IconAirlineSeatLegroomReduced, + IconAirlineSeatReclineExtra, + IconAirlineSeatReclineNormal, + IconAirplanemodeActive, + IconAirplanemodeInactive, + IconAirplay, + IconAirportShuttle, + IconAlarm, + IconAlarmAdd, + IconAlarmOff, + IconAlarmOn, + IconAlbum, + IconAlignHorizontalCenter, + IconAlignHorizontalLeft, + IconAlignHorizontalRight, + IconAlignVerticalBottom, + IconAlignVerticalCenter, + IconAlignVerticalTop, + IconAllInbox, + IconAllInclusive, + IconAllOut, + IconAltRoute, + IconAlternateEmail, + IconAmpStories, + IconAnalytics, + IconAnchor, + IconAndroid, + IconAnnouncement, + IconApartment, + IconApi, + IconAppBlocking, + IconAppSettingsAlt, + IconApps, + IconArchitecture, + IconArchive, + IconArrowBack, + IconArrowBackIos, + IconArrowCircleDown, + IconArrowCircleUp, + IconArrowDownward, + IconArrowDropDown, + IconArrowDropDownCircle, + IconArrowDropUp, + IconArrowForward, + IconArrowForwardIos, + IconArrowLeft, + IconArrowRight, + IconArrowRightAlt, + IconArrowUpward, + IconArtTrack, + IconArticle, + IconAspectRatio, + IconAssessment, + IconAssignment, + IconAssignmentInd, + IconAssignmentLate, + IconAssignmentReturn, + IconAssignmentReturned, + IconAssignmentTurnedIn, + IconAssistant, + IconAssistantPhoto, + IconAtm, + IconAttachEmail, + IconAttachFile, + IconAttachMoney, + IconAttachment, + IconAudiotrack, + IconAutoDelete, + IconAutorenew, + IconAvTimer, + IconBabyChangingStation, + IconBackpack, + IconBackspace, + IconBackup, + IconBackupTable, + IconBallot, + IconBarChart, + IconBatchPrediction, + IconBathtub, + IconBatteryAlert, + IconBatteryChargingFull, + IconBatteryFull, + IconBatteryStd, + IconBatteryUnknown, + IconBeachAccess, + IconBedtime, + IconBeenhere, + IconBento, + IconBikeScooter, + IconBiotech, + IconBlock, + IconBluetooth, + IconBluetoothAudio, + IconBluetoothConnected, + IconBluetoothDisabled, + IconBluetoothSearching, + IconBlurCircular, + IconBlurLinear, + IconBlurOff, + IconBlurOn, + IconBook, + IconBookOnline, + IconBookmark, + IconBookmarkBorder, + IconBookmarks, + IconBorderAll, + IconBorderBottom, + IconBorderClear, + IconBorderHorizontal, + IconBorderInner, + IconBorderLeft, + IconBorderOuter, + IconBorderRight, + IconBorderStyle, + IconBorderTop, + IconBorderVertical, + IconBrandingWatermark, + IconBrightness1, + IconBrightness2, + IconBrightness3, + IconBrightness4, + IconBrightness5, + IconBrightness6, + IconBrightness7, + IconBrightnessAuto, + IconBrightnessHigh, + IconBrightnessLow, + IconBrightnessMedium, + IconBrokenImage, + IconBrowserNotSupported, + IconBrush, + IconBubbleChart, + IconBugReport, + IconBuild, + IconBuildCircle, + IconBurstMode, + IconBusiness, + IconBusinessCenter, + IconCached, + IconCake, + IconCalculate, + IconCalendarToday, + IconCalendarViewDay, + IconCall, + IconCallEnd, + IconCallMade, + IconCallMerge, + IconCallMissed, + IconCallMissedOutgoing, + IconCallReceived, + IconCallSplit, + IconCallToAction, + IconCamera, + IconCameraAlt, + IconCameraEnhance, + IconCameraFront, + IconCameraRear, + IconCameraRoll, + IconCampaign, + IconCancel, + IconCancelPresentation, + IconCancelScheduleSend, + IconCardGiftcard, + IconCardMembership, + IconCardTravel, + IconCarpenter, + IconCasino, + IconCast, + IconCastConnected, + IconCastForEducation, + IconCategory, + IconCenterFocusStrong, + IconCenterFocusWeak, + IconChangeHistory, + IconChargingStation, + IconChat, + IconChatBubble, + IconChatBubbleOutline, + IconCheck, + IconCheckBox, + IconCheckBoxOutlineBlank, + IconCheckCircle, + IconCheckCircleOutline, + IconCheckroom, + IconChevronLeft, + IconChevronRight, + IconChildCare, + IconChildFriendly, + IconChromeReaderMode, + IconClass, + IconCleanHands, + IconCleaningServices, + IconClear, + IconClearAll, + IconClose, + IconCloseFullscreen, + IconClosedCaption, + IconClosedCaptionDisabled, + IconCloud, + IconCloudCircle, + IconCloudDone, + IconCloudDownload, + IconCloudOff, + IconCloudQueue, + IconCloudUpload, + IconCode, + IconCollections, + IconCollectionsBookmark, + IconColorLens, + IconColorize, + IconComment, + IconCommentBank, + IconCommute, + IconCompare, + IconCompareArrows, + IconCompassCalibration, + IconComputer, + IconConfirmationNumber, + IconConnectWithoutContact, + IconConstruction, + IconContactMail, + IconContactPage, + IconContactPhone, + IconContactSupport, + IconContactless, + IconContacts, + IconContentCopy, + IconContentCut, + IconContentPaste, + IconControlCamera, + IconControlPoint, + IconControlPointDuplicate, + IconCopyright, + IconCoronavirus, + IconCorporateFare, + IconCountertops, + IconCreate, + IconCreateNewFolder, + IconCreditCard, + IconCrop, + IconCrop169, + IconCrop32, + IconCrop54, + IconCrop75, + IconCropDin, + IconCropFree, + IconCropLandscape, + IconCropOriginal, + IconCropPortrait, + IconCropRotate, + IconCropSquare, + IconDashboard, + IconDataUsage, + IconDateRange, + IconDeck, + IconDehaze, + IconDelete, + IconDeleteForever, + IconDeleteOutline, + IconDeleteSweep, + IconDepartureBoard, + IconDescription, + IconDesignServices, + IconDesktopAccessDisabled, + IconDesktopMac, + IconDesktopWindows, + IconDetails, + IconDeveloperBoard, + IconDeveloperMode, + IconDeviceHub, + IconDeviceUnknown, + IconDevices, + IconDevicesOther, + IconDialerSip, + IconDialpad, + IconDirections, + IconDirectionsBike, + IconDirectionsBoat, + IconDirectionsBus, + IconDirectionsCar, + IconDirectionsOff, + IconDirectionsRailway, + IconDirectionsRun, + IconDirectionsSubway, + IconDirectionsTransit, + IconDirectionsWalk, + IconDisabledByDefault, + IconDiscFull, + IconDns, + IconDoNotStep, + IconDoNotTouch, + IconDock, + IconDomain, + IconDomainDisabled, + IconDomainVerification, + IconDone, + IconDoneAll, + IconDoneOutline, + IconDonutLarge, + IconDonutSmall, + IconDoubleArrow, + IconDrafts, + IconDragHandle, + IconDragIndicator, + IconDriveEta, + IconDry, + IconDuo, + IconDvr, + IconDynamicFeed, + IconDynamicForm, + IconEast, + IconEco, + IconEdit, + IconEditAttributes, + IconEditLocation, + IconEditRoad, + IconEject, + IconElderly, + IconElectricBike, + IconElectricCar, + IconElectricMoped, + IconElectricScooter, + IconElectricalServices, + IconElevator, + IconEmail, + IconEmojiEmotions, + IconEmojiEvents, + IconEmojiFlags, + IconEmojiFoodBeverage, + IconEmojiNature, + IconEmojiObjects, + IconEmojiPeople, + IconEmojiSymbols, + IconEmojiTransportation, + IconEngineering, + IconEnhancedEncryption, + IconEqualizer, + IconError, + IconErrorOutline, + IconEscalator, + IconEscalatorWarning, + IconEuro, + IconEuroSymbol, + IconEvStation, + IconEvent, + IconEventAvailable, + IconEventBusy, + IconEventNote, + IconEventSeat, + IconExitToApp, + IconExpandLess, + IconExpandMore, + IconExplicit, + IconExplore, + IconExploreOff, + IconExposure, + IconExposureNeg1, + IconExposureNeg2, + IconExposurePlus1, + IconExposurePlus2, + IconExposureZero, + IconExtension, + IconFace, + IconFacebook, + IconFactCheck, + IconFamilyRestroom, + IconFastForward, + IconFastRewind, + IconFastfood, + IconFavorite, + IconFavoriteBorder, + IconFeaturedPlayList, + IconFeaturedVideo, + IconFeedback, + IconFence, + IconFiberDvr, + IconFiberManualRecord, + IconFiberNew, + IconFiberPin, + IconFiberSmartRecord, + IconFileCopy, + IconFilter, + IconFilter1, + IconFilter2, + IconFilter3, + IconFilter4, + IconFilter5, + IconFilter6, + IconFilter7, + IconFilter8, + IconFilter9, + IconFilter9Plus, + IconFilterAlt, + IconFilterBAndW, + IconFilterCenterFocus, + IconFilterDrama, + IconFilterFrames, + IconFilterHdr, + IconFilterList, + IconFilterNone, + IconFilterTiltShift, + IconFilterVintage, + IconFindInPage, + IconFindReplace, + IconFingerprint, + IconFireExtinguisher, + IconFireplace, + IconFirstPage, + IconFitnessCenter, + IconFlag, + IconFlaky, + IconFlare, + IconFlashAuto, + IconFlashOff, + IconFlashOn, + IconFlight, + IconFlightLand, + IconFlightTakeoff, + IconFlip, + IconFlipCameraAndroid, + IconFlipCameraIos, + IconFlipToBack, + IconFlipToFront, + IconFolder, + IconFolderOpen, + IconFolderShared, + IconFolderSpecial, + IconFollowTheSigns, + IconFontDownload, + IconFoodBank, + IconFormatAlignCenter, + IconFormatAlignJustify, + IconFormatAlignLeft, + IconFormatAlignRight, + IconFormatBold, + IconFormatClear, + IconFormatColorReset, + IconFormatIndentDecrease, + IconFormatIndentIncrease, + IconFormatItalic, + IconFormatLineSpacing, + IconFormatListBulleted, + IconFormatListNumbered, + IconFormatListNumberedRtl, + IconFormatPaint, + IconFormatQuote, + IconFormatShapes, + IconFormatSize, + IconFormatStrikethrough, + IconFormatTextdirectionLToR, + IconFormatTextdirectionRToL, + IconFormatUnderlined, + IconForum, + IconForward, + IconForward10, + IconForward30, + IconForward5, + IconForwardToInbox, + IconFoundation, + IconFreeBreakfast, + IconFullscreen, + IconFullscreenExit, + IconFunctions, + IconGTranslate, + IconGamepad, + IconGames, + IconGavel, + IconGesture, + IconGetApp, + IconGif, + IconGolfCourse, + IconGpsFixed, + IconGpsNotFixed, + IconGpsOff, + IconGrade, + IconGradient, + IconGrading, + IconGrain, + IconGraphicEq, + IconGrass, + IconGridOff, + IconGridOn, + IconGroup, + IconGroupAdd, + IconGroupWork, + IconGroups, + IconHandyman, + IconHd, + IconHdrOff, + IconHdrOn, + IconHdrStrong, + IconHdrWeak, + IconHeadset, + IconHeadsetMic, + IconHealing, + IconHearing, + IconHearingDisabled, + IconHeight, + IconHelp, + IconHelpCenter, + IconHelpOutline, + IconHighQuality, + IconHighlight, + IconHighlightAlt, + IconHighlightOff, + IconHistory, + IconHistoryEdu, + IconHistoryToggleOff, + IconHome, + IconHomeRepairService, + IconHomeWork, + IconHorizontalDistribute, + IconHorizontalRule, + IconHorizontalSplit, + IconHotTub, + IconHotel, + IconHourglassBottom, + IconHourglassDisabled, + IconHourglassEmpty, + IconHourglassFull, + IconHourglassTop, + IconHouse, + IconHouseSiding, + IconHowToReg, + IconHowToVote, + IconHttp, + IconHttps, + IconHvac, + IconImage, + IconImageAspectRatio, + IconImageNotSupported, + IconImageSearch, + IconImportContacts, + IconImportExport, + IconImportantDevices, + IconInbox, + IconIndeterminateCheckBox, + IconInfo, + IconInput, + IconInsertChart, + IconInsertChartOutlined, + IconInsertComment, + IconInsertDriveFile, + IconInsertEmoticon, + IconInsertInvitation, + IconInsertLink, + IconInsertPhoto, + IconInsights, + IconIntegrationInstructions, + IconInvertColors, + IconInvertColorsOff, + IconIso, + IconKeyboard, + IconKeyboardArrowDown, + IconKeyboardArrowLeft, + IconKeyboardArrowRight, + IconKeyboardArrowUp, + IconKeyboardBackspace, + IconKeyboardCapslock, + IconKeyboardHide, + IconKeyboardReturn, + IconKeyboardTab, + IconKeyboardVoice, + IconKingBed, + IconKitchen, + IconLabel, + IconLabelImportant, + IconLabelOff, + IconLandscape, + IconLanguage, + IconLaptop, + IconLaptopChromebook, + IconLaptopMac, + IconLaptopWindows, + IconLastPage, + IconLaunch, + IconLayers, + IconLayersClear, + IconLeaderboard, + IconLeakAdd, + IconLeakRemove, + IconLegendToggle, + IconLens, + IconLibraryAdd, + IconLibraryAddCheck, + IconLibraryBooks, + IconLibraryMusic, + IconLineStyle, + IconLineWeight, + IconLinearScale, + IconLink, + IconLinkOff, + IconLinkedCamera, + IconList, + IconListAlt, + IconLiveHelp, + IconLiveTv, + IconLocalActivity, + IconLocalAirport, + IconLocalAtm, + IconLocalBar, + IconLocalCafe, + IconLocalCarWash, + IconLocalConvenienceStore, + IconLocalDining, + IconLocalDrink, + IconLocalFireDepartment, + IconLocalFlorist, + IconLocalGasStation, + IconLocalGroceryStore, + IconLocalHospital, + IconLocalHotel, + IconLocalLaundryService, + IconLocalLibrary, + IconLocalMall, + IconLocalMovies, + IconLocalOffer, + IconLocalParking, + IconLocalPharmacy, + IconLocalPhone, + IconLocalPizza, + IconLocalPlay, + IconLocalPolice, + IconLocalPostOffice, + IconLocalPrintshop, + IconLocalSee, + IconLocalShipping, + IconLocalTaxi, + IconLocationCity, + IconLocationDisabled, + IconLocationOff, + IconLocationOn, + IconLocationSearching, + IconLock, + IconLockOpen, + IconLogin, + IconLooks, + IconLooks3, + IconLooks4, + IconLooks5, + IconLooks6, + IconLooksOne, + IconLooksTwo, + IconLoop, + IconLoupe, + IconLowPriority, + IconLoyalty, + IconLuggage, + IconMail, + IconMailOutline, + IconMap, + IconMapsUgc, + IconMarkChatRead, + IconMarkChatUnread, + IconMarkEmailRead, + IconMarkEmailUnread, + IconMarkunread, + IconMarkunreadMailbox, + IconMasks, + IconMaximize, + IconMediation, + IconMedicalServices, + IconMeetingRoom, + IconMemory, + IconMenu, + IconMenuBook, + IconMenuOpen, + IconMergeType, + IconMessage, + IconMic, + IconMicNone, + IconMicOff, + IconMicrowave, + IconMilitaryTech, + IconMinimize, + IconMiscellaneousServices, + IconMissedVideoCall, + IconMms, + IconMobileFriendly, + IconMobileOff, + IconMobileScreenShare, + IconModeComment, + IconModelTraining, + IconMonetizationOn, + IconMoney, + IconMoneyOff, + IconMonochromePhotos, + IconMood, + IconMoodBad, + IconMoped, + IconMore, + IconMoreHoriz, + IconMoreTime, + IconMoreVert, + IconMotionPhotosOn, + IconMotionPhotosPause, + IconMotionPhotosPaused, + IconMouse, + IconMoveToInbox, + IconMovie, + IconMovieCreation, + IconMovieFilter, + IconMultilineChart, + IconMultipleStop, + IconMuseum, + IconMusicNote, + IconMusicOff, + IconMusicVideo, + IconMyLocation, + IconNat, + IconNature, + IconNaturePeople, + IconNavigateBefore, + IconNavigateNext, + IconNavigation, + IconNearMe, + IconNearMeDisabled, + IconNetworkCheck, + IconNetworkLocked, + IconNewReleases, + IconNextPlan, + IconNextWeek, + IconNfc, + IconNightShelter, + IconNightsStay, + IconNoBackpack, + IconNoCell, + IconNoDrinks, + IconNoEncryption, + IconNoFlash, + IconNoFood, + IconNoLuggage, + IconNoMeals, + IconNoMeetingRoom, + IconNoPhotography, + IconNoSim, + IconNoStroller, + IconNoTransfer, + IconNorth, + IconNorthEast, + IconNorthWest, + IconNotAccessible, + IconNotInterested, + IconNotListedLocation, + IconNotStarted, + IconNote, + IconNoteAdd, + IconNotes, + IconNotificationImportant, + IconNotifications, + IconNotificationsActive, + IconNotificationsNone, + IconNotificationsOff, + IconNotificationsPaused, + IconOfflineBolt, + IconOfflinePin, + IconOndemandVideo, + IconOnlinePrediction, + IconOpacity, + IconOpenInBrowser, + IconOpenInFull, + IconOpenInNew, + IconOpenWith, + IconOutbond, + IconOutdoorGrill, + IconOutlet, + IconOutlinedFlag, + IconPages, + IconPageview, + IconPalette, + IconPanTool, + IconPanorama, + IconPanoramaFishEye, + IconPanoramaHorizontal, + IconPanoramaVertical, + IconPanoramaWideAngle, + IconPartyMode, + IconPause, + IconPauseCircleFilled, + IconPauseCircleOutline, + IconPausePresentation, + IconPayment, + IconPayments, + IconPedalBike, + IconPending, + IconPendingActions, + IconPeople, + IconPeopleAlt, + IconPeopleOutline, + IconPermCameraMic, + IconPermContactCalendar, + IconPermDataSetting, + IconPermDeviceInformation, + IconPermIdentity, + IconPermMedia, + IconPermPhoneMsg, + IconPermScanWifi, + IconPerson, + IconPersonAdd, + IconPersonAddAlt1, + IconPersonAddDisabled, + IconPersonOutline, + IconPersonPin, + IconPersonPinCircle, + IconPersonRemove, + IconPersonRemoveAlt1, + IconPersonSearch, + IconPersonalVideo, + IconPestControl, + IconPestControlRodent, + IconPets, + IconPhone, + IconPhoneAndroid, + IconPhoneBluetoothSpeaker, + IconPhoneCallback, + IconPhoneDisabled, + IconPhoneEnabled, + IconPhoneForwarded, + IconPhoneInTalk, + IconPhoneIphone, + IconPhoneLocked, + IconPhoneMissed, + IconPhonePaused, + IconPhonelink, + IconPhonelinkErase, + IconPhonelinkLock, + IconPhonelinkOff, + IconPhonelinkRing, + IconPhonelinkSetup, + IconPhoto, + IconPhotoAlbum, + IconPhotoCamera, + IconPhotoFilter, + IconPhotoLibrary, + IconPhotoSizeSelectActual, + IconPhotoSizeSelectLarge, + IconPhotoSizeSelectSmall, + IconPictureAsPdf, + IconPictureInPicture, + IconPictureInPictureAlt, + IconPieChart, + IconPinDrop, + IconPlace, + IconPlagiarism, + IconPlayArrow, + IconPlayCircleFilled, + IconPlayCircleOutline, + IconPlayForWork, + IconPlaylistAdd, + IconPlaylistAddCheck, + IconPlaylistPlay, + IconPlumbing, + IconPlusOne, + IconPointOfSale, + IconPolicy, + IconPoll, + IconPolymer, + IconPool, + IconPortableWifiOff, + IconPortrait, + IconPostAdd, + IconPower, + IconPowerInput, + IconPowerOff, + IconPowerSettingsNew, + IconPregnantWoman, + IconPresentToAll, + IconPreview, + IconPrint, + IconPrintDisabled, + IconPriorityHigh, + IconPrivacyTip, + IconPsychology, + IconPublic, + IconPublicOff, + IconPublish, + IconPublishedWithChanges, + IconPushPin, + IconQrCode, + IconQrCode2, + IconQrCodeScanner, + IconQueryBuilder, + IconQuestionAnswer, + IconQueue, + IconQueueMusic, + IconQueuePlayNext, + IconQuickreply, + IconRadio, + IconRadioButtonChecked, + IconRadioButtonUnchecked, + IconRateReview, + IconReadMore, + IconReceipt, + IconReceiptLong, + IconRecentActors, + IconRecordVoiceOver, + IconRedeem, + IconRedo, + IconReduceCapacity, + IconRefresh, + IconRemove, + IconRemoveCircle, + IconRemoveCircleOutline, + IconRemoveFromQueue, + IconRemoveRedEye, + IconRemoveShoppingCart, + IconReorder, + IconRepeat, + IconRepeatOne, + IconReplay, + IconReplay10, + IconReplay30, + IconReplay5, + IconReply, + IconReplyAll, + IconReport, + IconReportOff, + IconReportProblem, + IconRequestPage, + IconRequestQuote, + IconRestaurant, + IconRestaurantMenu, + IconRestore, + IconRestoreFromTrash, + IconRestorePage, + IconRiceBowl, + IconRingVolume, + IconRoofing, + IconRoom, + IconRoomPreferences, + IconRoomService, + IconRotate90DegreesCcw, + IconRotateLeft, + IconRotateRight, + IconRoundedCorner, + IconRouter, + IconRowing, + IconRssFeed, + IconRule, + IconRuleFolder, + IconRunCircle, + IconRvHookup, + IconSanitizer, + IconSatellite, + IconSave, + IconSaveAlt, + IconScanner, + IconScatterPlot, + IconSchedule, + IconSchool, + IconScience, + IconScore, + IconScreenLockLandscape, + IconScreenLockPortrait, + IconScreenLockRotation, + IconScreenRotation, + IconScreenShare, + IconSdCard, + IconSdStorage, + IconSearch, + IconSearchOff, + IconSecurity, + IconSelectAll, + IconSelfImprovement, + IconSend, + IconSensorDoor, + IconSensorWindow, + IconSentimentDissatisfied, + IconSentimentSatisfied, + IconSentimentSatisfiedAlt, + IconSentimentVeryDissatisfied, + IconSentimentVerySatisfied, + IconSetMeal, + IconSettings, + IconSettingsApplications, + IconSettingsBackupRestore, + IconSettingsBluetooth, + IconSettingsBrightness, + IconSettingsCell, + IconSettingsEthernet, + IconSettingsInputAntenna, + IconSettingsInputComponent, + IconSettingsInputComposite, + IconSettingsInputHdmi, + IconSettingsInputSvideo, + IconSettingsOverscan, + IconSettingsPhone, + IconSettingsPower, + IconSettingsRemote, + IconSettingsSystemDaydream, + IconSettingsVoice, + IconShare, + IconShop, + IconShopTwo, + IconShoppingBag, + IconShoppingBasket, + IconShoppingCart, + IconShortText, + IconShowChart, + IconShuffle, + IconShutterSpeed, + IconSick, + IconSignalCellular4Bar, + IconSignalCellularAlt, + IconSignalCellularConnectedNoInternet4Bar, + IconSignalCellularNoSim, + IconSignalCellularNull, + IconSignalCellularOff, + IconSignalWifi4Bar, + IconSignalWifi4BarLock, + IconSignalWifiOff, + IconSimCard, + IconSingleBed, + IconSkipNext, + IconSkipPrevious, + IconSlideshow, + IconSlowMotionVideo, + IconSmartButton, + IconSmartphone, + IconSmokeFree, + IconSmokingRooms, + IconSms, + IconSmsFailed, + IconSnippetFolder, + IconSnooze, + IconSoap, + IconSort, + IconSortByAlpha, + IconSource, + IconSouth, + IconSouthEast, + IconSouthWest, + IconSpa, + IconSpaceBar, + IconSpeaker, + IconSpeakerGroup, + IconSpeakerNotes, + IconSpeakerNotesOff, + IconSpeakerPhone, + IconSpeed, + IconSpellcheck, + IconSports, + IconSportsBar, + IconSportsBaseball, + IconSportsBasketball, + IconSportsCricket, + IconSportsEsports, + IconSportsFootball, + IconSportsGolf, + IconSportsHandball, + IconSportsHockey, + IconSportsKabaddi, + IconSportsMma, + IconSportsMotorsports, + IconSportsRugby, + IconSportsSoccer, + IconSportsTennis, + IconSportsVolleyball, + IconSquareFoot, + IconStackedLineChart, + IconStairs, + IconStar, + IconStarBorder, + IconStarHalf, + IconStarOutline, + IconStarRate, + IconStars, + IconStayCurrentLandscape, + IconStayCurrentPortrait, + IconStayPrimaryLandscape, + IconStayPrimaryPortrait, + IconStickyNote2, + IconStop, + IconStopCircle, + IconStopScreenShare, + IconStorage, + IconStore, + IconStoreMallDirectory, + IconStorefront, + IconStraighten, + IconStreetview, + IconStrikethroughS, + IconStroller, + IconStyle, + IconSubdirectoryArrowLeft, + IconSubdirectoryArrowRight, + IconSubject, + IconSubscript, + IconSubscriptions, + IconSubtitles, + IconSubtitlesOff, + IconSubway, + IconSuperscript, + IconSupervisedUserCircle, + IconSupervisorAccount, + IconSupport, + IconSupportAgent, + IconSurroundSound, + IconSwapCalls, + IconSwapHoriz, + IconSwapHorizontalCircle, + IconSwapVert, + IconSwapVerticalCircle, + IconSwitchCamera, + IconSwitchLeft, + IconSwitchRight, + IconSwitchVideo, + IconSync, + IconSyncAlt, + IconSyncDisabled, + IconSyncProblem, + IconSystemUpdate, + IconSystemUpdateAlt, + IconTab, + IconTabUnselected, + IconTableChart, + IconTableRows, + IconTableView, + IconTablet, + IconTabletAndroid, + IconTabletMac, + IconTagFaces, + IconTapAndPlay, + IconTapas, + IconTerrain, + IconTextFields, + IconTextFormat, + IconTextRotateUp, + IconTextRotateVertical, + IconTextRotationAngledown, + IconTextRotationAngleup, + IconTextRotationDown, + IconTextRotationNone, + IconTextSnippet, + IconTextsms, + IconTexture, + IconTheaters, + IconThumbDown, + IconThumbDownAlt, + IconThumbUp, + IconThumbUpAlt, + IconThumbsUpDown, + IconTimeToLeave, + IconTimelapse, + IconTimeline, + IconTimer, + IconTimer10, + IconTimer3, + IconTimerOff, + IconTitle, + IconToc, + IconToday, + IconToggleOff, + IconToggleOn, + IconToll, + IconTonality, + IconTopic, + IconTouchApp, + IconTour, + IconToys, + IconTrackChanges, + IconTraffic, + IconTrain, + IconTram, + IconTransferWithinAStation, + IconTransform, + IconTransitEnterexit, + IconTranslate, + IconTrendingDown, + IconTrendingFlat, + IconTrendingUp, + IconTripOrigin, + IconTty, + IconTune, + IconTurnedIn, + IconTurnedInNot, + IconTv, + IconTvOff, + IconTwoWheeler, + IconUmbrella, + IconUnarchive, + IconUndo, + IconUnfoldLess, + IconUnfoldMore, + IconUnpublished, + IconUnsubscribe, + IconUpdate, + IconUpdateDisabled, + IconUpgrade, + IconUsb, + IconVerified, + IconVerifiedUser, + IconVerticalAlignBottom, + IconVerticalAlignCenter, + IconVerticalAlignTop, + IconVerticalDistribute, + IconVerticalSplit, + IconVibration, + IconVideoCall, + IconVideoLabel, + IconVideoLibrary, + IconVideoSettings, + IconVideocam, + IconVideocamOff, + IconVideogameAsset, + IconViewAgenda, + IconViewArray, + IconViewCarousel, + IconViewColumn, + IconViewComfy, + IconViewCompact, + IconViewDay, + IconViewHeadline, + IconViewList, + IconViewModule, + IconViewQuilt, + IconViewSidebar, + IconViewStream, + IconViewWeek, + IconVignette, + IconVisibility, + IconVisibilityOff, + IconVoiceChat, + IconVoiceOverOff, + IconVoicemail, + IconVolumeDown, + IconVolumeMute, + IconVolumeOff, + IconVolumeUp, + IconVpnKey, + IconVpnLock, + IconWallpaper, + IconWarning, + IconWash, + IconWatch, + IconWatchLater, + IconWaterDamage, + IconWaves, + IconWbAuto, + IconWbCloudy, + IconWbIncandescent, + IconWbIridescent, + IconWbSunny, + IconWc, + IconWeb, + IconWebAsset, + IconWeekend, + IconWest, + IconWhatshot, + IconWheelchairPickup, + IconWhereToVote, + IconWidgets, + IconWifi, + IconWifiCalling, + IconWifiLock, + IconWifiOff, + IconWifiProtectedSetup, + IconWifiTethering, + IconWineBar, + IconWork, + IconWorkOff, + IconWorkOutline, + IconWrapText, + IconWrongLocation, + IconWysiwyg, + IconYoutubeSearchedFor, + IconZoomIn, + IconZoomOut, + IconZoomOutMap, +} From 167752aad2b7539fd1d0dcab1dd8512b475f2a6d Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Tue, 6 Oct 2020 08:51:44 +0200 Subject: [PATCH 18/20] Add new line between the imports and the component declaration and removed return types --- generator.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generator.js b/generator.js index 73230f66d..3f36fe41c 100644 --- a/generator.js +++ b/generator.js @@ -42,8 +42,8 @@ function formatName(string) { */ function componentTemplate(name, svg) { let component = "import React from 'react'\n" - component += "import { IconProps } from './types'\n" - component += `const ${name}: React.FC = (props: IconProps):any => (` + component += "import { IconProps } from './types'\n\n" + component += `const ${name}: React.FC = (props) => (` component += svg + ')\n\n' component += `export { ${name} }` From a8297736ed312dd8529bf97fdc3a30a7ec5f19c8 Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Tue, 6 Oct 2020 08:52:32 +0200 Subject: [PATCH 19/20] Removed duplicate imports of react and react-dom --- package.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/package.json b/package.json index e532a69e1..64a2c85fc 100644 --- a/package.json +++ b/package.json @@ -53,9 +53,7 @@ "eslint-plugin-prettier": "^3.1.4", "prettier": "^2.1.2", "ts-jest": "^26.4.1", - "typescript": "^4.0.3", - "react": "^16.13.1", - "react-dom": "^16.13.1" + "typescript": "^4.0.3" }, "peerDependencies": { "react": "^16.13.1", From 38bce41779db4cb97b468c5427cf5a37e7143f79 Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Tue, 6 Oct 2020 08:54:16 +0200 Subject: [PATCH 20/20] Cleanup tsconfig.json --- tsconfig.json | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index a4fb44e7d..fbd49a7ee 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,10 +10,6 @@ "strict": true, "sourceMap": false }, - "include": [ - "src" - ], - "exclude": [ - "node_modules", "**/__test__/*", "**/__tests__/*" - ] + "include": ["src"], + "exclude": ["node_modules", "**/__test__/*", "**/__tests__/*"] } \ No newline at end of file