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": [ { diff --git a/generator.js b/generator.js index 691a346c5..3f36fe41c 100644 --- a/generator.js +++ b/generator.js @@ -42,7 +42,7 @@ function formatName(string) { */ function componentTemplate(name, svg) { let component = "import React from 'react'\n" - component += "import { IconProps } from './types'\n" + component += "import { IconProps } from './types'\n\n" component += `const ${name}: React.FC = (props) => (` 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') } /** diff --git a/package.json b/package.json index adfc1d38e..64a2c85fc 100644 --- a/package.json +++ b/package.json @@ -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", "react": "^16.13.1", diff --git a/src/components/Icon360.tsx b/src/components/Icon360.tsx index d42b76858..fc52aa404 100644 --- a/src/components/Icon360.tsx +++ b/src/components/Icon360.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const Icon360: React.FC = (props) => ( diff --git a/src/components/Icon3dRotation.tsx b/src/components/Icon3dRotation.tsx index bff31bfaa..6b1ef2095 100644 --- a/src/components/Icon3dRotation.tsx +++ b/src/components/Icon3dRotation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const Icon3dRotation: React.FC = (props) => ( diff --git a/src/components/Icon4k.tsx b/src/components/Icon4k.tsx index 510ebe981..8afcd0564 100644 --- a/src/components/Icon4k.tsx +++ b/src/components/Icon4k.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const Icon4k: React.FC = (props) => ( diff --git a/src/components/Icon5g.tsx b/src/components/Icon5g.tsx index 3e82f2913..d274001a4 100644 --- a/src/components/Icon5g.tsx +++ b/src/components/Icon5g.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const Icon5g: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconAccessAlarm.tsx b/src/components/IconAccessAlarm.tsx index f05f0c62d..3394cb87c 100644 --- a/src/components/IconAccessAlarm.tsx +++ b/src/components/IconAccessAlarm.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAccessAlarm: React.FC = (props) => ( diff --git a/src/components/IconAccessAlarms.tsx b/src/components/IconAccessAlarms.tsx index ecc43f852..505c30cc5 100644 --- a/src/components/IconAccessAlarms.tsx +++ b/src/components/IconAccessAlarms.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAccessAlarms: React.FC = (props) => ( diff --git a/src/components/IconAccessTime.tsx b/src/components/IconAccessTime.tsx index fd89b2dd8..00c003671 100644 --- a/src/components/IconAccessTime.tsx +++ b/src/components/IconAccessTime.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAccessTime: React.FC = (props) => ( diff --git a/src/components/IconAccessibility.tsx b/src/components/IconAccessibility.tsx index 847a1a5ff..746249ed8 100644 --- a/src/components/IconAccessibility.tsx +++ b/src/components/IconAccessibility.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAccessibility: React.FC = (props) => ( diff --git a/src/components/IconAccessibilityNew.tsx b/src/components/IconAccessibilityNew.tsx index 22400dbee..7f7f1bdab 100644 --- a/src/components/IconAccessibilityNew.tsx +++ b/src/components/IconAccessibilityNew.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAccessibilityNew: React.FC = (props) => ( diff --git a/src/components/IconAccessible.tsx b/src/components/IconAccessible.tsx index b403098a1..16942de34 100644 --- a/src/components/IconAccessible.tsx +++ b/src/components/IconAccessible.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAccessible: React.FC = (props) => ( diff --git a/src/components/IconAccessibleForward.tsx b/src/components/IconAccessibleForward.tsx index 3cc707012..9c8b907af 100644 --- a/src/components/IconAccessibleForward.tsx +++ b/src/components/IconAccessibleForward.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAccessibleForward: React.FC = (props) => ( diff --git a/src/components/IconAccountBalance.tsx b/src/components/IconAccountBalance.tsx index 233d4ceca..184b3e268 100644 --- a/src/components/IconAccountBalance.tsx +++ b/src/components/IconAccountBalance.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAccountBalance: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconAccountBox.tsx b/src/components/IconAccountBox.tsx index 11b2022ac..044fc5c2c 100644 --- a/src/components/IconAccountBox.tsx +++ b/src/components/IconAccountBox.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAccountBox: React.FC = (props) => ( diff --git a/src/components/IconAccountCircle.tsx b/src/components/IconAccountCircle.tsx index 33e370756..73bd171cd 100644 --- a/src/components/IconAccountCircle.tsx +++ b/src/components/IconAccountCircle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAccountCircle: React.FC = (props) => ( diff --git a/src/components/IconAccountTree.tsx b/src/components/IconAccountTree.tsx index 97b2f173a..d015722a0 100644 --- a/src/components/IconAccountTree.tsx +++ b/src/components/IconAccountTree.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAccountTree: React.FC = (props) => ( diff --git a/src/components/IconAdUnits.tsx b/src/components/IconAdUnits.tsx index d21f0fce0..86a443ab6 100644 --- a/src/components/IconAdUnits.tsx +++ b/src/components/IconAdUnits.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAdUnits: React.FC = (props) => ( diff --git a/src/components/IconAdb.tsx b/src/components/IconAdb.tsx index 146e4842f..4afae5d01 100644 --- a/src/components/IconAdb.tsx +++ b/src/components/IconAdb.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAdb: React.FC = (props) => ( diff --git a/src/components/IconAdd.tsx b/src/components/IconAdd.tsx index 18dbd9d81..cbaa910ba 100644 --- a/src/components/IconAdd.tsx +++ b/src/components/IconAdd.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAdd: React.FC = (props) => ( diff --git a/src/components/IconAddAPhoto.tsx b/src/components/IconAddAPhoto.tsx index de7730964..b1a39c846 100644 --- a/src/components/IconAddAPhoto.tsx +++ b/src/components/IconAddAPhoto.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAddAPhoto: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconAddAlert.tsx b/src/components/IconAddAlert.tsx index 6aa276e57..709be2202 100644 --- a/src/components/IconAddAlert.tsx +++ b/src/components/IconAddAlert.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAddAlert: React.FC = (props) => ( diff --git a/src/components/IconAddBox.tsx b/src/components/IconAddBox.tsx index 7a5397b12..ad3e5738a 100644 --- a/src/components/IconAddBox.tsx +++ b/src/components/IconAddBox.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAddBox: React.FC = (props) => ( diff --git a/src/components/IconAddBusiness.tsx b/src/components/IconAddBusiness.tsx index 2e12fef9b..3ed4fc6d1 100644 --- a/src/components/IconAddBusiness.tsx +++ b/src/components/IconAddBusiness.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAddBusiness: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconAddCircleOutline.tsx b/src/components/IconAddCircleOutline.tsx index e337cfd6b..1698cc2f8 100644 --- a/src/components/IconAddCircleOutline.tsx +++ b/src/components/IconAddCircleOutline.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAddCircleOutline: React.FC = (props) => ( diff --git a/src/components/IconAddComment.tsx b/src/components/IconAddComment.tsx index 264fda583..937915d93 100644 --- a/src/components/IconAddComment.tsx +++ b/src/components/IconAddComment.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAddComment: React.FC = (props) => ( diff --git a/src/components/IconAddIcCall.tsx b/src/components/IconAddIcCall.tsx index cf3570d6b..0141bae9e 100644 --- a/src/components/IconAddIcCall.tsx +++ b/src/components/IconAddIcCall.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAddIcCall: React.FC = (props) => ( diff --git a/src/components/IconAddLocation.tsx b/src/components/IconAddLocation.tsx index 89ea4ca34..5437d107d 100644 --- a/src/components/IconAddLocation.tsx +++ b/src/components/IconAddLocation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAddLocation: React.FC = (props) => ( diff --git a/src/components/IconAddLocationAlt.tsx b/src/components/IconAddLocationAlt.tsx index 0afafe425..fa3775558 100644 --- a/src/components/IconAddLocationAlt.tsx +++ b/src/components/IconAddLocationAlt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAddLocationAlt: React.FC = (props) => ( diff --git a/src/components/IconAddPhotoAlternate.tsx b/src/components/IconAddPhotoAlternate.tsx index 798832586..de590000d 100644 --- a/src/components/IconAddPhotoAlternate.tsx +++ b/src/components/IconAddPhotoAlternate.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAddPhotoAlternate: React.FC = (props) => ( diff --git a/src/components/IconAddRoad.tsx b/src/components/IconAddRoad.tsx index c649c4ed4..e9ba2221e 100644 --- a/src/components/IconAddRoad.tsx +++ b/src/components/IconAddRoad.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAddRoad: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconAddTask.tsx b/src/components/IconAddTask.tsx index fcea7b7d5..de54c208d 100644 --- a/src/components/IconAddTask.tsx +++ b/src/components/IconAddTask.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAddTask: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconAddToPhotos.tsx b/src/components/IconAddToPhotos.tsx index 017d5b315..80338b0aa 100644 --- a/src/components/IconAddToPhotos.tsx +++ b/src/components/IconAddToPhotos.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAddToPhotos: React.FC = (props) => ( diff --git a/src/components/IconAddToQueue.tsx b/src/components/IconAddToQueue.tsx index df1256e61..17b845b6b 100644 --- a/src/components/IconAddToQueue.tsx +++ b/src/components/IconAddToQueue.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAddToQueue: React.FC = (props) => ( diff --git a/src/components/IconAddchart.tsx b/src/components/IconAddchart.tsx index 9c92ec693..0ed0baa4d 100644 --- a/src/components/IconAddchart.tsx +++ b/src/components/IconAddchart.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAddchart: React.FC = (props) => ( diff --git a/src/components/IconAdjust.tsx b/src/components/IconAdjust.tsx index 4f7dea24d..743b634b9 100644 --- a/src/components/IconAdjust.tsx +++ b/src/components/IconAdjust.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAdjust: React.FC = (props) => ( diff --git a/src/components/IconAdminPanelSettings.tsx b/src/components/IconAdminPanelSettings.tsx index d99f9a25c..ffa27f2c4 100644 --- a/src/components/IconAdminPanelSettings.tsx +++ b/src/components/IconAdminPanelSettings.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAdminPanelSettings: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconAirlineSeatFlatAngled.tsx b/src/components/IconAirlineSeatFlatAngled.tsx index f6b3d8aab..74eadc082 100644 --- a/src/components/IconAirlineSeatFlatAngled.tsx +++ b/src/components/IconAirlineSeatFlatAngled.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAirlineSeatFlatAngled: React.FC = (props) => ( diff --git a/src/components/IconAirlineSeatIndividualSuite.tsx b/src/components/IconAirlineSeatIndividualSuite.tsx index b74e5e9d3..b3f41430d 100644 --- a/src/components/IconAirlineSeatIndividualSuite.tsx +++ b/src/components/IconAirlineSeatIndividualSuite.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAirlineSeatIndividualSuite: React.FC = (props) => ( diff --git a/src/components/IconAirlineSeatLegroomExtra.tsx b/src/components/IconAirlineSeatLegroomExtra.tsx index 5f19497d3..4a5370219 100644 --- a/src/components/IconAirlineSeatLegroomExtra.tsx +++ b/src/components/IconAirlineSeatLegroomExtra.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAirlineSeatLegroomExtra: React.FC = (props) => ( diff --git a/src/components/IconAirlineSeatLegroomNormal.tsx b/src/components/IconAirlineSeatLegroomNormal.tsx index dec5d4cc3..0a3a80510 100644 --- a/src/components/IconAirlineSeatLegroomNormal.tsx +++ b/src/components/IconAirlineSeatLegroomNormal.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAirlineSeatLegroomNormal: React.FC = (props) => ( diff --git a/src/components/IconAirlineSeatLegroomReduced.tsx b/src/components/IconAirlineSeatLegroomReduced.tsx index 15ea1ee18..6f5d3ac4f 100644 --- a/src/components/IconAirlineSeatLegroomReduced.tsx +++ b/src/components/IconAirlineSeatLegroomReduced.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAirlineSeatLegroomReduced: React.FC = (props) => ( diff --git a/src/components/IconAirlineSeatReclineExtra.tsx b/src/components/IconAirlineSeatReclineExtra.tsx index 08049a4dd..e06e85bfd 100644 --- a/src/components/IconAirlineSeatReclineExtra.tsx +++ b/src/components/IconAirlineSeatReclineExtra.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAirlineSeatReclineExtra: React.FC = (props) => ( diff --git a/src/components/IconAirlineSeatReclineNormal.tsx b/src/components/IconAirlineSeatReclineNormal.tsx index 2495c01eb..f47416f9d 100644 --- a/src/components/IconAirlineSeatReclineNormal.tsx +++ b/src/components/IconAirlineSeatReclineNormal.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAirlineSeatReclineNormal: React.FC = (props) => ( diff --git a/src/components/IconAirplanemodeActive.tsx b/src/components/IconAirplanemodeActive.tsx index 469e8c8b1..be10c24be 100644 --- a/src/components/IconAirplanemodeActive.tsx +++ b/src/components/IconAirplanemodeActive.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAirplanemodeActive: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconAlarm.tsx b/src/components/IconAlarm.tsx index 414d98525..a2a34ab7f 100644 --- a/src/components/IconAlarm.tsx +++ b/src/components/IconAlarm.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAlarm: React.FC = (props) => ( diff --git a/src/components/IconAlarmAdd.tsx b/src/components/IconAlarmAdd.tsx index bc15265e3..4bd20db4d 100644 --- a/src/components/IconAlarmAdd.tsx +++ b/src/components/IconAlarmAdd.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAlarmAdd: React.FC = (props) => ( diff --git a/src/components/IconAlarmOff.tsx b/src/components/IconAlarmOff.tsx index 20375a02b..a76be9da0 100644 --- a/src/components/IconAlarmOff.tsx +++ b/src/components/IconAlarmOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAlarmOff: React.FC = (props) => ( diff --git a/src/components/IconAlarmOn.tsx b/src/components/IconAlarmOn.tsx index 269f3dfd3..bd3cfa5e7 100644 --- a/src/components/IconAlarmOn.tsx +++ b/src/components/IconAlarmOn.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAlarmOn: React.FC = (props) => ( diff --git a/src/components/IconAlbum.tsx b/src/components/IconAlbum.tsx index bdf9c6b28..4171968e9 100644 --- a/src/components/IconAlbum.tsx +++ b/src/components/IconAlbum.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAlbum: React.FC = (props) => ( diff --git a/src/components/IconAlignHorizontalCenter.tsx b/src/components/IconAlignHorizontalCenter.tsx index 9280a73e6..95dabdbbf 100644 --- a/src/components/IconAlignHorizontalCenter.tsx +++ b/src/components/IconAlignHorizontalCenter.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAlignHorizontalCenter: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconAllInclusive.tsx b/src/components/IconAllInclusive.tsx index e97187ac9..9167656da 100644 --- a/src/components/IconAllInclusive.tsx +++ b/src/components/IconAllInclusive.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAllInclusive: React.FC = (props) => ( diff --git a/src/components/IconAllOut.tsx b/src/components/IconAllOut.tsx index 7133fa665..64c86ecde 100644 --- a/src/components/IconAllOut.tsx +++ b/src/components/IconAllOut.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAllOut: React.FC = (props) => ( diff --git a/src/components/IconAltRoute.tsx b/src/components/IconAltRoute.tsx index f0ba279c0..c21eb7e2c 100644 --- a/src/components/IconAltRoute.tsx +++ b/src/components/IconAltRoute.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAltRoute: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconAmpStories.tsx b/src/components/IconAmpStories.tsx index df593bb13..8e38e5eb1 100644 --- a/src/components/IconAmpStories.tsx +++ b/src/components/IconAmpStories.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAmpStories: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconAnchor.tsx b/src/components/IconAnchor.tsx index 13221008e..66a51678e 100644 --- a/src/components/IconAnchor.tsx +++ b/src/components/IconAnchor.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAnchor: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconApartment.tsx b/src/components/IconApartment.tsx index 6a5c3902c..66d399aeb 100644 --- a/src/components/IconApartment.tsx +++ b/src/components/IconApartment.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconApartment: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconAppSettingsAlt.tsx b/src/components/IconAppSettingsAlt.tsx index a49788e82..4ef344002 100644 --- a/src/components/IconAppSettingsAlt.tsx +++ b/src/components/IconAppSettingsAlt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAppSettingsAlt: React.FC = (props) => ( diff --git a/src/components/IconApps.tsx b/src/components/IconApps.tsx index 32d7db169..d1a1d6b9f 100644 --- a/src/components/IconApps.tsx +++ b/src/components/IconApps.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconApps: React.FC = (props) => ( diff --git a/src/components/IconArchitecture.tsx b/src/components/IconArchitecture.tsx index 27554ffb1..222e17f63 100644 --- a/src/components/IconArchitecture.tsx +++ b/src/components/IconArchitecture.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconArchitecture: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconArrowBack.tsx b/src/components/IconArrowBack.tsx index 2bc98a172..6e7c30e9c 100644 --- a/src/components/IconArrowBack.tsx +++ b/src/components/IconArrowBack.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconArrowBack: React.FC = (props) => ( diff --git a/src/components/IconArrowBackIos.tsx b/src/components/IconArrowBackIos.tsx index 84db672d0..de0e3c371 100644 --- a/src/components/IconArrowBackIos.tsx +++ b/src/components/IconArrowBackIos.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconArrowBackIos: React.FC = (props) => ( diff --git a/src/components/IconArrowCircleDown.tsx b/src/components/IconArrowCircleDown.tsx index bafb95459..5e7d7f3e6 100644 --- a/src/components/IconArrowCircleDown.tsx +++ b/src/components/IconArrowCircleDown.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconArrowCircleDown: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconArrowDropDown.tsx b/src/components/IconArrowDropDown.tsx index daf185b1d..d4f0a6a7b 100644 --- a/src/components/IconArrowDropDown.tsx +++ b/src/components/IconArrowDropDown.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconArrowDropDown: React.FC = (props) => ( diff --git a/src/components/IconArrowDropDownCircle.tsx b/src/components/IconArrowDropDownCircle.tsx index 99cc6b7ec..8842be012 100644 --- a/src/components/IconArrowDropDownCircle.tsx +++ b/src/components/IconArrowDropDownCircle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconArrowDropDownCircle: React.FC = (props) => ( diff --git a/src/components/IconArrowDropUp.tsx b/src/components/IconArrowDropUp.tsx index efcd7670d..6953a8f8b 100644 --- a/src/components/IconArrowDropUp.tsx +++ b/src/components/IconArrowDropUp.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconArrowDropUp: React.FC = (props) => ( diff --git a/src/components/IconArrowForward.tsx b/src/components/IconArrowForward.tsx index f3b92265f..84ea57448 100644 --- a/src/components/IconArrowForward.tsx +++ b/src/components/IconArrowForward.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconArrowForward: React.FC = (props) => ( diff --git a/src/components/IconArrowForwardIos.tsx b/src/components/IconArrowForwardIos.tsx index fb9a869d5..16ee5bab8 100644 --- a/src/components/IconArrowForwardIos.tsx +++ b/src/components/IconArrowForwardIos.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconArrowForwardIos: React.FC = (props) => ( diff --git a/src/components/IconArrowLeft.tsx b/src/components/IconArrowLeft.tsx index 876f85668..9210af45b 100644 --- a/src/components/IconArrowLeft.tsx +++ b/src/components/IconArrowLeft.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconArrowLeft: React.FC = (props) => ( diff --git a/src/components/IconArrowRight.tsx b/src/components/IconArrowRight.tsx index ec4733a4e..c45afdb64 100644 --- a/src/components/IconArrowRight.tsx +++ b/src/components/IconArrowRight.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconArrowRight: React.FC = (props) => ( diff --git a/src/components/IconArrowRightAlt.tsx b/src/components/IconArrowRightAlt.tsx index 8d2baf6d2..8c3c0c007 100644 --- a/src/components/IconArrowRightAlt.tsx +++ b/src/components/IconArrowRightAlt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconArrowRightAlt: React.FC = (props) => ( diff --git a/src/components/IconArrowUpward.tsx b/src/components/IconArrowUpward.tsx index 15254fb74..b2a191329 100644 --- a/src/components/IconArrowUpward.tsx +++ b/src/components/IconArrowUpward.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconArrowUpward: React.FC = (props) => ( diff --git a/src/components/IconArtTrack.tsx b/src/components/IconArtTrack.tsx index 2cc5e2281..5475f1b66 100644 --- a/src/components/IconArtTrack.tsx +++ b/src/components/IconArtTrack.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconArtTrack: React.FC = (props) => ( diff --git a/src/components/IconArticle.tsx b/src/components/IconArticle.tsx index 8d15a3646..b6a2ad590 100644 --- a/src/components/IconArticle.tsx +++ b/src/components/IconArticle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconArticle: React.FC = (props) => ( diff --git a/src/components/IconAspectRatio.tsx b/src/components/IconAspectRatio.tsx index 66760989e..d663b3a85 100644 --- a/src/components/IconAspectRatio.tsx +++ b/src/components/IconAspectRatio.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAspectRatio: React.FC = (props) => ( diff --git a/src/components/IconAssessment.tsx b/src/components/IconAssessment.tsx index 294050b53..11934f1dd 100644 --- a/src/components/IconAssessment.tsx +++ b/src/components/IconAssessment.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAssessment: React.FC = (props) => ( diff --git a/src/components/IconAssignment.tsx b/src/components/IconAssignment.tsx index 03a28fafa..dc5ddf58d 100644 --- a/src/components/IconAssignment.tsx +++ b/src/components/IconAssignment.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAssignment: React.FC = (props) => ( diff --git a/src/components/IconAssignmentInd.tsx b/src/components/IconAssignmentInd.tsx index b78feb9d0..f7822e2e0 100644 --- a/src/components/IconAssignmentInd.tsx +++ b/src/components/IconAssignmentInd.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAssignmentInd: React.FC = (props) => ( diff --git a/src/components/IconAssignmentLate.tsx b/src/components/IconAssignmentLate.tsx index 3aeb76d39..a007fa912 100644 --- a/src/components/IconAssignmentLate.tsx +++ b/src/components/IconAssignmentLate.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAssignmentLate: React.FC = (props) => ( diff --git a/src/components/IconAssignmentReturn.tsx b/src/components/IconAssignmentReturn.tsx index 407101c94..5c7f89981 100644 --- a/src/components/IconAssignmentReturn.tsx +++ b/src/components/IconAssignmentReturn.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAssignmentReturn: React.FC = (props) => ( diff --git a/src/components/IconAssignmentReturned.tsx b/src/components/IconAssignmentReturned.tsx index 533de8770..894e37a1f 100644 --- a/src/components/IconAssignmentReturned.tsx +++ b/src/components/IconAssignmentReturned.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAssignmentReturned: React.FC = (props) => ( diff --git a/src/components/IconAssignmentTurnedIn.tsx b/src/components/IconAssignmentTurnedIn.tsx index 3b94ea721..b5d1e9011 100644 --- a/src/components/IconAssignmentTurnedIn.tsx +++ b/src/components/IconAssignmentTurnedIn.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAssignmentTurnedIn: React.FC = (props) => ( diff --git a/src/components/IconAssistant.tsx b/src/components/IconAssistant.tsx index a29d64599..f5adb59aa 100644 --- a/src/components/IconAssistant.tsx +++ b/src/components/IconAssistant.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAssistant: React.FC = (props) => ( diff --git a/src/components/IconAssistantPhoto.tsx b/src/components/IconAssistantPhoto.tsx index ffedc008a..f75491ccd 100644 --- a/src/components/IconAssistantPhoto.tsx +++ b/src/components/IconAssistantPhoto.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAssistantPhoto: React.FC = (props) => ( diff --git a/src/components/IconAtm.tsx b/src/components/IconAtm.tsx index 6f2a0a666..2bbaee05c 100644 --- a/src/components/IconAtm.tsx +++ b/src/components/IconAtm.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAtm: React.FC = (props) => ( diff --git a/src/components/IconAttachEmail.tsx b/src/components/IconAttachEmail.tsx index 4014322f5..105a99c43 100644 --- a/src/components/IconAttachEmail.tsx +++ b/src/components/IconAttachEmail.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAttachEmail: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconAttachMoney.tsx b/src/components/IconAttachMoney.tsx index 950dc0372..5232327ef 100644 --- a/src/components/IconAttachMoney.tsx +++ b/src/components/IconAttachMoney.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAttachMoney: React.FC = (props) => ( diff --git a/src/components/IconAttachment.tsx b/src/components/IconAttachment.tsx index 3fa8c84de..c88b8c81e 100644 --- a/src/components/IconAttachment.tsx +++ b/src/components/IconAttachment.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAttachment: React.FC = (props) => ( diff --git a/src/components/IconAudiotrack.tsx b/src/components/IconAudiotrack.tsx index a9338acaf..2946ac8fc 100644 --- a/src/components/IconAudiotrack.tsx +++ b/src/components/IconAudiotrack.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAudiotrack: React.FC = (props) => ( diff --git a/src/components/IconAutoDelete.tsx b/src/components/IconAutoDelete.tsx index 4dd79a8c9..872767e54 100644 --- a/src/components/IconAutoDelete.tsx +++ b/src/components/IconAutoDelete.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAutoDelete: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconAvTimer.tsx b/src/components/IconAvTimer.tsx index b0c1069a7..9dc9b401c 100644 --- a/src/components/IconAvTimer.tsx +++ b/src/components/IconAvTimer.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconAvTimer: React.FC = (props) => ( diff --git a/src/components/IconBabyChangingStation.tsx b/src/components/IconBabyChangingStation.tsx index 1e5014937..b99f4f303 100644 --- a/src/components/IconBabyChangingStation.tsx +++ b/src/components/IconBabyChangingStation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBabyChangingStation: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconBackup.tsx b/src/components/IconBackup.tsx index 7375954f4..9b38c8d2b 100644 --- a/src/components/IconBackup.tsx +++ b/src/components/IconBackup.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBackup: React.FC = (props) => ( diff --git a/src/components/IconBackupTable.tsx b/src/components/IconBackupTable.tsx index 23a85dc94..fd0203018 100644 --- a/src/components/IconBackupTable.tsx +++ b/src/components/IconBackupTable.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBackupTable: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconBatchPrediction.tsx b/src/components/IconBatchPrediction.tsx index acf283ada..fc40131d6 100644 --- a/src/components/IconBatchPrediction.tsx +++ b/src/components/IconBatchPrediction.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBatchPrediction: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconBatteryChargingFull.tsx b/src/components/IconBatteryChargingFull.tsx index cff02c713..f3306f116 100644 --- a/src/components/IconBatteryChargingFull.tsx +++ b/src/components/IconBatteryChargingFull.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBatteryChargingFull: React.FC = (props) => ( diff --git a/src/components/IconBatteryFull.tsx b/src/components/IconBatteryFull.tsx index 40b414133..8ad083a8b 100644 --- a/src/components/IconBatteryFull.tsx +++ b/src/components/IconBatteryFull.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBatteryFull: React.FC = (props) => ( diff --git a/src/components/IconBatteryStd.tsx b/src/components/IconBatteryStd.tsx index d7db89800..bc5c17189 100644 --- a/src/components/IconBatteryStd.tsx +++ b/src/components/IconBatteryStd.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBatteryStd: React.FC = (props) => ( diff --git a/src/components/IconBatteryUnknown.tsx b/src/components/IconBatteryUnknown.tsx index 069ca1f5b..277b889da 100644 --- a/src/components/IconBatteryUnknown.tsx +++ b/src/components/IconBatteryUnknown.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBatteryUnknown: React.FC = (props) => ( diff --git a/src/components/IconBeachAccess.tsx b/src/components/IconBeachAccess.tsx index d4011ce2c..dc160fae4 100644 --- a/src/components/IconBeachAccess.tsx +++ b/src/components/IconBeachAccess.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBeachAccess: React.FC = (props) => ( diff --git a/src/components/IconBedtime.tsx b/src/components/IconBedtime.tsx index cd12ec598..eabdd8fef 100644 --- a/src/components/IconBedtime.tsx +++ b/src/components/IconBedtime.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBedtime: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconBento.tsx b/src/components/IconBento.tsx index 681ea49d9..1fd7524db 100644 --- a/src/components/IconBento.tsx +++ b/src/components/IconBento.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBento: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconBluetooth.tsx b/src/components/IconBluetooth.tsx index b59939299..4e86eb18e 100644 --- a/src/components/IconBluetooth.tsx +++ b/src/components/IconBluetooth.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBluetooth: React.FC = (props) => ( diff --git a/src/components/IconBluetoothAudio.tsx b/src/components/IconBluetoothAudio.tsx index f99db08fb..02fe487fe 100644 --- a/src/components/IconBluetoothAudio.tsx +++ b/src/components/IconBluetoothAudio.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBluetoothAudio: React.FC = (props) => ( diff --git a/src/components/IconBluetoothConnected.tsx b/src/components/IconBluetoothConnected.tsx index cef9be5d1..30632055d 100644 --- a/src/components/IconBluetoothConnected.tsx +++ b/src/components/IconBluetoothConnected.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBluetoothConnected: React.FC = (props) => ( diff --git a/src/components/IconBluetoothDisabled.tsx b/src/components/IconBluetoothDisabled.tsx index 3e277474f..330ffe11e 100644 --- a/src/components/IconBluetoothDisabled.tsx +++ b/src/components/IconBluetoothDisabled.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBluetoothDisabled: React.FC = (props) => ( diff --git a/src/components/IconBluetoothSearching.tsx b/src/components/IconBluetoothSearching.tsx index 9084743db..6fdcdaac3 100644 --- a/src/components/IconBluetoothSearching.tsx +++ b/src/components/IconBluetoothSearching.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBluetoothSearching: React.FC = (props) => ( diff --git a/src/components/IconBlurCircular.tsx b/src/components/IconBlurCircular.tsx index 3c4f490fe..9a846974e 100644 --- a/src/components/IconBlurCircular.tsx +++ b/src/components/IconBlurCircular.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBlurCircular: React.FC = (props) => ( diff --git a/src/components/IconBlurLinear.tsx b/src/components/IconBlurLinear.tsx index bef7faf09..7e4fe581c 100644 --- a/src/components/IconBlurLinear.tsx +++ b/src/components/IconBlurLinear.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBlurLinear: React.FC = (props) => ( diff --git a/src/components/IconBlurOff.tsx b/src/components/IconBlurOff.tsx index f1ada3668..5e1182102 100644 --- a/src/components/IconBlurOff.tsx +++ b/src/components/IconBlurOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBlurOff: React.FC = (props) => ( diff --git a/src/components/IconBlurOn.tsx b/src/components/IconBlurOn.tsx index af1e3f580..8fbf393ff 100644 --- a/src/components/IconBlurOn.tsx +++ b/src/components/IconBlurOn.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBlurOn: React.FC = (props) => ( diff --git a/src/components/IconBook.tsx b/src/components/IconBook.tsx index 75eb11c03..0d33028c3 100644 --- a/src/components/IconBook.tsx +++ b/src/components/IconBook.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBook: React.FC = (props) => ( diff --git a/src/components/IconBookOnline.tsx b/src/components/IconBookOnline.tsx index 07f06128a..add909d1b 100644 --- a/src/components/IconBookOnline.tsx +++ b/src/components/IconBookOnline.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBookOnline: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconBookmarkBorder.tsx b/src/components/IconBookmarkBorder.tsx index 282403da0..4c685148c 100644 --- a/src/components/IconBookmarkBorder.tsx +++ b/src/components/IconBookmarkBorder.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBookmarkBorder: React.FC = (props) => ( diff --git a/src/components/IconBookmarks.tsx b/src/components/IconBookmarks.tsx index aa036032d..26a8a36e3 100644 --- a/src/components/IconBookmarks.tsx +++ b/src/components/IconBookmarks.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBookmarks: React.FC = (props) => ( diff --git a/src/components/IconBorderAll.tsx b/src/components/IconBorderAll.tsx index 41354c563..28d755859 100644 --- a/src/components/IconBorderAll.tsx +++ b/src/components/IconBorderAll.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBorderAll: React.FC = (props) => ( diff --git a/src/components/IconBorderBottom.tsx b/src/components/IconBorderBottom.tsx index ebf89f81e..148f0baf9 100644 --- a/src/components/IconBorderBottom.tsx +++ b/src/components/IconBorderBottom.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBorderBottom: React.FC = (props) => ( diff --git a/src/components/IconBorderClear.tsx b/src/components/IconBorderClear.tsx index 0f25169ea..75ad68c48 100644 --- a/src/components/IconBorderClear.tsx +++ b/src/components/IconBorderClear.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBorderClear: React.FC = (props) => ( diff --git a/src/components/IconBorderHorizontal.tsx b/src/components/IconBorderHorizontal.tsx index 46a1bab72..48b998d21 100644 --- a/src/components/IconBorderHorizontal.tsx +++ b/src/components/IconBorderHorizontal.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBorderHorizontal: React.FC = (props) => ( diff --git a/src/components/IconBorderInner.tsx b/src/components/IconBorderInner.tsx index 8b6818a34..bfe1148b4 100644 --- a/src/components/IconBorderInner.tsx +++ b/src/components/IconBorderInner.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBorderInner: React.FC = (props) => ( diff --git a/src/components/IconBorderLeft.tsx b/src/components/IconBorderLeft.tsx index 1f7f2bc47..46e778535 100644 --- a/src/components/IconBorderLeft.tsx +++ b/src/components/IconBorderLeft.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBorderLeft: React.FC = (props) => ( diff --git a/src/components/IconBorderOuter.tsx b/src/components/IconBorderOuter.tsx index 55c1370ea..d529c694d 100644 --- a/src/components/IconBorderOuter.tsx +++ b/src/components/IconBorderOuter.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBorderOuter: React.FC = (props) => ( diff --git a/src/components/IconBorderRight.tsx b/src/components/IconBorderRight.tsx index 2576323bd..58ebff4df 100644 --- a/src/components/IconBorderRight.tsx +++ b/src/components/IconBorderRight.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBorderRight: React.FC = (props) => ( diff --git a/src/components/IconBorderStyle.tsx b/src/components/IconBorderStyle.tsx index d1c31e467..2447acbbd 100644 --- a/src/components/IconBorderStyle.tsx +++ b/src/components/IconBorderStyle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBorderStyle: React.FC = (props) => ( diff --git a/src/components/IconBorderTop.tsx b/src/components/IconBorderTop.tsx index 95b56e1fb..b64f3aff3 100644 --- a/src/components/IconBorderTop.tsx +++ b/src/components/IconBorderTop.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBorderTop: React.FC = (props) => ( diff --git a/src/components/IconBorderVertical.tsx b/src/components/IconBorderVertical.tsx index dcf6d9636..453c39e50 100644 --- a/src/components/IconBorderVertical.tsx +++ b/src/components/IconBorderVertical.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBorderVertical: React.FC = (props) => ( diff --git a/src/components/IconBrandingWatermark.tsx b/src/components/IconBrandingWatermark.tsx index a424bd4cf..92130ca46 100644 --- a/src/components/IconBrandingWatermark.tsx +++ b/src/components/IconBrandingWatermark.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBrandingWatermark: React.FC = (props) => ( diff --git a/src/components/IconBrightness1.tsx b/src/components/IconBrightness1.tsx index 55b370fe5..80e8728ea 100644 --- a/src/components/IconBrightness1.tsx +++ b/src/components/IconBrightness1.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBrightness1: React.FC = (props) => ( diff --git a/src/components/IconBrightness2.tsx b/src/components/IconBrightness2.tsx index 45ffccc11..52dd2ac4c 100644 --- a/src/components/IconBrightness2.tsx +++ b/src/components/IconBrightness2.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBrightness2: React.FC = (props) => ( diff --git a/src/components/IconBrightness3.tsx b/src/components/IconBrightness3.tsx index 17ed1149b..01cc2e1a6 100644 --- a/src/components/IconBrightness3.tsx +++ b/src/components/IconBrightness3.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBrightness3: React.FC = (props) => ( diff --git a/src/components/IconBrightness4.tsx b/src/components/IconBrightness4.tsx index 108e2e94d..7ac2440bf 100644 --- a/src/components/IconBrightness4.tsx +++ b/src/components/IconBrightness4.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBrightness4: React.FC = (props) => ( diff --git a/src/components/IconBrightness5.tsx b/src/components/IconBrightness5.tsx index fde007d88..e6f92bc30 100644 --- a/src/components/IconBrightness5.tsx +++ b/src/components/IconBrightness5.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBrightness5: React.FC = (props) => ( diff --git a/src/components/IconBrightness6.tsx b/src/components/IconBrightness6.tsx index 038cc3e7a..c958df0e3 100644 --- a/src/components/IconBrightness6.tsx +++ b/src/components/IconBrightness6.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBrightness6: React.FC = (props) => ( diff --git a/src/components/IconBrightness7.tsx b/src/components/IconBrightness7.tsx index c16532d43..507a0d688 100644 --- a/src/components/IconBrightness7.tsx +++ b/src/components/IconBrightness7.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBrightness7: React.FC = (props) => ( diff --git a/src/components/IconBrightnessAuto.tsx b/src/components/IconBrightnessAuto.tsx index 9ccc5d7d3..811748c51 100644 --- a/src/components/IconBrightnessAuto.tsx +++ b/src/components/IconBrightnessAuto.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBrightnessAuto: React.FC = (props) => ( diff --git a/src/components/IconBrightnessHigh.tsx b/src/components/IconBrightnessHigh.tsx index 65343480f..b4b5f6f97 100644 --- a/src/components/IconBrightnessHigh.tsx +++ b/src/components/IconBrightnessHigh.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBrightnessHigh: React.FC = (props) => ( diff --git a/src/components/IconBrightnessLow.tsx b/src/components/IconBrightnessLow.tsx index 1fa34f8b6..0fe0ef195 100644 --- a/src/components/IconBrightnessLow.tsx +++ b/src/components/IconBrightnessLow.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBrightnessLow: React.FC = (props) => ( diff --git a/src/components/IconBrightnessMedium.tsx b/src/components/IconBrightnessMedium.tsx index 96479c7fe..41426795c 100644 --- a/src/components/IconBrightnessMedium.tsx +++ b/src/components/IconBrightnessMedium.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBrightnessMedium: React.FC = (props) => ( diff --git a/src/components/IconBrokenImage.tsx b/src/components/IconBrokenImage.tsx index cabb63384..a1174ce7b 100644 --- a/src/components/IconBrokenImage.tsx +++ b/src/components/IconBrokenImage.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBrokenImage: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconBubbleChart.tsx b/src/components/IconBubbleChart.tsx index d83c6ea97..e414bd71a 100644 --- a/src/components/IconBubbleChart.tsx +++ b/src/components/IconBubbleChart.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBubbleChart: React.FC = (props) => ( diff --git a/src/components/IconBugReport.tsx b/src/components/IconBugReport.tsx index da9713682..636527416 100644 --- a/src/components/IconBugReport.tsx +++ b/src/components/IconBugReport.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBugReport: React.FC = (props) => ( diff --git a/src/components/IconBuild.tsx b/src/components/IconBuild.tsx index 670360e49..321528d6d 100644 --- a/src/components/IconBuild.tsx +++ b/src/components/IconBuild.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBuild: React.FC = (props) => ( diff --git a/src/components/IconBuildCircle.tsx b/src/components/IconBuildCircle.tsx index 742aa466a..a387ffb9d 100644 --- a/src/components/IconBuildCircle.tsx +++ b/src/components/IconBuildCircle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBuildCircle: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconBusiness.tsx b/src/components/IconBusiness.tsx index 24d02cb22..65185d403 100644 --- a/src/components/IconBusiness.tsx +++ b/src/components/IconBusiness.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBusiness: React.FC = (props) => ( diff --git a/src/components/IconBusinessCenter.tsx b/src/components/IconBusinessCenter.tsx index ce3e57137..e3fd8affb 100644 --- a/src/components/IconBusinessCenter.tsx +++ b/src/components/IconBusinessCenter.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconBusinessCenter: React.FC = (props) => ( diff --git a/src/components/IconCached.tsx b/src/components/IconCached.tsx index 6cc435115..53f9df01f 100644 --- a/src/components/IconCached.tsx +++ b/src/components/IconCached.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCached: React.FC = (props) => ( diff --git a/src/components/IconCake.tsx b/src/components/IconCake.tsx index 8d689c8e0..6b2377910 100644 --- a/src/components/IconCake.tsx +++ b/src/components/IconCake.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCake: React.FC = (props) => ( diff --git a/src/components/IconCalculate.tsx b/src/components/IconCalculate.tsx index de66ef033..026f51133 100644 --- a/src/components/IconCalculate.tsx +++ b/src/components/IconCalculate.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCalculate: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconCalendarViewDay.tsx b/src/components/IconCalendarViewDay.tsx index ea74b60a4..413e68b3d 100644 --- a/src/components/IconCalendarViewDay.tsx +++ b/src/components/IconCalendarViewDay.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCalendarViewDay: React.FC = (props) => ( diff --git a/src/components/IconCall.tsx b/src/components/IconCall.tsx index e3b7434ec..c85c649d5 100644 --- a/src/components/IconCall.tsx +++ b/src/components/IconCall.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCall: React.FC = (props) => ( diff --git a/src/components/IconCallEnd.tsx b/src/components/IconCallEnd.tsx index 4ec40f33d..c8bec9cc0 100644 --- a/src/components/IconCallEnd.tsx +++ b/src/components/IconCallEnd.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCallEnd: React.FC = (props) => ( diff --git a/src/components/IconCallMade.tsx b/src/components/IconCallMade.tsx index af2b89614..27883f3e7 100644 --- a/src/components/IconCallMade.tsx +++ b/src/components/IconCallMade.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCallMade: React.FC = (props) => ( diff --git a/src/components/IconCallMerge.tsx b/src/components/IconCallMerge.tsx index 749e59e4e..a60222ad4 100644 --- a/src/components/IconCallMerge.tsx +++ b/src/components/IconCallMerge.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCallMerge: React.FC = (props) => ( diff --git a/src/components/IconCallMissed.tsx b/src/components/IconCallMissed.tsx index ad9b243b6..3f38cca11 100644 --- a/src/components/IconCallMissed.tsx +++ b/src/components/IconCallMissed.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCallMissed: React.FC = (props) => ( diff --git a/src/components/IconCallMissedOutgoing.tsx b/src/components/IconCallMissedOutgoing.tsx index 9e222e110..7113d420f 100644 --- a/src/components/IconCallMissedOutgoing.tsx +++ b/src/components/IconCallMissedOutgoing.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCallMissedOutgoing: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconCallSplit.tsx b/src/components/IconCallSplit.tsx index df6aad8a0..026c0ba30 100644 --- a/src/components/IconCallSplit.tsx +++ b/src/components/IconCallSplit.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCallSplit: React.FC = (props) => ( diff --git a/src/components/IconCallToAction.tsx b/src/components/IconCallToAction.tsx index 39e0a3097..9728f1162 100644 --- a/src/components/IconCallToAction.tsx +++ b/src/components/IconCallToAction.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCallToAction: React.FC = (props) => ( diff --git a/src/components/IconCamera.tsx b/src/components/IconCamera.tsx index 090a15048..3772db129 100644 --- a/src/components/IconCamera.tsx +++ b/src/components/IconCamera.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCamera: React.FC = (props) => ( diff --git a/src/components/IconCameraAlt.tsx b/src/components/IconCameraAlt.tsx index bdc11aff8..cee6e67c6 100644 --- a/src/components/IconCameraAlt.tsx +++ b/src/components/IconCameraAlt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCameraAlt: React.FC = (props) => ( diff --git a/src/components/IconCameraEnhance.tsx b/src/components/IconCameraEnhance.tsx index afcf4c274..a49129e08 100644 --- a/src/components/IconCameraEnhance.tsx +++ b/src/components/IconCameraEnhance.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCameraEnhance: React.FC = (props) => ( diff --git a/src/components/IconCameraFront.tsx b/src/components/IconCameraFront.tsx index 639748750..2da220144 100644 --- a/src/components/IconCameraFront.tsx +++ b/src/components/IconCameraFront.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCameraFront: React.FC = (props) => ( diff --git a/src/components/IconCameraRear.tsx b/src/components/IconCameraRear.tsx index 82354ecd3..eb03b01c1 100644 --- a/src/components/IconCameraRear.tsx +++ b/src/components/IconCameraRear.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCameraRear: React.FC = (props) => ( diff --git a/src/components/IconCameraRoll.tsx b/src/components/IconCameraRoll.tsx index 04e76f3cf..29b1138b2 100644 --- a/src/components/IconCameraRoll.tsx +++ b/src/components/IconCameraRoll.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCameraRoll: React.FC = (props) => ( diff --git a/src/components/IconCampaign.tsx b/src/components/IconCampaign.tsx index 7c317ef41..e834fcea7 100644 --- a/src/components/IconCampaign.tsx +++ b/src/components/IconCampaign.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCampaign: React.FC = (props) => ( diff --git a/src/components/IconCancel.tsx b/src/components/IconCancel.tsx index 24eee30c3..b1f94c1d3 100644 --- a/src/components/IconCancel.tsx +++ b/src/components/IconCancel.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCancel: React.FC = (props) => ( diff --git a/src/components/IconCancelPresentation.tsx b/src/components/IconCancelPresentation.tsx index 0abdc30dd..21a57bc2b 100644 --- a/src/components/IconCancelPresentation.tsx +++ b/src/components/IconCancelPresentation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCancelPresentation: React.FC = (props) => ( diff --git a/src/components/IconCancelScheduleSend.tsx b/src/components/IconCancelScheduleSend.tsx index 7a9fc5326..e39123861 100644 --- a/src/components/IconCancelScheduleSend.tsx +++ b/src/components/IconCancelScheduleSend.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCancelScheduleSend: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconCardMembership.tsx b/src/components/IconCardMembership.tsx index ad3f16dff..87d236461 100644 --- a/src/components/IconCardMembership.tsx +++ b/src/components/IconCardMembership.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCardMembership: React.FC = (props) => ( diff --git a/src/components/IconCardTravel.tsx b/src/components/IconCardTravel.tsx index e4a8959a3..20ab2b2f4 100644 --- a/src/components/IconCardTravel.tsx +++ b/src/components/IconCardTravel.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCardTravel: React.FC = (props) => ( diff --git a/src/components/IconCarpenter.tsx b/src/components/IconCarpenter.tsx index 72f7368a1..dc469e2dc 100644 --- a/src/components/IconCarpenter.tsx +++ b/src/components/IconCarpenter.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCarpenter: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconCastConnected.tsx b/src/components/IconCastConnected.tsx index 8da641949..28a8a1e74 100644 --- a/src/components/IconCastConnected.tsx +++ b/src/components/IconCastConnected.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCastConnected: React.FC = (props) => ( diff --git a/src/components/IconCastForEducation.tsx b/src/components/IconCastForEducation.tsx index 5e8eecb32..5f43c0213 100644 --- a/src/components/IconCastForEducation.tsx +++ b/src/components/IconCastForEducation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCastForEducation: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconCenterFocusStrong.tsx b/src/components/IconCenterFocusStrong.tsx index e1caf9f1a..0df65b7a3 100644 --- a/src/components/IconCenterFocusStrong.tsx +++ b/src/components/IconCenterFocusStrong.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCenterFocusStrong: React.FC = (props) => ( diff --git a/src/components/IconCenterFocusWeak.tsx b/src/components/IconCenterFocusWeak.tsx index 1c70f3c20..9802779eb 100644 --- a/src/components/IconCenterFocusWeak.tsx +++ b/src/components/IconCenterFocusWeak.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCenterFocusWeak: React.FC = (props) => ( diff --git a/src/components/IconChangeHistory.tsx b/src/components/IconChangeHistory.tsx index 73afcdb5e..b4282981c 100644 --- a/src/components/IconChangeHistory.tsx +++ b/src/components/IconChangeHistory.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconChangeHistory: React.FC = (props) => ( diff --git a/src/components/IconChargingStation.tsx b/src/components/IconChargingStation.tsx index d927e714c..233a601b1 100644 --- a/src/components/IconChargingStation.tsx +++ b/src/components/IconChargingStation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconChargingStation: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconChatBubble.tsx b/src/components/IconChatBubble.tsx index a028640bc..ed3d22ddc 100644 --- a/src/components/IconChatBubble.tsx +++ b/src/components/IconChatBubble.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconChatBubble: React.FC = (props) => ( diff --git a/src/components/IconChatBubbleOutline.tsx b/src/components/IconChatBubbleOutline.tsx index 91cb745d7..fc9b8cdee 100644 --- a/src/components/IconChatBubbleOutline.tsx +++ b/src/components/IconChatBubbleOutline.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconChatBubbleOutline: React.FC = (props) => ( diff --git a/src/components/IconCheck.tsx b/src/components/IconCheck.tsx index 9456948c3..83a381958 100644 --- a/src/components/IconCheck.tsx +++ b/src/components/IconCheck.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCheck: React.FC = (props) => ( diff --git a/src/components/IconCheckBox.tsx b/src/components/IconCheckBox.tsx index 3ea35a4f6..1525fc6d6 100644 --- a/src/components/IconCheckBox.tsx +++ b/src/components/IconCheckBox.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCheckBox: React.FC = (props) => ( diff --git a/src/components/IconCheckBoxOutlineBlank.tsx b/src/components/IconCheckBoxOutlineBlank.tsx index d33e9d137..37bcdb56b 100644 --- a/src/components/IconCheckBoxOutlineBlank.tsx +++ b/src/components/IconCheckBoxOutlineBlank.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCheckBoxOutlineBlank: React.FC = (props) => ( diff --git a/src/components/IconCheckCircle.tsx b/src/components/IconCheckCircle.tsx index 76c53325f..711f391b9 100644 --- a/src/components/IconCheckCircle.tsx +++ b/src/components/IconCheckCircle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCheckCircle: React.FC = (props) => ( diff --git a/src/components/IconCheckCircleOutline.tsx b/src/components/IconCheckCircleOutline.tsx index c485c03a6..d0d516bc9 100644 --- a/src/components/IconCheckCircleOutline.tsx +++ b/src/components/IconCheckCircleOutline.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCheckCircleOutline: React.FC = (props) => ( diff --git a/src/components/IconCheckroom.tsx b/src/components/IconCheckroom.tsx index e99884b63..993bd52e2 100644 --- a/src/components/IconCheckroom.tsx +++ b/src/components/IconCheckroom.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCheckroom: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconChevronRight.tsx b/src/components/IconChevronRight.tsx index e1d8713c1..aba22e183 100644 --- a/src/components/IconChevronRight.tsx +++ b/src/components/IconChevronRight.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconChevronRight: React.FC = (props) => ( diff --git a/src/components/IconChildCare.tsx b/src/components/IconChildCare.tsx index bcfe23dc5..c80dff636 100644 --- a/src/components/IconChildCare.tsx +++ b/src/components/IconChildCare.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconChildCare: React.FC = (props) => ( diff --git a/src/components/IconChildFriendly.tsx b/src/components/IconChildFriendly.tsx index 324dff27b..1cd97900f 100644 --- a/src/components/IconChildFriendly.tsx +++ b/src/components/IconChildFriendly.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconChildFriendly: React.FC = (props) => ( diff --git a/src/components/IconChromeReaderMode.tsx b/src/components/IconChromeReaderMode.tsx index 9fb08f5d0..17c2a04b2 100644 --- a/src/components/IconChromeReaderMode.tsx +++ b/src/components/IconChromeReaderMode.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconChromeReaderMode: React.FC = (props) => ( diff --git a/src/components/IconClass.tsx b/src/components/IconClass.tsx index e35f7567f..7753bbc72 100644 --- a/src/components/IconClass.tsx +++ b/src/components/IconClass.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconClass: React.FC = (props) => ( diff --git a/src/components/IconCleanHands.tsx b/src/components/IconCleanHands.tsx index 1ff731cd4..94ae5c731 100644 --- a/src/components/IconCleanHands.tsx +++ b/src/components/IconCleanHands.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCleanHands: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconClearAll.tsx b/src/components/IconClearAll.tsx index 8c1f5e869..ac33a1d9e 100644 --- a/src/components/IconClearAll.tsx +++ b/src/components/IconClearAll.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconClearAll: React.FC = (props) => ( diff --git a/src/components/IconClose.tsx b/src/components/IconClose.tsx index 65a9897f3..cdf5ceaeb 100644 --- a/src/components/IconClose.tsx +++ b/src/components/IconClose.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconClose: React.FC = (props) => ( diff --git a/src/components/IconCloseFullscreen.tsx b/src/components/IconCloseFullscreen.tsx index 72a0e0c61..eb22468fd 100644 --- a/src/components/IconCloseFullscreen.tsx +++ b/src/components/IconCloseFullscreen.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCloseFullscreen: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconClosedCaptionDisabled.tsx b/src/components/IconClosedCaptionDisabled.tsx index 04cf82539..ad53db6bf 100644 --- a/src/components/IconClosedCaptionDisabled.tsx +++ b/src/components/IconClosedCaptionDisabled.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconClosedCaptionDisabled: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconCloudCircle.tsx b/src/components/IconCloudCircle.tsx index c74c20b76..5f48f4864 100644 --- a/src/components/IconCloudCircle.tsx +++ b/src/components/IconCloudCircle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCloudCircle: React.FC = (props) => ( diff --git a/src/components/IconCloudDone.tsx b/src/components/IconCloudDone.tsx index 469e6552f..dcd48001f 100644 --- a/src/components/IconCloudDone.tsx +++ b/src/components/IconCloudDone.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCloudDone: React.FC = (props) => ( diff --git a/src/components/IconCloudDownload.tsx b/src/components/IconCloudDownload.tsx index acd57a297..ebef1fc20 100644 --- a/src/components/IconCloudDownload.tsx +++ b/src/components/IconCloudDownload.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCloudDownload: React.FC = (props) => ( diff --git a/src/components/IconCloudOff.tsx b/src/components/IconCloudOff.tsx index 49fc8e2cd..7974e2352 100644 --- a/src/components/IconCloudOff.tsx +++ b/src/components/IconCloudOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCloudOff: React.FC = (props) => ( diff --git a/src/components/IconCloudQueue.tsx b/src/components/IconCloudQueue.tsx index 4d2e1facf..5cf8687d2 100644 --- a/src/components/IconCloudQueue.tsx +++ b/src/components/IconCloudQueue.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCloudQueue: React.FC = (props) => ( diff --git a/src/components/IconCloudUpload.tsx b/src/components/IconCloudUpload.tsx index df766da9f..3a5f1d22f 100644 --- a/src/components/IconCloudUpload.tsx +++ b/src/components/IconCloudUpload.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCloudUpload: React.FC = (props) => ( diff --git a/src/components/IconCode.tsx b/src/components/IconCode.tsx index 5473e962c..825be46c9 100644 --- a/src/components/IconCode.tsx +++ b/src/components/IconCode.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCode: React.FC = (props) => ( diff --git a/src/components/IconCollections.tsx b/src/components/IconCollections.tsx index 4d96c4044..f73b3b228 100644 --- a/src/components/IconCollections.tsx +++ b/src/components/IconCollections.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCollections: React.FC = (props) => ( diff --git a/src/components/IconCollectionsBookmark.tsx b/src/components/IconCollectionsBookmark.tsx index 0a1eccfb6..ac4207a1e 100644 --- a/src/components/IconCollectionsBookmark.tsx +++ b/src/components/IconCollectionsBookmark.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCollectionsBookmark: React.FC = (props) => ( diff --git a/src/components/IconColorLens.tsx b/src/components/IconColorLens.tsx index 54c9b6b96..969f50b81 100644 --- a/src/components/IconColorLens.tsx +++ b/src/components/IconColorLens.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconColorLens: React.FC = (props) => ( diff --git a/src/components/IconColorize.tsx b/src/components/IconColorize.tsx index 881a823f2..560cd0964 100644 --- a/src/components/IconColorize.tsx +++ b/src/components/IconColorize.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconColorize: React.FC = (props) => ( diff --git a/src/components/IconComment.tsx b/src/components/IconComment.tsx index 95c0c318c..167457a2a 100644 --- a/src/components/IconComment.tsx +++ b/src/components/IconComment.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconComment: React.FC = (props) => ( diff --git a/src/components/IconCommentBank.tsx b/src/components/IconCommentBank.tsx index e521188bd..22692ff81 100644 --- a/src/components/IconCommentBank.tsx +++ b/src/components/IconCommentBank.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCommentBank: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconCompare.tsx b/src/components/IconCompare.tsx index 862c08e9d..988858e03 100644 --- a/src/components/IconCompare.tsx +++ b/src/components/IconCompare.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCompare: React.FC = (props) => ( diff --git a/src/components/IconCompareArrows.tsx b/src/components/IconCompareArrows.tsx index c0de741f6..df07e3cf6 100644 --- a/src/components/IconCompareArrows.tsx +++ b/src/components/IconCompareArrows.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCompareArrows: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconComputer.tsx b/src/components/IconComputer.tsx index b0f0104ea..4ac562d42 100644 --- a/src/components/IconComputer.tsx +++ b/src/components/IconComputer.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconComputer: React.FC = (props) => ( diff --git a/src/components/IconConfirmationNumber.tsx b/src/components/IconConfirmationNumber.tsx index 6f02c77d1..490010a86 100644 --- a/src/components/IconConfirmationNumber.tsx +++ b/src/components/IconConfirmationNumber.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconConfirmationNumber: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconContactPage.tsx b/src/components/IconContactPage.tsx index d92aac5bf..9c5324258 100644 --- a/src/components/IconContactPage.tsx +++ b/src/components/IconContactPage.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconContactPage: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconContactSupport.tsx b/src/components/IconContactSupport.tsx index 9c64b64e9..3b350bd92 100644 --- a/src/components/IconContactSupport.tsx +++ b/src/components/IconContactSupport.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconContactSupport: React.FC = (props) => ( diff --git a/src/components/IconContactless.tsx b/src/components/IconContactless.tsx index 0632c1108..9a6badedf 100644 --- a/src/components/IconContactless.tsx +++ b/src/components/IconContactless.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconContactless: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconContentCopy.tsx b/src/components/IconContentCopy.tsx index ab9f38981..c7219044f 100644 --- a/src/components/IconContentCopy.tsx +++ b/src/components/IconContentCopy.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconContentCopy: React.FC = (props) => ( diff --git a/src/components/IconContentCut.tsx b/src/components/IconContentCut.tsx index 3c9c881e9..2419b26ac 100644 --- a/src/components/IconContentCut.tsx +++ b/src/components/IconContentCut.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconContentCut: React.FC = (props) => ( diff --git a/src/components/IconContentPaste.tsx b/src/components/IconContentPaste.tsx index b8bff4e79..ce588ad23 100644 --- a/src/components/IconContentPaste.tsx +++ b/src/components/IconContentPaste.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconContentPaste: React.FC = (props) => ( diff --git a/src/components/IconControlCamera.tsx b/src/components/IconControlCamera.tsx index 7abe14171..59597dc1f 100644 --- a/src/components/IconControlCamera.tsx +++ b/src/components/IconControlCamera.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconControlCamera: React.FC = (props) => ( diff --git a/src/components/IconControlPoint.tsx b/src/components/IconControlPoint.tsx index 6ad46f26a..a6e9aee91 100644 --- a/src/components/IconControlPoint.tsx +++ b/src/components/IconControlPoint.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconControlPoint: React.FC = (props) => ( diff --git a/src/components/IconControlPointDuplicate.tsx b/src/components/IconControlPointDuplicate.tsx index 3bbbada2f..679e77a5b 100644 --- a/src/components/IconControlPointDuplicate.tsx +++ b/src/components/IconControlPointDuplicate.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconControlPointDuplicate: React.FC = (props) => ( diff --git a/src/components/IconCopyright.tsx b/src/components/IconCopyright.tsx index d8a19efe2..78677e1de 100644 --- a/src/components/IconCopyright.tsx +++ b/src/components/IconCopyright.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCopyright: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconCreateNewFolder.tsx b/src/components/IconCreateNewFolder.tsx index b45a70465..bf814d405 100644 --- a/src/components/IconCreateNewFolder.tsx +++ b/src/components/IconCreateNewFolder.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCreateNewFolder: React.FC = (props) => ( diff --git a/src/components/IconCreditCard.tsx b/src/components/IconCreditCard.tsx index 196202366..8b1eba6fc 100644 --- a/src/components/IconCreditCard.tsx +++ b/src/components/IconCreditCard.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCreditCard: React.FC = (props) => ( diff --git a/src/components/IconCrop.tsx b/src/components/IconCrop.tsx index bf5206ae5..4501af058 100644 --- a/src/components/IconCrop.tsx +++ b/src/components/IconCrop.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCrop: React.FC = (props) => ( diff --git a/src/components/IconCrop169.tsx b/src/components/IconCrop169.tsx index d2fdf871c..b29022d24 100644 --- a/src/components/IconCrop169.tsx +++ b/src/components/IconCrop169.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCrop169: React.FC = (props) => ( diff --git a/src/components/IconCrop32.tsx b/src/components/IconCrop32.tsx index b7425609c..5728867bd 100644 --- a/src/components/IconCrop32.tsx +++ b/src/components/IconCrop32.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCrop32: React.FC = (props) => ( diff --git a/src/components/IconCrop54.tsx b/src/components/IconCrop54.tsx index f149b9c42..06e10dd0f 100644 --- a/src/components/IconCrop54.tsx +++ b/src/components/IconCrop54.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCrop54: React.FC = (props) => ( diff --git a/src/components/IconCrop75.tsx b/src/components/IconCrop75.tsx index 2550b9e95..eabb3c0c7 100644 --- a/src/components/IconCrop75.tsx +++ b/src/components/IconCrop75.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCrop75: React.FC = (props) => ( diff --git a/src/components/IconCropDin.tsx b/src/components/IconCropDin.tsx index ce044b22b..8609d583d 100644 --- a/src/components/IconCropDin.tsx +++ b/src/components/IconCropDin.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCropDin: React.FC = (props) => ( diff --git a/src/components/IconCropFree.tsx b/src/components/IconCropFree.tsx index 65a8d58ca..370c8b0d2 100644 --- a/src/components/IconCropFree.tsx +++ b/src/components/IconCropFree.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCropFree: React.FC = (props) => ( diff --git a/src/components/IconCropLandscape.tsx b/src/components/IconCropLandscape.tsx index 0351624b1..847280055 100644 --- a/src/components/IconCropLandscape.tsx +++ b/src/components/IconCropLandscape.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCropLandscape: React.FC = (props) => ( diff --git a/src/components/IconCropOriginal.tsx b/src/components/IconCropOriginal.tsx index 49d355440..9a2176928 100644 --- a/src/components/IconCropOriginal.tsx +++ b/src/components/IconCropOriginal.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCropOriginal: React.FC = (props) => ( diff --git a/src/components/IconCropPortrait.tsx b/src/components/IconCropPortrait.tsx index 031dd8e85..dd4fc3540 100644 --- a/src/components/IconCropPortrait.tsx +++ b/src/components/IconCropPortrait.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCropPortrait: React.FC = (props) => ( diff --git a/src/components/IconCropRotate.tsx b/src/components/IconCropRotate.tsx index a1d5d1b44..f30cdd07d 100644 --- a/src/components/IconCropRotate.tsx +++ b/src/components/IconCropRotate.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCropRotate: React.FC = (props) => ( diff --git a/src/components/IconCropSquare.tsx b/src/components/IconCropSquare.tsx index f6366e6a7..3a03024f8 100644 --- a/src/components/IconCropSquare.tsx +++ b/src/components/IconCropSquare.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconCropSquare: React.FC = (props) => ( diff --git a/src/components/IconDashboard.tsx b/src/components/IconDashboard.tsx index a17799541..d394383f7 100644 --- a/src/components/IconDashboard.tsx +++ b/src/components/IconDashboard.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDashboard: React.FC = (props) => ( diff --git a/src/components/IconDataUsage.tsx b/src/components/IconDataUsage.tsx index 43aef88cb..dd2c58a81 100644 --- a/src/components/IconDataUsage.tsx +++ b/src/components/IconDataUsage.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDataUsage: React.FC = (props) => ( diff --git a/src/components/IconDateRange.tsx b/src/components/IconDateRange.tsx index e7330ea63..10c70bfe4 100644 --- a/src/components/IconDateRange.tsx +++ b/src/components/IconDateRange.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDateRange: React.FC = (props) => ( diff --git a/src/components/IconDeck.tsx b/src/components/IconDeck.tsx index 784fc56ba..e523af280 100644 --- a/src/components/IconDeck.tsx +++ b/src/components/IconDeck.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDeck: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconDelete.tsx b/src/components/IconDelete.tsx index f1156cc14..b9c72f052 100644 --- a/src/components/IconDelete.tsx +++ b/src/components/IconDelete.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDelete: React.FC = (props) => ( diff --git a/src/components/IconDeleteForever.tsx b/src/components/IconDeleteForever.tsx index 3b026bddd..69a80c99e 100644 --- a/src/components/IconDeleteForever.tsx +++ b/src/components/IconDeleteForever.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDeleteForever: React.FC = (props) => ( diff --git a/src/components/IconDeleteOutline.tsx b/src/components/IconDeleteOutline.tsx index d0cfe36e2..3705fa080 100644 --- a/src/components/IconDeleteOutline.tsx +++ b/src/components/IconDeleteOutline.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDeleteOutline: React.FC = (props) => ( diff --git a/src/components/IconDeleteSweep.tsx b/src/components/IconDeleteSweep.tsx index fe44c6cb6..92eb6f426 100644 --- a/src/components/IconDeleteSweep.tsx +++ b/src/components/IconDeleteSweep.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDeleteSweep: React.FC = (props) => ( diff --git a/src/components/IconDepartureBoard.tsx b/src/components/IconDepartureBoard.tsx index 7e7189488..e6a871883 100644 --- a/src/components/IconDepartureBoard.tsx +++ b/src/components/IconDepartureBoard.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDepartureBoard: React.FC = (props) => ( diff --git a/src/components/IconDescription.tsx b/src/components/IconDescription.tsx index 15877a002..ca08a4bb0 100644 --- a/src/components/IconDescription.tsx +++ b/src/components/IconDescription.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDescription: React.FC = (props) => ( diff --git a/src/components/IconDesignServices.tsx b/src/components/IconDesignServices.tsx index b1d160dd2..c5af17d83 100644 --- a/src/components/IconDesignServices.tsx +++ b/src/components/IconDesignServices.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDesignServices: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconDesktopMac.tsx b/src/components/IconDesktopMac.tsx index 8914cdac1..799a454cb 100644 --- a/src/components/IconDesktopMac.tsx +++ b/src/components/IconDesktopMac.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDesktopMac: React.FC = (props) => ( diff --git a/src/components/IconDesktopWindows.tsx b/src/components/IconDesktopWindows.tsx index 01ba014ba..fc066c4db 100644 --- a/src/components/IconDesktopWindows.tsx +++ b/src/components/IconDesktopWindows.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDesktopWindows: React.FC = (props) => ( diff --git a/src/components/IconDetails.tsx b/src/components/IconDetails.tsx index c86a7905b..0e06fb772 100644 --- a/src/components/IconDetails.tsx +++ b/src/components/IconDetails.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDetails: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconDeveloperMode.tsx b/src/components/IconDeveloperMode.tsx index 5d2c4bb9c..899e81032 100644 --- a/src/components/IconDeveloperMode.tsx +++ b/src/components/IconDeveloperMode.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDeveloperMode: React.FC = (props) => ( diff --git a/src/components/IconDeviceHub.tsx b/src/components/IconDeviceHub.tsx index a5abc59b2..5fbc6891b 100644 --- a/src/components/IconDeviceHub.tsx +++ b/src/components/IconDeviceHub.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDeviceHub: React.FC = (props) => ( diff --git a/src/components/IconDeviceUnknown.tsx b/src/components/IconDeviceUnknown.tsx index a3a2be174..3209f7707 100644 --- a/src/components/IconDeviceUnknown.tsx +++ b/src/components/IconDeviceUnknown.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDeviceUnknown: React.FC = (props) => ( diff --git a/src/components/IconDevices.tsx b/src/components/IconDevices.tsx index 45051d468..bcaf99f99 100644 --- a/src/components/IconDevices.tsx +++ b/src/components/IconDevices.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDevices: React.FC = (props) => ( diff --git a/src/components/IconDevicesOther.tsx b/src/components/IconDevicesOther.tsx index 1730dfbe9..20e9f5a56 100644 --- a/src/components/IconDevicesOther.tsx +++ b/src/components/IconDevicesOther.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDevicesOther: React.FC = (props) => ( diff --git a/src/components/IconDialerSip.tsx b/src/components/IconDialerSip.tsx index 1d5be037b..754e92583 100644 --- a/src/components/IconDialerSip.tsx +++ b/src/components/IconDialerSip.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDialerSip: React.FC = (props) => ( diff --git a/src/components/IconDialpad.tsx b/src/components/IconDialpad.tsx index 54c826da6..a4f8a1b92 100644 --- a/src/components/IconDialpad.tsx +++ b/src/components/IconDialpad.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDialpad: React.FC = (props) => ( diff --git a/src/components/IconDirections.tsx b/src/components/IconDirections.tsx index 6c0633ab1..bab5ceb73 100644 --- a/src/components/IconDirections.tsx +++ b/src/components/IconDirections.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDirections: React.FC = (props) => ( diff --git a/src/components/IconDirectionsBike.tsx b/src/components/IconDirectionsBike.tsx index d8b255ab2..aee2daa6a 100644 --- a/src/components/IconDirectionsBike.tsx +++ b/src/components/IconDirectionsBike.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDirectionsBike: React.FC = (props) => ( diff --git a/src/components/IconDirectionsBoat.tsx b/src/components/IconDirectionsBoat.tsx index 4e3acdc90..1c2c27182 100644 --- a/src/components/IconDirectionsBoat.tsx +++ b/src/components/IconDirectionsBoat.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDirectionsBoat: React.FC = (props) => ( diff --git a/src/components/IconDirectionsBus.tsx b/src/components/IconDirectionsBus.tsx index b6ba1ebab..179170873 100644 --- a/src/components/IconDirectionsBus.tsx +++ b/src/components/IconDirectionsBus.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDirectionsBus: React.FC = (props) => ( diff --git a/src/components/IconDirectionsCar.tsx b/src/components/IconDirectionsCar.tsx index 389c540bf..47e10e72f 100644 --- a/src/components/IconDirectionsCar.tsx +++ b/src/components/IconDirectionsCar.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDirectionsCar: React.FC = (props) => ( diff --git a/src/components/IconDirectionsOff.tsx b/src/components/IconDirectionsOff.tsx index c2d703e02..9fcb725ed 100644 --- a/src/components/IconDirectionsOff.tsx +++ b/src/components/IconDirectionsOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDirectionsOff: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconDirectionsRun.tsx b/src/components/IconDirectionsRun.tsx index 49044257a..7e1fea24c 100644 --- a/src/components/IconDirectionsRun.tsx +++ b/src/components/IconDirectionsRun.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDirectionsRun: React.FC = (props) => ( diff --git a/src/components/IconDirectionsSubway.tsx b/src/components/IconDirectionsSubway.tsx index 57b8032ca..675c8b2e9 100644 --- a/src/components/IconDirectionsSubway.tsx +++ b/src/components/IconDirectionsSubway.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDirectionsSubway: React.FC = (props) => ( diff --git a/src/components/IconDirectionsTransit.tsx b/src/components/IconDirectionsTransit.tsx index 3bf44576c..7f8070f21 100644 --- a/src/components/IconDirectionsTransit.tsx +++ b/src/components/IconDirectionsTransit.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDirectionsTransit: React.FC = (props) => ( diff --git a/src/components/IconDirectionsWalk.tsx b/src/components/IconDirectionsWalk.tsx index 0e92334b3..0f73022d6 100644 --- a/src/components/IconDirectionsWalk.tsx +++ b/src/components/IconDirectionsWalk.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDirectionsWalk: React.FC = (props) => ( diff --git a/src/components/IconDisabledByDefault.tsx b/src/components/IconDisabledByDefault.tsx index 4a22cb6c8..1f85a137c 100644 --- a/src/components/IconDisabledByDefault.tsx +++ b/src/components/IconDisabledByDefault.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDisabledByDefault: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconDns.tsx b/src/components/IconDns.tsx index c7226dfa9..fa6ef2765 100644 --- a/src/components/IconDns.tsx +++ b/src/components/IconDns.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDns: React.FC = (props) => ( diff --git a/src/components/IconDoNotStep.tsx b/src/components/IconDoNotStep.tsx index c6ed4c5f2..99b40fc2a 100644 --- a/src/components/IconDoNotStep.tsx +++ b/src/components/IconDoNotStep.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDoNotStep: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconDomain.tsx b/src/components/IconDomain.tsx index d78a58b14..8af31b777 100644 --- a/src/components/IconDomain.tsx +++ b/src/components/IconDomain.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDomain: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconDomainVerification.tsx b/src/components/IconDomainVerification.tsx index f153d5596..10e37593c 100644 --- a/src/components/IconDomainVerification.tsx +++ b/src/components/IconDomainVerification.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDomainVerification: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconDoneAll.tsx b/src/components/IconDoneAll.tsx index 63c40658e..14170781e 100644 --- a/src/components/IconDoneAll.tsx +++ b/src/components/IconDoneAll.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDoneAll: React.FC = (props) => ( diff --git a/src/components/IconDoneOutline.tsx b/src/components/IconDoneOutline.tsx index 0f220b56b..d85e506de 100644 --- a/src/components/IconDoneOutline.tsx +++ b/src/components/IconDoneOutline.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDoneOutline: React.FC = (props) => ( diff --git a/src/components/IconDonutLarge.tsx b/src/components/IconDonutLarge.tsx index be3bce19f..63b72a3f4 100644 --- a/src/components/IconDonutLarge.tsx +++ b/src/components/IconDonutLarge.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDonutLarge: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconDoubleArrow.tsx b/src/components/IconDoubleArrow.tsx index 1850bc670..860b36755 100644 --- a/src/components/IconDoubleArrow.tsx +++ b/src/components/IconDoubleArrow.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDoubleArrow: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconDragHandle.tsx b/src/components/IconDragHandle.tsx index 7b21e0a42..dc9595da1 100644 --- a/src/components/IconDragHandle.tsx +++ b/src/components/IconDragHandle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDragHandle: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconDriveEta.tsx b/src/components/IconDriveEta.tsx index c89e9440c..97e976aad 100644 --- a/src/components/IconDriveEta.tsx +++ b/src/components/IconDriveEta.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDriveEta: React.FC = (props) => ( diff --git a/src/components/IconDry.tsx b/src/components/IconDry.tsx index a788e8466..e18d5f51e 100644 --- a/src/components/IconDry.tsx +++ b/src/components/IconDry.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDry: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconDvr.tsx b/src/components/IconDvr.tsx index d3faf4886..401d727ec 100644 --- a/src/components/IconDvr.tsx +++ b/src/components/IconDvr.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDvr: React.FC = (props) => ( diff --git a/src/components/IconDynamicFeed.tsx b/src/components/IconDynamicFeed.tsx index 925c372a9..0001aa87f 100644 --- a/src/components/IconDynamicFeed.tsx +++ b/src/components/IconDynamicFeed.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconDynamicFeed: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconEditAttributes.tsx b/src/components/IconEditAttributes.tsx index 4a5873cfa..fbba2cb9e 100644 --- a/src/components/IconEditAttributes.tsx +++ b/src/components/IconEditAttributes.tsx @@ -1,8 +1,9 @@ import React from 'react' import { IconProps } from './types' + const IconEditAttributes: React.FC = (props) => ( - + ) diff --git a/src/components/IconEditLocation.tsx b/src/components/IconEditLocation.tsx index 43267a4ae..66439a185 100644 --- a/src/components/IconEditLocation.tsx +++ b/src/components/IconEditLocation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconEditLocation: React.FC = (props) => ( diff --git a/src/components/IconEditRoad.tsx b/src/components/IconEditRoad.tsx index 091caa11a..89cb10ca3 100644 --- a/src/components/IconEditRoad.tsx +++ b/src/components/IconEditRoad.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconEditRoad: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconElderly.tsx b/src/components/IconElderly.tsx index 16c1dcc90..3353589e0 100644 --- a/src/components/IconElderly.tsx +++ b/src/components/IconElderly.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconElderly: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconEmojiEmotions.tsx b/src/components/IconEmojiEmotions.tsx index dea0707d3..6d74516b8 100644 --- a/src/components/IconEmojiEmotions.tsx +++ b/src/components/IconEmojiEmotions.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconEmojiEmotions: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconEqualizer.tsx b/src/components/IconEqualizer.tsx index c04ce05e9..f59410732 100644 --- a/src/components/IconEqualizer.tsx +++ b/src/components/IconEqualizer.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconEqualizer: React.FC = (props) => ( diff --git a/src/components/IconError.tsx b/src/components/IconError.tsx index c2f5919d0..efc108c66 100644 --- a/src/components/IconError.tsx +++ b/src/components/IconError.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconError: React.FC = (props) => ( diff --git a/src/components/IconErrorOutline.tsx b/src/components/IconErrorOutline.tsx index 755c8429a..fdbf8df21 100644 --- a/src/components/IconErrorOutline.tsx +++ b/src/components/IconErrorOutline.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconErrorOutline: React.FC = (props) => ( diff --git a/src/components/IconEscalator.tsx b/src/components/IconEscalator.tsx index 75b2354d8..f283f4cab 100644 --- a/src/components/IconEscalator.tsx +++ b/src/components/IconEscalator.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconEscalator: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconEvStation.tsx b/src/components/IconEvStation.tsx index ea960200a..52aaeceff 100644 --- a/src/components/IconEvStation.tsx +++ b/src/components/IconEvStation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconEvStation: React.FC = (props) => ( diff --git a/src/components/IconEvent.tsx b/src/components/IconEvent.tsx index 634086e7b..12bc2fad9 100644 --- a/src/components/IconEvent.tsx +++ b/src/components/IconEvent.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconEvent: React.FC = (props) => ( diff --git a/src/components/IconEventAvailable.tsx b/src/components/IconEventAvailable.tsx index 074dd3ba5..b6a67f841 100644 --- a/src/components/IconEventAvailable.tsx +++ b/src/components/IconEventAvailable.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconEventAvailable: React.FC = (props) => ( diff --git a/src/components/IconEventBusy.tsx b/src/components/IconEventBusy.tsx index b833dcc6e..b18f86763 100644 --- a/src/components/IconEventBusy.tsx +++ b/src/components/IconEventBusy.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconEventBusy: React.FC = (props) => ( diff --git a/src/components/IconEventNote.tsx b/src/components/IconEventNote.tsx index 1fe069b3c..1ae396e25 100644 --- a/src/components/IconEventNote.tsx +++ b/src/components/IconEventNote.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconEventNote: React.FC = (props) => ( diff --git a/src/components/IconEventSeat.tsx b/src/components/IconEventSeat.tsx index b108ef439..c6ede355d 100644 --- a/src/components/IconEventSeat.tsx +++ b/src/components/IconEventSeat.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconEventSeat: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconExpandLess.tsx b/src/components/IconExpandLess.tsx index 65bb4c0ce..29306b7cf 100644 --- a/src/components/IconExpandLess.tsx +++ b/src/components/IconExpandLess.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconExpandLess: React.FC = (props) => ( diff --git a/src/components/IconExpandMore.tsx b/src/components/IconExpandMore.tsx index fc533173d..41123e8fa 100644 --- a/src/components/IconExpandMore.tsx +++ b/src/components/IconExpandMore.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconExpandMore: React.FC = (props) => ( diff --git a/src/components/IconExplicit.tsx b/src/components/IconExplicit.tsx index 965bbc49d..4557c2785 100644 --- a/src/components/IconExplicit.tsx +++ b/src/components/IconExplicit.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconExplicit: React.FC = (props) => ( diff --git a/src/components/IconExplore.tsx b/src/components/IconExplore.tsx index df706e5c0..0a73353db 100644 --- a/src/components/IconExplore.tsx +++ b/src/components/IconExplore.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconExplore: React.FC = (props) => ( diff --git a/src/components/IconExploreOff.tsx b/src/components/IconExploreOff.tsx index 7b254a88d..7b7a70e85 100644 --- a/src/components/IconExploreOff.tsx +++ b/src/components/IconExploreOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconExploreOff: React.FC = (props) => ( diff --git a/src/components/IconExposure.tsx b/src/components/IconExposure.tsx index 4ce1d329b..10f62fbdf 100644 --- a/src/components/IconExposure.tsx +++ b/src/components/IconExposure.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconExposure: React.FC = (props) => ( diff --git a/src/components/IconExposureNeg1.tsx b/src/components/IconExposureNeg1.tsx index 768b14106..abae1692c 100644 --- a/src/components/IconExposureNeg1.tsx +++ b/src/components/IconExposureNeg1.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconExposureNeg1: React.FC = (props) => ( diff --git a/src/components/IconExposureNeg2.tsx b/src/components/IconExposureNeg2.tsx index f8c8a64bb..93e53bc7f 100644 --- a/src/components/IconExposureNeg2.tsx +++ b/src/components/IconExposureNeg2.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconExposureNeg2: React.FC = (props) => ( diff --git a/src/components/IconExposurePlus1.tsx b/src/components/IconExposurePlus1.tsx index 23ad0dc3e..0b6f0b142 100644 --- a/src/components/IconExposurePlus1.tsx +++ b/src/components/IconExposurePlus1.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconExposurePlus1: React.FC = (props) => ( diff --git a/src/components/IconExposurePlus2.tsx b/src/components/IconExposurePlus2.tsx index 0864771a6..c1cd6b80f 100644 --- a/src/components/IconExposurePlus2.tsx +++ b/src/components/IconExposurePlus2.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconExposurePlus2: React.FC = (props) => ( diff --git a/src/components/IconExposureZero.tsx b/src/components/IconExposureZero.tsx index b85010e6e..3e7e2c375 100644 --- a/src/components/IconExposureZero.tsx +++ b/src/components/IconExposureZero.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconExposureZero: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconFace.tsx b/src/components/IconFace.tsx index d6a91c9f0..c814a9b64 100644 --- a/src/components/IconFace.tsx +++ b/src/components/IconFace.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFace: React.FC = (props) => ( diff --git a/src/components/IconFacebook.tsx b/src/components/IconFacebook.tsx index 176e9395a..c726cd70c 100644 --- a/src/components/IconFacebook.tsx +++ b/src/components/IconFacebook.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFacebook: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconFastRewind.tsx b/src/components/IconFastRewind.tsx index b910f32e9..4890405c6 100644 --- a/src/components/IconFastRewind.tsx +++ b/src/components/IconFastRewind.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFastRewind: React.FC = (props) => ( diff --git a/src/components/IconFastfood.tsx b/src/components/IconFastfood.tsx index 42de7a4b6..e137c0dbb 100644 --- a/src/components/IconFastfood.tsx +++ b/src/components/IconFastfood.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFastfood: React.FC = (props) => ( diff --git a/src/components/IconFavorite.tsx b/src/components/IconFavorite.tsx index b26cc7810..c5160ec93 100644 --- a/src/components/IconFavorite.tsx +++ b/src/components/IconFavorite.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFavorite: React.FC = (props) => ( diff --git a/src/components/IconFavoriteBorder.tsx b/src/components/IconFavoriteBorder.tsx index 3b143ae19..ac1cbcc31 100644 --- a/src/components/IconFavoriteBorder.tsx +++ b/src/components/IconFavoriteBorder.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFavoriteBorder: React.FC = (props) => ( diff --git a/src/components/IconFeaturedPlayList.tsx b/src/components/IconFeaturedPlayList.tsx index effbe6cb1..2d4662567 100644 --- a/src/components/IconFeaturedPlayList.tsx +++ b/src/components/IconFeaturedPlayList.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFeaturedPlayList: React.FC = (props) => ( diff --git a/src/components/IconFeaturedVideo.tsx b/src/components/IconFeaturedVideo.tsx index aba12f9ac..eaaf8d4a5 100644 --- a/src/components/IconFeaturedVideo.tsx +++ b/src/components/IconFeaturedVideo.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFeaturedVideo: React.FC = (props) => ( diff --git a/src/components/IconFeedback.tsx b/src/components/IconFeedback.tsx index 3d2410d20..a14aa7ec5 100644 --- a/src/components/IconFeedback.tsx +++ b/src/components/IconFeedback.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFeedback: React.FC = (props) => ( diff --git a/src/components/IconFence.tsx b/src/components/IconFence.tsx index d65f710e9..4a6279ee0 100644 --- a/src/components/IconFence.tsx +++ b/src/components/IconFence.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFence: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconFiberNew.tsx b/src/components/IconFiberNew.tsx index 1f9bcbffd..93e84e36c 100644 --- a/src/components/IconFiberNew.tsx +++ b/src/components/IconFiberNew.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFiberNew: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconFiberSmartRecord.tsx b/src/components/IconFiberSmartRecord.tsx index f902bbeb2..c8dcd2109 100644 --- a/src/components/IconFiberSmartRecord.tsx +++ b/src/components/IconFiberSmartRecord.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFiberSmartRecord: React.FC = (props) => ( diff --git a/src/components/IconFileCopy.tsx b/src/components/IconFileCopy.tsx index 058606a27..80aeea994 100644 --- a/src/components/IconFileCopy.tsx +++ b/src/components/IconFileCopy.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFileCopy: React.FC = (props) => ( diff --git a/src/components/IconFilter.tsx b/src/components/IconFilter.tsx index f31b74147..301d5c783 100644 --- a/src/components/IconFilter.tsx +++ b/src/components/IconFilter.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilter: React.FC = (props) => ( diff --git a/src/components/IconFilter1.tsx b/src/components/IconFilter1.tsx index 835251a82..6c4582123 100644 --- a/src/components/IconFilter1.tsx +++ b/src/components/IconFilter1.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilter1: React.FC = (props) => ( diff --git a/src/components/IconFilter2.tsx b/src/components/IconFilter2.tsx index ade9457a7..1e36fc384 100644 --- a/src/components/IconFilter2.tsx +++ b/src/components/IconFilter2.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilter2: React.FC = (props) => ( diff --git a/src/components/IconFilter3.tsx b/src/components/IconFilter3.tsx index 70de994bc..1a26f3f42 100644 --- a/src/components/IconFilter3.tsx +++ b/src/components/IconFilter3.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilter3: React.FC = (props) => ( diff --git a/src/components/IconFilter4.tsx b/src/components/IconFilter4.tsx index b7140411e..201f64c8d 100644 --- a/src/components/IconFilter4.tsx +++ b/src/components/IconFilter4.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilter4: React.FC = (props) => ( diff --git a/src/components/IconFilter5.tsx b/src/components/IconFilter5.tsx index f655cfd51..e3af09030 100644 --- a/src/components/IconFilter5.tsx +++ b/src/components/IconFilter5.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilter5: React.FC = (props) => ( diff --git a/src/components/IconFilter6.tsx b/src/components/IconFilter6.tsx index f1aefeb1a..5788c9cea 100644 --- a/src/components/IconFilter6.tsx +++ b/src/components/IconFilter6.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilter6: React.FC = (props) => ( diff --git a/src/components/IconFilter7.tsx b/src/components/IconFilter7.tsx index 46e7c3834..c9dd09798 100644 --- a/src/components/IconFilter7.tsx +++ b/src/components/IconFilter7.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilter7: React.FC = (props) => ( diff --git a/src/components/IconFilter8.tsx b/src/components/IconFilter8.tsx index ecb8c7417..33f26b21f 100644 --- a/src/components/IconFilter8.tsx +++ b/src/components/IconFilter8.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilter8: React.FC = (props) => ( diff --git a/src/components/IconFilter9.tsx b/src/components/IconFilter9.tsx index 64a02811e..2c4a9bbaf 100644 --- a/src/components/IconFilter9.tsx +++ b/src/components/IconFilter9.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilter9: React.FC = (props) => ( diff --git a/src/components/IconFilter9Plus.tsx b/src/components/IconFilter9Plus.tsx index 54c5321f2..998e1afd2 100644 --- a/src/components/IconFilter9Plus.tsx +++ b/src/components/IconFilter9Plus.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilter9Plus: React.FC = (props) => ( diff --git a/src/components/IconFilterAlt.tsx b/src/components/IconFilterAlt.tsx index 2910b201f..f015a6b9e 100644 --- a/src/components/IconFilterAlt.tsx +++ b/src/components/IconFilterAlt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilterAlt: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconFilterCenterFocus.tsx b/src/components/IconFilterCenterFocus.tsx index 194db7364..fcf344062 100644 --- a/src/components/IconFilterCenterFocus.tsx +++ b/src/components/IconFilterCenterFocus.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilterCenterFocus: React.FC = (props) => ( diff --git a/src/components/IconFilterDrama.tsx b/src/components/IconFilterDrama.tsx index 60f74de70..1452c3ac0 100644 --- a/src/components/IconFilterDrama.tsx +++ b/src/components/IconFilterDrama.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilterDrama: React.FC = (props) => ( diff --git a/src/components/IconFilterFrames.tsx b/src/components/IconFilterFrames.tsx index 8685bae5d..4f75ebf3d 100644 --- a/src/components/IconFilterFrames.tsx +++ b/src/components/IconFilterFrames.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilterFrames: React.FC = (props) => ( diff --git a/src/components/IconFilterHdr.tsx b/src/components/IconFilterHdr.tsx index 28cc07aec..c2b45d275 100644 --- a/src/components/IconFilterHdr.tsx +++ b/src/components/IconFilterHdr.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilterHdr: React.FC = (props) => ( diff --git a/src/components/IconFilterList.tsx b/src/components/IconFilterList.tsx index b25f8b2bc..569bd3ff9 100644 --- a/src/components/IconFilterList.tsx +++ b/src/components/IconFilterList.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilterList: React.FC = (props) => ( diff --git a/src/components/IconFilterNone.tsx b/src/components/IconFilterNone.tsx index 246796de5..240ed0fa7 100644 --- a/src/components/IconFilterNone.tsx +++ b/src/components/IconFilterNone.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilterNone: React.FC = (props) => ( diff --git a/src/components/IconFilterTiltShift.tsx b/src/components/IconFilterTiltShift.tsx index 3d75084d0..d3b374d74 100644 --- a/src/components/IconFilterTiltShift.tsx +++ b/src/components/IconFilterTiltShift.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilterTiltShift: React.FC = (props) => ( diff --git a/src/components/IconFilterVintage.tsx b/src/components/IconFilterVintage.tsx index 981a1fcae..bfd3a4708 100644 --- a/src/components/IconFilterVintage.tsx +++ b/src/components/IconFilterVintage.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFilterVintage: React.FC = (props) => ( diff --git a/src/components/IconFindInPage.tsx b/src/components/IconFindInPage.tsx index 37ff9817f..d3d08afe7 100644 --- a/src/components/IconFindInPage.tsx +++ b/src/components/IconFindInPage.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFindInPage: React.FC = (props) => ( diff --git a/src/components/IconFindReplace.tsx b/src/components/IconFindReplace.tsx index 9788dc6b1..9cd045251 100644 --- a/src/components/IconFindReplace.tsx +++ b/src/components/IconFindReplace.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFindReplace: React.FC = (props) => ( diff --git a/src/components/IconFingerprint.tsx b/src/components/IconFingerprint.tsx index 8a4fba4a2..993794f26 100644 --- a/src/components/IconFingerprint.tsx +++ b/src/components/IconFingerprint.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFingerprint: React.FC = (props) => ( diff --git a/src/components/IconFireExtinguisher.tsx b/src/components/IconFireExtinguisher.tsx index 14b574ccb..5584822cd 100644 --- a/src/components/IconFireExtinguisher.tsx +++ b/src/components/IconFireExtinguisher.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFireExtinguisher: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconFitnessCenter.tsx b/src/components/IconFitnessCenter.tsx index b0fa6c3cf..067b4d0a0 100644 --- a/src/components/IconFitnessCenter.tsx +++ b/src/components/IconFitnessCenter.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFitnessCenter: React.FC = (props) => ( diff --git a/src/components/IconFlag.tsx b/src/components/IconFlag.tsx index 92759bcb7..2ecb77068 100644 --- a/src/components/IconFlag.tsx +++ b/src/components/IconFlag.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFlag: React.FC = (props) => ( diff --git a/src/components/IconFlaky.tsx b/src/components/IconFlaky.tsx index 083ca23ff..dcaa600da 100644 --- a/src/components/IconFlaky.tsx +++ b/src/components/IconFlaky.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFlaky: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconFlashAuto.tsx b/src/components/IconFlashAuto.tsx index ce1b15adb..eaeba0153 100644 --- a/src/components/IconFlashAuto.tsx +++ b/src/components/IconFlashAuto.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFlashAuto: React.FC = (props) => ( diff --git a/src/components/IconFlashOff.tsx b/src/components/IconFlashOff.tsx index 6f3b734e6..a08de67c8 100644 --- a/src/components/IconFlashOff.tsx +++ b/src/components/IconFlashOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFlashOff: React.FC = (props) => ( diff --git a/src/components/IconFlashOn.tsx b/src/components/IconFlashOn.tsx index 291145be7..7b1944b69 100644 --- a/src/components/IconFlashOn.tsx +++ b/src/components/IconFlashOn.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFlashOn: React.FC = (props) => ( diff --git a/src/components/IconFlight.tsx b/src/components/IconFlight.tsx index 66bac3c0b..2dc9401de 100644 --- a/src/components/IconFlight.tsx +++ b/src/components/IconFlight.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFlight: React.FC = (props) => ( diff --git a/src/components/IconFlightLand.tsx b/src/components/IconFlightLand.tsx index f533282eb..16aa06424 100644 --- a/src/components/IconFlightLand.tsx +++ b/src/components/IconFlightLand.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFlightLand: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconFlipCameraAndroid.tsx b/src/components/IconFlipCameraAndroid.tsx index 0580a486b..ad7f673e7 100644 --- a/src/components/IconFlipCameraAndroid.tsx +++ b/src/components/IconFlipCameraAndroid.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFlipCameraAndroid: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconFlipToFront.tsx b/src/components/IconFlipToFront.tsx index e0ea844fc..51966e7ec 100644 --- a/src/components/IconFlipToFront.tsx +++ b/src/components/IconFlipToFront.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFlipToFront: React.FC = (props) => ( diff --git a/src/components/IconFolder.tsx b/src/components/IconFolder.tsx index eede167a9..26fc911d4 100644 --- a/src/components/IconFolder.tsx +++ b/src/components/IconFolder.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFolder: React.FC = (props) => ( diff --git a/src/components/IconFolderOpen.tsx b/src/components/IconFolderOpen.tsx index a3d8cb9f6..8096dad8b 100644 --- a/src/components/IconFolderOpen.tsx +++ b/src/components/IconFolderOpen.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFolderOpen: React.FC = (props) => ( diff --git a/src/components/IconFolderShared.tsx b/src/components/IconFolderShared.tsx index a9bcca617..8f77d56c4 100644 --- a/src/components/IconFolderShared.tsx +++ b/src/components/IconFolderShared.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFolderShared: React.FC = (props) => ( diff --git a/src/components/IconFolderSpecial.tsx b/src/components/IconFolderSpecial.tsx index 9deb0bfd2..0af0a5460 100644 --- a/src/components/IconFolderSpecial.tsx +++ b/src/components/IconFolderSpecial.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFolderSpecial: React.FC = (props) => ( diff --git a/src/components/IconFollowTheSigns.tsx b/src/components/IconFollowTheSigns.tsx index 36a7432bf..5856209ad 100644 --- a/src/components/IconFollowTheSigns.tsx +++ b/src/components/IconFollowTheSigns.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFollowTheSigns: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconFormatAlignJustify.tsx b/src/components/IconFormatAlignJustify.tsx index 317ba717d..656ba3d5c 100644 --- a/src/components/IconFormatAlignJustify.tsx +++ b/src/components/IconFormatAlignJustify.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatAlignJustify: React.FC = (props) => ( diff --git a/src/components/IconFormatAlignLeft.tsx b/src/components/IconFormatAlignLeft.tsx index ec1b05e85..db6bd364a 100644 --- a/src/components/IconFormatAlignLeft.tsx +++ b/src/components/IconFormatAlignLeft.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatAlignLeft: React.FC = (props) => ( diff --git a/src/components/IconFormatAlignRight.tsx b/src/components/IconFormatAlignRight.tsx index 0430a4f36..368984ada 100644 --- a/src/components/IconFormatAlignRight.tsx +++ b/src/components/IconFormatAlignRight.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatAlignRight: React.FC = (props) => ( diff --git a/src/components/IconFormatBold.tsx b/src/components/IconFormatBold.tsx index e131fcea7..dc731deef 100644 --- a/src/components/IconFormatBold.tsx +++ b/src/components/IconFormatBold.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatBold: React.FC = (props) => ( diff --git a/src/components/IconFormatClear.tsx b/src/components/IconFormatClear.tsx index 488976fe3..f4653d1c1 100644 --- a/src/components/IconFormatClear.tsx +++ b/src/components/IconFormatClear.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatClear: React.FC = (props) => ( diff --git a/src/components/IconFormatColorReset.tsx b/src/components/IconFormatColorReset.tsx index 2da6b8fb6..b3b969196 100644 --- a/src/components/IconFormatColorReset.tsx +++ b/src/components/IconFormatColorReset.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatColorReset: React.FC = (props) => ( diff --git a/src/components/IconFormatIndentDecrease.tsx b/src/components/IconFormatIndentDecrease.tsx index a39c6b946..b892d9075 100644 --- a/src/components/IconFormatIndentDecrease.tsx +++ b/src/components/IconFormatIndentDecrease.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatIndentDecrease: React.FC = (props) => ( diff --git a/src/components/IconFormatIndentIncrease.tsx b/src/components/IconFormatIndentIncrease.tsx index 7f8c68263..90c13aa7a 100644 --- a/src/components/IconFormatIndentIncrease.tsx +++ b/src/components/IconFormatIndentIncrease.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatIndentIncrease: React.FC = (props) => ( diff --git a/src/components/IconFormatItalic.tsx b/src/components/IconFormatItalic.tsx index 0b311d381..5bdd7f78e 100644 --- a/src/components/IconFormatItalic.tsx +++ b/src/components/IconFormatItalic.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatItalic: React.FC = (props) => ( diff --git a/src/components/IconFormatLineSpacing.tsx b/src/components/IconFormatLineSpacing.tsx index eb51bc9a8..8d174a365 100644 --- a/src/components/IconFormatLineSpacing.tsx +++ b/src/components/IconFormatLineSpacing.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatLineSpacing: React.FC = (props) => ( diff --git a/src/components/IconFormatListBulleted.tsx b/src/components/IconFormatListBulleted.tsx index 46e4dcbaa..047bc6911 100644 --- a/src/components/IconFormatListBulleted.tsx +++ b/src/components/IconFormatListBulleted.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatListBulleted: React.FC = (props) => ( diff --git a/src/components/IconFormatListNumbered.tsx b/src/components/IconFormatListNumbered.tsx index 10bc48cc7..09243a715 100644 --- a/src/components/IconFormatListNumbered.tsx +++ b/src/components/IconFormatListNumbered.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatListNumbered: React.FC = (props) => ( diff --git a/src/components/IconFormatListNumberedRtl.tsx b/src/components/IconFormatListNumberedRtl.tsx index 4939db07c..bdf0a2414 100644 --- a/src/components/IconFormatListNumberedRtl.tsx +++ b/src/components/IconFormatListNumberedRtl.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatListNumberedRtl: React.FC = (props) => ( diff --git a/src/components/IconFormatPaint.tsx b/src/components/IconFormatPaint.tsx index 2644cf0e6..88a554bb8 100644 --- a/src/components/IconFormatPaint.tsx +++ b/src/components/IconFormatPaint.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatPaint: React.FC = (props) => ( diff --git a/src/components/IconFormatQuote.tsx b/src/components/IconFormatQuote.tsx index 80cc83273..4c688843c 100644 --- a/src/components/IconFormatQuote.tsx +++ b/src/components/IconFormatQuote.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatQuote: React.FC = (props) => ( diff --git a/src/components/IconFormatShapes.tsx b/src/components/IconFormatShapes.tsx index 543f143db..1f0d7a230 100644 --- a/src/components/IconFormatShapes.tsx +++ b/src/components/IconFormatShapes.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatShapes: React.FC = (props) => ( diff --git a/src/components/IconFormatSize.tsx b/src/components/IconFormatSize.tsx index 8f023db32..9d4aa8138 100644 --- a/src/components/IconFormatSize.tsx +++ b/src/components/IconFormatSize.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatSize: React.FC = (props) => ( diff --git a/src/components/IconFormatStrikethrough.tsx b/src/components/IconFormatStrikethrough.tsx index 60d9e13e9..3f6732059 100644 --- a/src/components/IconFormatStrikethrough.tsx +++ b/src/components/IconFormatStrikethrough.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatStrikethrough: React.FC = (props) => ( diff --git a/src/components/IconFormatTextdirectionLToR.tsx b/src/components/IconFormatTextdirectionLToR.tsx index 157389473..bb98a00ac 100644 --- a/src/components/IconFormatTextdirectionLToR.tsx +++ b/src/components/IconFormatTextdirectionLToR.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatTextdirectionLToR: React.FC = (props) => ( diff --git a/src/components/IconFormatTextdirectionRToL.tsx b/src/components/IconFormatTextdirectionRToL.tsx index 589704ae5..20f63d584 100644 --- a/src/components/IconFormatTextdirectionRToL.tsx +++ b/src/components/IconFormatTextdirectionRToL.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatTextdirectionRToL: React.FC = (props) => ( diff --git a/src/components/IconFormatUnderlined.tsx b/src/components/IconFormatUnderlined.tsx index 7dc2cb426..b8166c1e8 100644 --- a/src/components/IconFormatUnderlined.tsx +++ b/src/components/IconFormatUnderlined.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFormatUnderlined: React.FC = (props) => ( diff --git a/src/components/IconForum.tsx b/src/components/IconForum.tsx index 79bc0a5e3..a663c33f5 100644 --- a/src/components/IconForum.tsx +++ b/src/components/IconForum.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconForum: React.FC = (props) => ( diff --git a/src/components/IconForward.tsx b/src/components/IconForward.tsx index b987e1994..604f20039 100644 --- a/src/components/IconForward.tsx +++ b/src/components/IconForward.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconForward: React.FC = (props) => ( diff --git a/src/components/IconForward10.tsx b/src/components/IconForward10.tsx index 12eb4a43d..4271ef9e5 100644 --- a/src/components/IconForward10.tsx +++ b/src/components/IconForward10.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconForward10: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconFullscreen.tsx b/src/components/IconFullscreen.tsx index 92e78370a..31598f4a3 100644 --- a/src/components/IconFullscreen.tsx +++ b/src/components/IconFullscreen.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFullscreen: React.FC = (props) => ( diff --git a/src/components/IconFullscreenExit.tsx b/src/components/IconFullscreenExit.tsx index 9690758ff..6c8f7bdd8 100644 --- a/src/components/IconFullscreenExit.tsx +++ b/src/components/IconFullscreenExit.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFullscreenExit: React.FC = (props) => ( diff --git a/src/components/IconFunctions.tsx b/src/components/IconFunctions.tsx index 04331b36c..c6656a5a6 100644 --- a/src/components/IconFunctions.tsx +++ b/src/components/IconFunctions.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconFunctions: React.FC = (props) => ( diff --git a/src/components/IconGTranslate.tsx b/src/components/IconGTranslate.tsx index e2808ff08..f92ebf999 100644 --- a/src/components/IconGTranslate.tsx +++ b/src/components/IconGTranslate.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGTranslate: React.FC = (props) => ( diff --git a/src/components/IconGamepad.tsx b/src/components/IconGamepad.tsx index 36fd1ca5c..7a8e3543f 100644 --- a/src/components/IconGamepad.tsx +++ b/src/components/IconGamepad.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGamepad: React.FC = (props) => ( diff --git a/src/components/IconGames.tsx b/src/components/IconGames.tsx index 1e942a19d..0102e68ca 100644 --- a/src/components/IconGames.tsx +++ b/src/components/IconGames.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGames: React.FC = (props) => ( diff --git a/src/components/IconGavel.tsx b/src/components/IconGavel.tsx index 6c0e8a2c3..ee0c7ad7a 100644 --- a/src/components/IconGavel.tsx +++ b/src/components/IconGavel.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGavel: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconGetApp.tsx b/src/components/IconGetApp.tsx index 64cc28209..c6de0963d 100644 --- a/src/components/IconGetApp.tsx +++ b/src/components/IconGetApp.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGetApp: React.FC = (props) => ( diff --git a/src/components/IconGif.tsx b/src/components/IconGif.tsx index 4e1a204db..be3b15a55 100644 --- a/src/components/IconGif.tsx +++ b/src/components/IconGif.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGif: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconGpsFixed.tsx b/src/components/IconGpsFixed.tsx index af3ba0c44..0f58ff5f4 100644 --- a/src/components/IconGpsFixed.tsx +++ b/src/components/IconGpsFixed.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGpsFixed: React.FC = (props) => ( diff --git a/src/components/IconGpsNotFixed.tsx b/src/components/IconGpsNotFixed.tsx index 9a6fb9d9d..b3ca39e3f 100644 --- a/src/components/IconGpsNotFixed.tsx +++ b/src/components/IconGpsNotFixed.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGpsNotFixed: React.FC = (props) => ( diff --git a/src/components/IconGpsOff.tsx b/src/components/IconGpsOff.tsx index 558f7f1f5..eddb0825d 100644 --- a/src/components/IconGpsOff.tsx +++ b/src/components/IconGpsOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGpsOff: React.FC = (props) => ( diff --git a/src/components/IconGrade.tsx b/src/components/IconGrade.tsx index 66702953f..6019ac639 100644 --- a/src/components/IconGrade.tsx +++ b/src/components/IconGrade.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGrade: React.FC = (props) => ( diff --git a/src/components/IconGradient.tsx b/src/components/IconGradient.tsx index a0b709c9c..2219c6793 100644 --- a/src/components/IconGradient.tsx +++ b/src/components/IconGradient.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGradient: React.FC = (props) => ( diff --git a/src/components/IconGrading.tsx b/src/components/IconGrading.tsx index ad09fdfb3..bbb1b594b 100644 --- a/src/components/IconGrading.tsx +++ b/src/components/IconGrading.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGrading: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconGraphicEq.tsx b/src/components/IconGraphicEq.tsx index e833cf392..d7c2793d1 100644 --- a/src/components/IconGraphicEq.tsx +++ b/src/components/IconGraphicEq.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGraphicEq: React.FC = (props) => ( diff --git a/src/components/IconGrass.tsx b/src/components/IconGrass.tsx index 2e934d49b..8670124e5 100644 --- a/src/components/IconGrass.tsx +++ b/src/components/IconGrass.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGrass: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconGridOn.tsx b/src/components/IconGridOn.tsx index d5b1b76c8..175f30651 100644 --- a/src/components/IconGridOn.tsx +++ b/src/components/IconGridOn.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGridOn: React.FC = (props) => ( diff --git a/src/components/IconGroup.tsx b/src/components/IconGroup.tsx index fe4e75a4e..053f360bb 100644 --- a/src/components/IconGroup.tsx +++ b/src/components/IconGroup.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGroup: React.FC = (props) => ( diff --git a/src/components/IconGroupAdd.tsx b/src/components/IconGroupAdd.tsx index 84c2fd032..82a6bd6f4 100644 --- a/src/components/IconGroupAdd.tsx +++ b/src/components/IconGroupAdd.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGroupAdd: React.FC = (props) => ( diff --git a/src/components/IconGroupWork.tsx b/src/components/IconGroupWork.tsx index 0c4762856..a0c30a6a7 100644 --- a/src/components/IconGroupWork.tsx +++ b/src/components/IconGroupWork.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGroupWork: React.FC = (props) => ( diff --git a/src/components/IconGroups.tsx b/src/components/IconGroups.tsx index c9d1b2e73..1dd57ba3d 100644 --- a/src/components/IconGroups.tsx +++ b/src/components/IconGroups.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconGroups: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconHdrOff.tsx b/src/components/IconHdrOff.tsx index 1a6f24944..a550832f5 100644 --- a/src/components/IconHdrOff.tsx +++ b/src/components/IconHdrOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHdrOff: React.FC = (props) => ( diff --git a/src/components/IconHdrOn.tsx b/src/components/IconHdrOn.tsx index 22000a22d..40ea1a64a 100644 --- a/src/components/IconHdrOn.tsx +++ b/src/components/IconHdrOn.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHdrOn: React.FC = (props) => ( diff --git a/src/components/IconHdrStrong.tsx b/src/components/IconHdrStrong.tsx index f8f037e0e..f2d027480 100644 --- a/src/components/IconHdrStrong.tsx +++ b/src/components/IconHdrStrong.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHdrStrong: React.FC = (props) => ( diff --git a/src/components/IconHdrWeak.tsx b/src/components/IconHdrWeak.tsx index e2bbf1ede..296581855 100644 --- a/src/components/IconHdrWeak.tsx +++ b/src/components/IconHdrWeak.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHdrWeak: React.FC = (props) => ( diff --git a/src/components/IconHeadset.tsx b/src/components/IconHeadset.tsx index 702e7b7dd..757a17255 100644 --- a/src/components/IconHeadset.tsx +++ b/src/components/IconHeadset.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHeadset: React.FC = (props) => ( diff --git a/src/components/IconHeadsetMic.tsx b/src/components/IconHeadsetMic.tsx index 337398259..b9364d5c9 100644 --- a/src/components/IconHeadsetMic.tsx +++ b/src/components/IconHeadsetMic.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHeadsetMic: React.FC = (props) => ( diff --git a/src/components/IconHealing.tsx b/src/components/IconHealing.tsx index 73be60b9e..6a9c8ec5f 100644 --- a/src/components/IconHealing.tsx +++ b/src/components/IconHealing.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHealing: React.FC = (props) => ( diff --git a/src/components/IconHearing.tsx b/src/components/IconHearing.tsx index eaceeea52..04b13469b 100644 --- a/src/components/IconHearing.tsx +++ b/src/components/IconHearing.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHearing: React.FC = (props) => ( diff --git a/src/components/IconHearingDisabled.tsx b/src/components/IconHearingDisabled.tsx index 3d17ed60c..5ead9a886 100644 --- a/src/components/IconHearingDisabled.tsx +++ b/src/components/IconHearingDisabled.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHearingDisabled: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconHelpCenter.tsx b/src/components/IconHelpCenter.tsx index 355119d7e..dee3b4e25 100644 --- a/src/components/IconHelpCenter.tsx +++ b/src/components/IconHelpCenter.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHelpCenter: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconHighQuality.tsx b/src/components/IconHighQuality.tsx index 92c31f713..3f89fb2be 100644 --- a/src/components/IconHighQuality.tsx +++ b/src/components/IconHighQuality.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHighQuality: React.FC = (props) => ( diff --git a/src/components/IconHighlight.tsx b/src/components/IconHighlight.tsx index 96bcc6b33..e46fc5c16 100644 --- a/src/components/IconHighlight.tsx +++ b/src/components/IconHighlight.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHighlight: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconHighlightOff.tsx b/src/components/IconHighlightOff.tsx index c50e913cd..4541c8858 100644 --- a/src/components/IconHighlightOff.tsx +++ b/src/components/IconHighlightOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHighlightOff: React.FC = (props) => ( diff --git a/src/components/IconHistory.tsx b/src/components/IconHistory.tsx index 31941687c..ebc5d7cb9 100644 --- a/src/components/IconHistory.tsx +++ b/src/components/IconHistory.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHistory: React.FC = (props) => ( diff --git a/src/components/IconHistoryEdu.tsx b/src/components/IconHistoryEdu.tsx index 6305e375a..db0baa3cf 100644 --- a/src/components/IconHistoryEdu.tsx +++ b/src/components/IconHistoryEdu.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHistoryEdu: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconHomeRepairService.tsx b/src/components/IconHomeRepairService.tsx index 050d0c7ac..6f935d29f 100644 --- a/src/components/IconHomeRepairService.tsx +++ b/src/components/IconHomeRepairService.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHomeRepairService: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconHorizontalDistribute.tsx b/src/components/IconHorizontalDistribute.tsx index 1c66e08bd..fed8a55b2 100644 --- a/src/components/IconHorizontalDistribute.tsx +++ b/src/components/IconHorizontalDistribute.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHorizontalDistribute: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconHotTub.tsx b/src/components/IconHotTub.tsx index 1edc080ca..1dcf6ee2b 100644 --- a/src/components/IconHotTub.tsx +++ b/src/components/IconHotTub.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHotTub: React.FC = (props) => ( diff --git a/src/components/IconHotel.tsx b/src/components/IconHotel.tsx index 1b4144adb..e8beea446 100644 --- a/src/components/IconHotel.tsx +++ b/src/components/IconHotel.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHotel: React.FC = (props) => ( diff --git a/src/components/IconHourglassBottom.tsx b/src/components/IconHourglassBottom.tsx index 24aa5d228..d22402f81 100644 --- a/src/components/IconHourglassBottom.tsx +++ b/src/components/IconHourglassBottom.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHourglassBottom: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconHourglassFull.tsx b/src/components/IconHourglassFull.tsx index 84021506e..fb2e8b237 100644 --- a/src/components/IconHourglassFull.tsx +++ b/src/components/IconHourglassFull.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHourglassFull: React.FC = (props) => ( diff --git a/src/components/IconHourglassTop.tsx b/src/components/IconHourglassTop.tsx index 6b128137c..201fea80d 100644 --- a/src/components/IconHourglassTop.tsx +++ b/src/components/IconHourglassTop.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHourglassTop: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconHowToVote.tsx b/src/components/IconHowToVote.tsx index 924bf6b61..609cb0345 100644 --- a/src/components/IconHowToVote.tsx +++ b/src/components/IconHowToVote.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHowToVote: React.FC = (props) => ( diff --git a/src/components/IconHttp.tsx b/src/components/IconHttp.tsx index 2fb6fb459..085e22e41 100644 --- a/src/components/IconHttp.tsx +++ b/src/components/IconHttp.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHttp: React.FC = (props) => ( diff --git a/src/components/IconHttps.tsx b/src/components/IconHttps.tsx index 762c1c667..7953df8ad 100644 --- a/src/components/IconHttps.tsx +++ b/src/components/IconHttps.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHttps: React.FC = (props) => ( diff --git a/src/components/IconHvac.tsx b/src/components/IconHvac.tsx index 136ff5493..304db1234 100644 --- a/src/components/IconHvac.tsx +++ b/src/components/IconHvac.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconHvac: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconImageAspectRatio.tsx b/src/components/IconImageAspectRatio.tsx index 08e3dfddb..defd35508 100644 --- a/src/components/IconImageAspectRatio.tsx +++ b/src/components/IconImageAspectRatio.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconImageAspectRatio: React.FC = (props) => ( diff --git a/src/components/IconImageNotSupported.tsx b/src/components/IconImageNotSupported.tsx index 1c541ba53..8fd54137c 100644 --- a/src/components/IconImageNotSupported.tsx +++ b/src/components/IconImageNotSupported.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconImageNotSupported: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconImportContacts.tsx b/src/components/IconImportContacts.tsx index bb8eeddb0..a808e3545 100644 --- a/src/components/IconImportContacts.tsx +++ b/src/components/IconImportContacts.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconImportContacts: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconImportantDevices.tsx b/src/components/IconImportantDevices.tsx index b1feaba62..6bc7d84c2 100644 --- a/src/components/IconImportantDevices.tsx +++ b/src/components/IconImportantDevices.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconImportantDevices: React.FC = (props) => ( diff --git a/src/components/IconInbox.tsx b/src/components/IconInbox.tsx index 60d8bfa05..931d0d115 100644 --- a/src/components/IconInbox.tsx +++ b/src/components/IconInbox.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconInbox: React.FC = (props) => ( diff --git a/src/components/IconIndeterminateCheckBox.tsx b/src/components/IconIndeterminateCheckBox.tsx index 3cec2e45d..ebb9c259d 100644 --- a/src/components/IconIndeterminateCheckBox.tsx +++ b/src/components/IconIndeterminateCheckBox.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconIndeterminateCheckBox: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconInput.tsx b/src/components/IconInput.tsx index f96a01c9e..cfbac84bd 100644 --- a/src/components/IconInput.tsx +++ b/src/components/IconInput.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconInput: React.FC = (props) => ( diff --git a/src/components/IconInsertChart.tsx b/src/components/IconInsertChart.tsx index 1ea02956c..7dee61a64 100644 --- a/src/components/IconInsertChart.tsx +++ b/src/components/IconInsertChart.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconInsertChart: React.FC = (props) => ( diff --git a/src/components/IconInsertChartOutlined.tsx b/src/components/IconInsertChartOutlined.tsx index 1a7012bd1..e08623c75 100644 --- a/src/components/IconInsertChartOutlined.tsx +++ b/src/components/IconInsertChartOutlined.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconInsertChartOutlined: React.FC = (props) => ( diff --git a/src/components/IconInsertComment.tsx b/src/components/IconInsertComment.tsx index 4368ef2d3..d5048aecc 100644 --- a/src/components/IconInsertComment.tsx +++ b/src/components/IconInsertComment.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconInsertComment: React.FC = (props) => ( diff --git a/src/components/IconInsertDriveFile.tsx b/src/components/IconInsertDriveFile.tsx index 4efa1d0d9..ad0217b2a 100644 --- a/src/components/IconInsertDriveFile.tsx +++ b/src/components/IconInsertDriveFile.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconInsertDriveFile: React.FC = (props) => ( diff --git a/src/components/IconInsertEmoticon.tsx b/src/components/IconInsertEmoticon.tsx index 351abe88d..f888ca289 100644 --- a/src/components/IconInsertEmoticon.tsx +++ b/src/components/IconInsertEmoticon.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconInsertEmoticon: React.FC = (props) => ( diff --git a/src/components/IconInsertInvitation.tsx b/src/components/IconInsertInvitation.tsx index dd45a839d..b0a0c04b3 100644 --- a/src/components/IconInsertInvitation.tsx +++ b/src/components/IconInsertInvitation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconInsertInvitation: React.FC = (props) => ( diff --git a/src/components/IconInsertLink.tsx b/src/components/IconInsertLink.tsx index 5531e143b..c454c452d 100644 --- a/src/components/IconInsertLink.tsx +++ b/src/components/IconInsertLink.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconInsertLink: React.FC = (props) => ( diff --git a/src/components/IconInsertPhoto.tsx b/src/components/IconInsertPhoto.tsx index 95427bd0b..c6b6815b9 100644 --- a/src/components/IconInsertPhoto.tsx +++ b/src/components/IconInsertPhoto.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconInsertPhoto: React.FC = (props) => ( diff --git a/src/components/IconInsights.tsx b/src/components/IconInsights.tsx index f71d55951..a89ce5d82 100644 --- a/src/components/IconInsights.tsx +++ b/src/components/IconInsights.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconInsights: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconInvertColorsOff.tsx b/src/components/IconInvertColorsOff.tsx index 6de3308c1..54d3e6322 100644 --- a/src/components/IconInvertColorsOff.tsx +++ b/src/components/IconInvertColorsOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconInvertColorsOff: React.FC = (props) => ( diff --git a/src/components/IconIso.tsx b/src/components/IconIso.tsx index cf87616c4..20c1360e4 100644 --- a/src/components/IconIso.tsx +++ b/src/components/IconIso.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconIso: React.FC = (props) => ( diff --git a/src/components/IconKeyboard.tsx b/src/components/IconKeyboard.tsx index 73195b6fe..d44752991 100644 --- a/src/components/IconKeyboard.tsx +++ b/src/components/IconKeyboard.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconKeyboard: React.FC = (props) => ( diff --git a/src/components/IconKeyboardArrowDown.tsx b/src/components/IconKeyboardArrowDown.tsx index bf1d43bd9..88c2531ac 100644 --- a/src/components/IconKeyboardArrowDown.tsx +++ b/src/components/IconKeyboardArrowDown.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconKeyboardArrowDown: React.FC = (props) => ( diff --git a/src/components/IconKeyboardArrowLeft.tsx b/src/components/IconKeyboardArrowLeft.tsx index 123936023..90e827cdd 100644 --- a/src/components/IconKeyboardArrowLeft.tsx +++ b/src/components/IconKeyboardArrowLeft.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconKeyboardArrowLeft: React.FC = (props) => ( diff --git a/src/components/IconKeyboardArrowRight.tsx b/src/components/IconKeyboardArrowRight.tsx index afc6474f7..46ffaa22a 100644 --- a/src/components/IconKeyboardArrowRight.tsx +++ b/src/components/IconKeyboardArrowRight.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconKeyboardArrowRight: React.FC = (props) => ( diff --git a/src/components/IconKeyboardArrowUp.tsx b/src/components/IconKeyboardArrowUp.tsx index 2fada9df6..9724479cd 100644 --- a/src/components/IconKeyboardArrowUp.tsx +++ b/src/components/IconKeyboardArrowUp.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconKeyboardArrowUp: React.FC = (props) => ( diff --git a/src/components/IconKeyboardBackspace.tsx b/src/components/IconKeyboardBackspace.tsx index d6cd0d6b0..fef1b2fe3 100644 --- a/src/components/IconKeyboardBackspace.tsx +++ b/src/components/IconKeyboardBackspace.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconKeyboardBackspace: React.FC = (props) => ( diff --git a/src/components/IconKeyboardCapslock.tsx b/src/components/IconKeyboardCapslock.tsx index 96603e15e..dbabcfe1e 100644 --- a/src/components/IconKeyboardCapslock.tsx +++ b/src/components/IconKeyboardCapslock.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconKeyboardCapslock: React.FC = (props) => ( diff --git a/src/components/IconKeyboardHide.tsx b/src/components/IconKeyboardHide.tsx index bb9eb097f..2ffb9d2d1 100644 --- a/src/components/IconKeyboardHide.tsx +++ b/src/components/IconKeyboardHide.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconKeyboardHide: React.FC = (props) => ( diff --git a/src/components/IconKeyboardReturn.tsx b/src/components/IconKeyboardReturn.tsx index 54928596d..0f0eb7a82 100644 --- a/src/components/IconKeyboardReturn.tsx +++ b/src/components/IconKeyboardReturn.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconKeyboardReturn: React.FC = (props) => ( diff --git a/src/components/IconKeyboardTab.tsx b/src/components/IconKeyboardTab.tsx index 51716d1c6..2d6886c07 100644 --- a/src/components/IconKeyboardTab.tsx +++ b/src/components/IconKeyboardTab.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconKeyboardTab: React.FC = (props) => ( diff --git a/src/components/IconKeyboardVoice.tsx b/src/components/IconKeyboardVoice.tsx index 6840d88eb..3667b8c6f 100644 --- a/src/components/IconKeyboardVoice.tsx +++ b/src/components/IconKeyboardVoice.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconKeyboardVoice: React.FC = (props) => ( diff --git a/src/components/IconKingBed.tsx b/src/components/IconKingBed.tsx index ceff842da..d5462f6b6 100644 --- a/src/components/IconKingBed.tsx +++ b/src/components/IconKingBed.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconKingBed: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconLabel.tsx b/src/components/IconLabel.tsx index da674bd04..db9670343 100644 --- a/src/components/IconLabel.tsx +++ b/src/components/IconLabel.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLabel: React.FC = (props) => ( diff --git a/src/components/IconLabelImportant.tsx b/src/components/IconLabelImportant.tsx index 5297528c5..fcd738906 100644 --- a/src/components/IconLabelImportant.tsx +++ b/src/components/IconLabelImportant.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLabelImportant: React.FC = (props) => ( diff --git a/src/components/IconLabelOff.tsx b/src/components/IconLabelOff.tsx index 468416685..bcd492c65 100644 --- a/src/components/IconLabelOff.tsx +++ b/src/components/IconLabelOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLabelOff: React.FC = (props) => ( diff --git a/src/components/IconLandscape.tsx b/src/components/IconLandscape.tsx index d9a16c07f..23985e7ff 100644 --- a/src/components/IconLandscape.tsx +++ b/src/components/IconLandscape.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLandscape: React.FC = (props) => ( diff --git a/src/components/IconLanguage.tsx b/src/components/IconLanguage.tsx index b35293bc6..d12176242 100644 --- a/src/components/IconLanguage.tsx +++ b/src/components/IconLanguage.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLanguage: React.FC = (props) => ( diff --git a/src/components/IconLaptop.tsx b/src/components/IconLaptop.tsx index 0a5842d37..9f39a98ea 100644 --- a/src/components/IconLaptop.tsx +++ b/src/components/IconLaptop.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLaptop: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconLaptopMac.tsx b/src/components/IconLaptopMac.tsx index 8244daab3..dc0eddafe 100644 --- a/src/components/IconLaptopMac.tsx +++ b/src/components/IconLaptopMac.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLaptopMac: React.FC = (props) => ( diff --git a/src/components/IconLaptopWindows.tsx b/src/components/IconLaptopWindows.tsx index 26d95f5e3..7dd8d501d 100644 --- a/src/components/IconLaptopWindows.tsx +++ b/src/components/IconLaptopWindows.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLaptopWindows: React.FC = (props) => ( diff --git a/src/components/IconLastPage.tsx b/src/components/IconLastPage.tsx index 46d893daa..9482c5d3f 100644 --- a/src/components/IconLastPage.tsx +++ b/src/components/IconLastPage.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLastPage: React.FC = (props) => ( diff --git a/src/components/IconLaunch.tsx b/src/components/IconLaunch.tsx index a6f862e34..1ef110d68 100644 --- a/src/components/IconLaunch.tsx +++ b/src/components/IconLaunch.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLaunch: React.FC = (props) => ( diff --git a/src/components/IconLayers.tsx b/src/components/IconLayers.tsx index dd5780089..9a53b2dfe 100644 --- a/src/components/IconLayers.tsx +++ b/src/components/IconLayers.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLayers: React.FC = (props) => ( diff --git a/src/components/IconLayersClear.tsx b/src/components/IconLayersClear.tsx index 702b972f6..1da46cf1f 100644 --- a/src/components/IconLayersClear.tsx +++ b/src/components/IconLayersClear.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLayersClear: React.FC = (props) => ( diff --git a/src/components/IconLeaderboard.tsx b/src/components/IconLeaderboard.tsx index 5fe661f79..3dfcf05dc 100644 --- a/src/components/IconLeaderboard.tsx +++ b/src/components/IconLeaderboard.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLeaderboard: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconLeakRemove.tsx b/src/components/IconLeakRemove.tsx index 721ba3a68..7614264e2 100644 --- a/src/components/IconLeakRemove.tsx +++ b/src/components/IconLeakRemove.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLeakRemove: React.FC = (props) => ( diff --git a/src/components/IconLegendToggle.tsx b/src/components/IconLegendToggle.tsx index 11460b2bc..ff9aa9427 100644 --- a/src/components/IconLegendToggle.tsx +++ b/src/components/IconLegendToggle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLegendToggle: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconLibraryAdd.tsx b/src/components/IconLibraryAdd.tsx index a003d69d1..6da57b597 100644 --- a/src/components/IconLibraryAdd.tsx +++ b/src/components/IconLibraryAdd.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLibraryAdd: React.FC = (props) => ( diff --git a/src/components/IconLibraryAddCheck.tsx b/src/components/IconLibraryAddCheck.tsx index 2fd5da6c8..8449922ba 100644 --- a/src/components/IconLibraryAddCheck.tsx +++ b/src/components/IconLibraryAddCheck.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLibraryAddCheck: React.FC = (props) => ( diff --git a/src/components/IconLibraryBooks.tsx b/src/components/IconLibraryBooks.tsx index d0de724d3..f0e5199cd 100644 --- a/src/components/IconLibraryBooks.tsx +++ b/src/components/IconLibraryBooks.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLibraryBooks: React.FC = (props) => ( diff --git a/src/components/IconLibraryMusic.tsx b/src/components/IconLibraryMusic.tsx index e773ba037..f65a33fd5 100644 --- a/src/components/IconLibraryMusic.tsx +++ b/src/components/IconLibraryMusic.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLibraryMusic: React.FC = (props) => ( diff --git a/src/components/IconLineStyle.tsx b/src/components/IconLineStyle.tsx index 0bf31a652..09293ea22 100644 --- a/src/components/IconLineStyle.tsx +++ b/src/components/IconLineStyle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLineStyle: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconLinkOff.tsx b/src/components/IconLinkOff.tsx index 7be0c270d..0ac6a931f 100644 --- a/src/components/IconLinkOff.tsx +++ b/src/components/IconLinkOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLinkOff: React.FC = (props) => ( diff --git a/src/components/IconLinkedCamera.tsx b/src/components/IconLinkedCamera.tsx index 215c0984d..dd8aa01d5 100644 --- a/src/components/IconLinkedCamera.tsx +++ b/src/components/IconLinkedCamera.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLinkedCamera: React.FC = (props) => ( diff --git a/src/components/IconList.tsx b/src/components/IconList.tsx index 97c449195..1d7eea45a 100644 --- a/src/components/IconList.tsx +++ b/src/components/IconList.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconList: React.FC = (props) => ( diff --git a/src/components/IconListAlt.tsx b/src/components/IconListAlt.tsx index 82b0774b1..e419bd424 100644 --- a/src/components/IconListAlt.tsx +++ b/src/components/IconListAlt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconListAlt: React.FC = (props) => ( diff --git a/src/components/IconLiveHelp.tsx b/src/components/IconLiveHelp.tsx index f78fbfeb7..5204026bf 100644 --- a/src/components/IconLiveHelp.tsx +++ b/src/components/IconLiveHelp.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLiveHelp: React.FC = (props) => ( diff --git a/src/components/IconLiveTv.tsx b/src/components/IconLiveTv.tsx index bdef7a645..81c4a3be3 100644 --- a/src/components/IconLiveTv.tsx +++ b/src/components/IconLiveTv.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLiveTv: React.FC = (props) => ( diff --git a/src/components/IconLocalActivity.tsx b/src/components/IconLocalActivity.tsx index be050304c..9c81a290d 100644 --- a/src/components/IconLocalActivity.tsx +++ b/src/components/IconLocalActivity.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalActivity: React.FC = (props) => ( diff --git a/src/components/IconLocalAirport.tsx b/src/components/IconLocalAirport.tsx index e30b7eef1..25faddea8 100644 --- a/src/components/IconLocalAirport.tsx +++ b/src/components/IconLocalAirport.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalAirport: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconLocalBar.tsx b/src/components/IconLocalBar.tsx index 376adf07e..53d17474c 100644 --- a/src/components/IconLocalBar.tsx +++ b/src/components/IconLocalBar.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalBar: React.FC = (props) => ( diff --git a/src/components/IconLocalCafe.tsx b/src/components/IconLocalCafe.tsx index d511c2652..de96be5fa 100644 --- a/src/components/IconLocalCafe.tsx +++ b/src/components/IconLocalCafe.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalCafe: React.FC = (props) => ( diff --git a/src/components/IconLocalCarWash.tsx b/src/components/IconLocalCarWash.tsx index eba3ea1b5..6c6436f9c 100644 --- a/src/components/IconLocalCarWash.tsx +++ b/src/components/IconLocalCarWash.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalCarWash: React.FC = (props) => ( diff --git a/src/components/IconLocalConvenienceStore.tsx b/src/components/IconLocalConvenienceStore.tsx index 1d76498a9..f22127542 100644 --- a/src/components/IconLocalConvenienceStore.tsx +++ b/src/components/IconLocalConvenienceStore.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalConvenienceStore: React.FC = (props) => ( diff --git a/src/components/IconLocalDining.tsx b/src/components/IconLocalDining.tsx index 3dc83f240..c5f356601 100644 --- a/src/components/IconLocalDining.tsx +++ b/src/components/IconLocalDining.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalDining: React.FC = (props) => ( diff --git a/src/components/IconLocalDrink.tsx b/src/components/IconLocalDrink.tsx index 30b57c88d..80c2164c2 100644 --- a/src/components/IconLocalDrink.tsx +++ b/src/components/IconLocalDrink.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalDrink: React.FC = (props) => ( diff --git a/src/components/IconLocalFireDepartment.tsx b/src/components/IconLocalFireDepartment.tsx index df801fa8d..eddeeaff7 100644 --- a/src/components/IconLocalFireDepartment.tsx +++ b/src/components/IconLocalFireDepartment.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalFireDepartment: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconLocalGasStation.tsx b/src/components/IconLocalGasStation.tsx index 2ae1eab69..906556433 100644 --- a/src/components/IconLocalGasStation.tsx +++ b/src/components/IconLocalGasStation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalGasStation: React.FC = (props) => ( diff --git a/src/components/IconLocalGroceryStore.tsx b/src/components/IconLocalGroceryStore.tsx index 81899d5c0..478f5027e 100644 --- a/src/components/IconLocalGroceryStore.tsx +++ b/src/components/IconLocalGroceryStore.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalGroceryStore: React.FC = (props) => ( diff --git a/src/components/IconLocalHospital.tsx b/src/components/IconLocalHospital.tsx index b8914bb89..e5ec8fb9a 100644 --- a/src/components/IconLocalHospital.tsx +++ b/src/components/IconLocalHospital.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalHospital: React.FC = (props) => ( diff --git a/src/components/IconLocalHotel.tsx b/src/components/IconLocalHotel.tsx index 4fa9877da..deda88dde 100644 --- a/src/components/IconLocalHotel.tsx +++ b/src/components/IconLocalHotel.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalHotel: React.FC = (props) => ( diff --git a/src/components/IconLocalLaundryService.tsx b/src/components/IconLocalLaundryService.tsx index 2e35f09a7..c6a88833c 100644 --- a/src/components/IconLocalLaundryService.tsx +++ b/src/components/IconLocalLaundryService.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalLaundryService: React.FC = (props) => ( diff --git a/src/components/IconLocalLibrary.tsx b/src/components/IconLocalLibrary.tsx index 2b1d43702..74730c11b 100644 --- a/src/components/IconLocalLibrary.tsx +++ b/src/components/IconLocalLibrary.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalLibrary: React.FC = (props) => ( diff --git a/src/components/IconLocalMall.tsx b/src/components/IconLocalMall.tsx index 3b3fbf134..912313089 100644 --- a/src/components/IconLocalMall.tsx +++ b/src/components/IconLocalMall.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalMall: React.FC = (props) => ( diff --git a/src/components/IconLocalMovies.tsx b/src/components/IconLocalMovies.tsx index f7442b7f6..9b77d5586 100644 --- a/src/components/IconLocalMovies.tsx +++ b/src/components/IconLocalMovies.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalMovies: React.FC = (props) => ( diff --git a/src/components/IconLocalOffer.tsx b/src/components/IconLocalOffer.tsx index 1240564ba..98c15a252 100644 --- a/src/components/IconLocalOffer.tsx +++ b/src/components/IconLocalOffer.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalOffer: React.FC = (props) => ( diff --git a/src/components/IconLocalParking.tsx b/src/components/IconLocalParking.tsx index acf3bfdd3..540fdac15 100644 --- a/src/components/IconLocalParking.tsx +++ b/src/components/IconLocalParking.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalParking: React.FC = (props) => ( diff --git a/src/components/IconLocalPharmacy.tsx b/src/components/IconLocalPharmacy.tsx index 02e06a388..056bc716e 100644 --- a/src/components/IconLocalPharmacy.tsx +++ b/src/components/IconLocalPharmacy.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalPharmacy: React.FC = (props) => ( diff --git a/src/components/IconLocalPhone.tsx b/src/components/IconLocalPhone.tsx index 189cdc309..d64dc38b3 100644 --- a/src/components/IconLocalPhone.tsx +++ b/src/components/IconLocalPhone.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalPhone: React.FC = (props) => ( diff --git a/src/components/IconLocalPizza.tsx b/src/components/IconLocalPizza.tsx index 6d649b73e..23cef3926 100644 --- a/src/components/IconLocalPizza.tsx +++ b/src/components/IconLocalPizza.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalPizza: React.FC = (props) => ( diff --git a/src/components/IconLocalPlay.tsx b/src/components/IconLocalPlay.tsx index 1edf4c678..69cc6801d 100644 --- a/src/components/IconLocalPlay.tsx +++ b/src/components/IconLocalPlay.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalPlay: React.FC = (props) => ( diff --git a/src/components/IconLocalPolice.tsx b/src/components/IconLocalPolice.tsx index d53619f70..e8b2e7f60 100644 --- a/src/components/IconLocalPolice.tsx +++ b/src/components/IconLocalPolice.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalPolice: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconLocalPrintshop.tsx b/src/components/IconLocalPrintshop.tsx index ac0123298..a9e03e1f7 100644 --- a/src/components/IconLocalPrintshop.tsx +++ b/src/components/IconLocalPrintshop.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalPrintshop: React.FC = (props) => ( diff --git a/src/components/IconLocalSee.tsx b/src/components/IconLocalSee.tsx index b706b5d76..1ece58687 100644 --- a/src/components/IconLocalSee.tsx +++ b/src/components/IconLocalSee.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalSee: React.FC = (props) => ( diff --git a/src/components/IconLocalShipping.tsx b/src/components/IconLocalShipping.tsx index 18081ee31..219fe3e1e 100644 --- a/src/components/IconLocalShipping.tsx +++ b/src/components/IconLocalShipping.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalShipping: React.FC = (props) => ( diff --git a/src/components/IconLocalTaxi.tsx b/src/components/IconLocalTaxi.tsx index ee1a0fb6e..d8f7c0b49 100644 --- a/src/components/IconLocalTaxi.tsx +++ b/src/components/IconLocalTaxi.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocalTaxi: React.FC = (props) => ( diff --git a/src/components/IconLocationCity.tsx b/src/components/IconLocationCity.tsx index 08fc21b2e..5f2ec6336 100644 --- a/src/components/IconLocationCity.tsx +++ b/src/components/IconLocationCity.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocationCity: React.FC = (props) => ( diff --git a/src/components/IconLocationDisabled.tsx b/src/components/IconLocationDisabled.tsx index 2601e1cff..34417214c 100644 --- a/src/components/IconLocationDisabled.tsx +++ b/src/components/IconLocationDisabled.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocationDisabled: React.FC = (props) => ( diff --git a/src/components/IconLocationOff.tsx b/src/components/IconLocationOff.tsx index 6d1463e9e..9b5f2fbe3 100644 --- a/src/components/IconLocationOff.tsx +++ b/src/components/IconLocationOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocationOff: React.FC = (props) => ( diff --git a/src/components/IconLocationOn.tsx b/src/components/IconLocationOn.tsx index 04a1d9b57..e745a04cd 100644 --- a/src/components/IconLocationOn.tsx +++ b/src/components/IconLocationOn.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocationOn: React.FC = (props) => ( diff --git a/src/components/IconLocationSearching.tsx b/src/components/IconLocationSearching.tsx index f654484a4..e8ea8e63b 100644 --- a/src/components/IconLocationSearching.tsx +++ b/src/components/IconLocationSearching.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLocationSearching: React.FC = (props) => ( diff --git a/src/components/IconLock.tsx b/src/components/IconLock.tsx index d7302e41d..b3ee4ffdc 100644 --- a/src/components/IconLock.tsx +++ b/src/components/IconLock.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLock: React.FC = (props) => ( diff --git a/src/components/IconLockOpen.tsx b/src/components/IconLockOpen.tsx index 5fa2a9b0b..1c1d246f8 100644 --- a/src/components/IconLockOpen.tsx +++ b/src/components/IconLockOpen.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLockOpen: React.FC = (props) => ( diff --git a/src/components/IconLogin.tsx b/src/components/IconLogin.tsx index 867241453..74df32607 100644 --- a/src/components/IconLogin.tsx +++ b/src/components/IconLogin.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLogin: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconLooks3.tsx b/src/components/IconLooks3.tsx index 9aa75d3f4..3e400d4c8 100644 --- a/src/components/IconLooks3.tsx +++ b/src/components/IconLooks3.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLooks3: React.FC = (props) => ( diff --git a/src/components/IconLooks4.tsx b/src/components/IconLooks4.tsx index f7b4b59e5..2f2e1906c 100644 --- a/src/components/IconLooks4.tsx +++ b/src/components/IconLooks4.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLooks4: React.FC = (props) => ( diff --git a/src/components/IconLooks5.tsx b/src/components/IconLooks5.tsx index e6fff4d22..27538e552 100644 --- a/src/components/IconLooks5.tsx +++ b/src/components/IconLooks5.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLooks5: React.FC = (props) => ( diff --git a/src/components/IconLooks6.tsx b/src/components/IconLooks6.tsx index 5d0b8dc62..cc800a803 100644 --- a/src/components/IconLooks6.tsx +++ b/src/components/IconLooks6.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLooks6: React.FC = (props) => ( diff --git a/src/components/IconLooksOne.tsx b/src/components/IconLooksOne.tsx index 0e41ce0e8..ad490c142 100644 --- a/src/components/IconLooksOne.tsx +++ b/src/components/IconLooksOne.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLooksOne: React.FC = (props) => ( diff --git a/src/components/IconLooksTwo.tsx b/src/components/IconLooksTwo.tsx index 068c9c583..64796adcc 100644 --- a/src/components/IconLooksTwo.tsx +++ b/src/components/IconLooksTwo.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLooksTwo: React.FC = (props) => ( diff --git a/src/components/IconLoop.tsx b/src/components/IconLoop.tsx index bb4407d9f..d8f16f0a4 100644 --- a/src/components/IconLoop.tsx +++ b/src/components/IconLoop.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLoop: React.FC = (props) => ( diff --git a/src/components/IconLoupe.tsx b/src/components/IconLoupe.tsx index 66083cda2..64eee624e 100644 --- a/src/components/IconLoupe.tsx +++ b/src/components/IconLoupe.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLoupe: React.FC = (props) => ( diff --git a/src/components/IconLowPriority.tsx b/src/components/IconLowPriority.tsx index 7eb87315b..44b24ad72 100644 --- a/src/components/IconLowPriority.tsx +++ b/src/components/IconLowPriority.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLowPriority: React.FC = (props) => ( diff --git a/src/components/IconLoyalty.tsx b/src/components/IconLoyalty.tsx index 29a411536..fdc5fda5d 100644 --- a/src/components/IconLoyalty.tsx +++ b/src/components/IconLoyalty.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLoyalty: React.FC = (props) => ( diff --git a/src/components/IconLuggage.tsx b/src/components/IconLuggage.tsx index 7009c7445..c5ecc7b4d 100644 --- a/src/components/IconLuggage.tsx +++ b/src/components/IconLuggage.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconLuggage: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconMailOutline.tsx b/src/components/IconMailOutline.tsx index 32420f523..a9feedb59 100644 --- a/src/components/IconMailOutline.tsx +++ b/src/components/IconMailOutline.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMailOutline: React.FC = (props) => ( diff --git a/src/components/IconMap.tsx b/src/components/IconMap.tsx index 3ebf3a899..a70feefc1 100644 --- a/src/components/IconMap.tsx +++ b/src/components/IconMap.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMap: React.FC = (props) => ( diff --git a/src/components/IconMapsUgc.tsx b/src/components/IconMapsUgc.tsx index bba09a876..f083a5d58 100644 --- a/src/components/IconMapsUgc.tsx +++ b/src/components/IconMapsUgc.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMapsUgc: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconMarkunreadMailbox.tsx b/src/components/IconMarkunreadMailbox.tsx index 26f7558a1..8d8b54a48 100644 --- a/src/components/IconMarkunreadMailbox.tsx +++ b/src/components/IconMarkunreadMailbox.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMarkunreadMailbox: React.FC = (props) => ( diff --git a/src/components/IconMasks.tsx b/src/components/IconMasks.tsx index cbcb7450b..bfd6b9ca5 100644 --- a/src/components/IconMasks.tsx +++ b/src/components/IconMasks.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMasks: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconMediation.tsx b/src/components/IconMediation.tsx index 54893a69c..e66c27ec2 100644 --- a/src/components/IconMediation.tsx +++ b/src/components/IconMediation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMediation: React.FC = (props) => ( diff --git a/src/components/IconMedicalServices.tsx b/src/components/IconMedicalServices.tsx index 7d66258a5..2d9d99457 100644 --- a/src/components/IconMedicalServices.tsx +++ b/src/components/IconMedicalServices.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMedicalServices: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconMemory.tsx b/src/components/IconMemory.tsx index 7bf738b08..01e62fb3a 100644 --- a/src/components/IconMemory.tsx +++ b/src/components/IconMemory.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMemory: React.FC = (props) => ( diff --git a/src/components/IconMenu.tsx b/src/components/IconMenu.tsx index 7d9caba1a..4481a09e2 100644 --- a/src/components/IconMenu.tsx +++ b/src/components/IconMenu.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMenu: React.FC = (props) => ( diff --git a/src/components/IconMenuBook.tsx b/src/components/IconMenuBook.tsx index 55de022f2..7e623759d 100644 --- a/src/components/IconMenuBook.tsx +++ b/src/components/IconMenuBook.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMenuBook: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconMergeType.tsx b/src/components/IconMergeType.tsx index 851a311a0..8ec8fc88b 100644 --- a/src/components/IconMergeType.tsx +++ b/src/components/IconMergeType.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMergeType: React.FC = (props) => ( diff --git a/src/components/IconMessage.tsx b/src/components/IconMessage.tsx index df6cd209c..8c5d7e45c 100644 --- a/src/components/IconMessage.tsx +++ b/src/components/IconMessage.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMessage: React.FC = (props) => ( diff --git a/src/components/IconMic.tsx b/src/components/IconMic.tsx index 46b1b3f23..33347ebac 100644 --- a/src/components/IconMic.tsx +++ b/src/components/IconMic.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMic: React.FC = (props) => ( diff --git a/src/components/IconMicNone.tsx b/src/components/IconMicNone.tsx index b7c5bf18a..b78f773f7 100644 --- a/src/components/IconMicNone.tsx +++ b/src/components/IconMicNone.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMicNone: React.FC = (props) => ( diff --git a/src/components/IconMicOff.tsx b/src/components/IconMicOff.tsx index c6bb1cd70..11443939a 100644 --- a/src/components/IconMicOff.tsx +++ b/src/components/IconMicOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMicOff: React.FC = (props) => ( diff --git a/src/components/IconMicrowave.tsx b/src/components/IconMicrowave.tsx index 3bd8a25a7..17252be09 100644 --- a/src/components/IconMicrowave.tsx +++ b/src/components/IconMicrowave.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMicrowave: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconMiscellaneousServices.tsx b/src/components/IconMiscellaneousServices.tsx index fbfb65d0e..1edda02c7 100644 --- a/src/components/IconMiscellaneousServices.tsx +++ b/src/components/IconMiscellaneousServices.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMiscellaneousServices: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconMms.tsx b/src/components/IconMms.tsx index 19fa60b7c..20eade767 100644 --- a/src/components/IconMms.tsx +++ b/src/components/IconMms.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMms: React.FC = (props) => ( diff --git a/src/components/IconMobileFriendly.tsx b/src/components/IconMobileFriendly.tsx index 8d033909e..6f08d434d 100644 --- a/src/components/IconMobileFriendly.tsx +++ b/src/components/IconMobileFriendly.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMobileFriendly: React.FC = (props) => ( diff --git a/src/components/IconMobileOff.tsx b/src/components/IconMobileOff.tsx index 61c1b5fce..ce3578b6c 100644 --- a/src/components/IconMobileOff.tsx +++ b/src/components/IconMobileOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMobileOff: React.FC = (props) => ( diff --git a/src/components/IconMobileScreenShare.tsx b/src/components/IconMobileScreenShare.tsx index c3084d8e0..7d5fd7c04 100644 --- a/src/components/IconMobileScreenShare.tsx +++ b/src/components/IconMobileScreenShare.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMobileScreenShare: React.FC = (props) => ( diff --git a/src/components/IconModeComment.tsx b/src/components/IconModeComment.tsx index ae5d70ea3..df553e96f 100644 --- a/src/components/IconModeComment.tsx +++ b/src/components/IconModeComment.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconModeComment: React.FC = (props) => ( diff --git a/src/components/IconModelTraining.tsx b/src/components/IconModelTraining.tsx index e0f5b0955..20003fefe 100644 --- a/src/components/IconModelTraining.tsx +++ b/src/components/IconModelTraining.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconModelTraining: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconMoney.tsx b/src/components/IconMoney.tsx index fecf1e5b8..cb72cfddd 100644 --- a/src/components/IconMoney.tsx +++ b/src/components/IconMoney.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMoney: React.FC = (props) => ( diff --git a/src/components/IconMoneyOff.tsx b/src/components/IconMoneyOff.tsx index 8000bb416..1dbab8eca 100644 --- a/src/components/IconMoneyOff.tsx +++ b/src/components/IconMoneyOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMoneyOff: React.FC = (props) => ( diff --git a/src/components/IconMonochromePhotos.tsx b/src/components/IconMonochromePhotos.tsx index f1b43b82a..66ee6a2cd 100644 --- a/src/components/IconMonochromePhotos.tsx +++ b/src/components/IconMonochromePhotos.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMonochromePhotos: React.FC = (props) => ( diff --git a/src/components/IconMood.tsx b/src/components/IconMood.tsx index e49bfe002..3f46fbcc2 100644 --- a/src/components/IconMood.tsx +++ b/src/components/IconMood.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMood: React.FC = (props) => ( diff --git a/src/components/IconMoodBad.tsx b/src/components/IconMoodBad.tsx index d3145c922..7f125203b 100644 --- a/src/components/IconMoodBad.tsx +++ b/src/components/IconMoodBad.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMoodBad: React.FC = (props) => ( diff --git a/src/components/IconMoped.tsx b/src/components/IconMoped.tsx index d7baaad37..0be38d6a5 100644 --- a/src/components/IconMoped.tsx +++ b/src/components/IconMoped.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMoped: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconMoreHoriz.tsx b/src/components/IconMoreHoriz.tsx index 707b087bd..7c4cfab40 100644 --- a/src/components/IconMoreHoriz.tsx +++ b/src/components/IconMoreHoriz.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMoreHoriz: React.FC = (props) => ( diff --git a/src/components/IconMoreTime.tsx b/src/components/IconMoreTime.tsx index 768e6ec5c..0db4fd34c 100644 --- a/src/components/IconMoreTime.tsx +++ b/src/components/IconMoreTime.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMoreTime: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconMotionPhotosOn.tsx b/src/components/IconMotionPhotosOn.tsx index d64c07ae4..ca5cdeb4c 100644 --- a/src/components/IconMotionPhotosOn.tsx +++ b/src/components/IconMotionPhotosOn.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMotionPhotosOn: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconMoveToInbox.tsx b/src/components/IconMoveToInbox.tsx index edd387f30..ccd3184b8 100644 --- a/src/components/IconMoveToInbox.tsx +++ b/src/components/IconMoveToInbox.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMoveToInbox: React.FC = (props) => ( diff --git a/src/components/IconMovie.tsx b/src/components/IconMovie.tsx index c9e7408fd..9d938469a 100644 --- a/src/components/IconMovie.tsx +++ b/src/components/IconMovie.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMovie: React.FC = (props) => ( diff --git a/src/components/IconMovieCreation.tsx b/src/components/IconMovieCreation.tsx index 0c730835d..e12465acd 100644 --- a/src/components/IconMovieCreation.tsx +++ b/src/components/IconMovieCreation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMovieCreation: React.FC = (props) => ( diff --git a/src/components/IconMovieFilter.tsx b/src/components/IconMovieFilter.tsx index 39aa790e4..12eb609da 100644 --- a/src/components/IconMovieFilter.tsx +++ b/src/components/IconMovieFilter.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMovieFilter: React.FC = (props) => ( diff --git a/src/components/IconMultilineChart.tsx b/src/components/IconMultilineChart.tsx index 451fcb8a9..b5d6c6fbc 100644 --- a/src/components/IconMultilineChart.tsx +++ b/src/components/IconMultilineChart.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMultilineChart: React.FC = (props) => ( diff --git a/src/components/IconMultipleStop.tsx b/src/components/IconMultipleStop.tsx index d533961b6..bac655403 100644 --- a/src/components/IconMultipleStop.tsx +++ b/src/components/IconMultipleStop.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMultipleStop: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconMusicOff.tsx b/src/components/IconMusicOff.tsx index 16bbee244..d34d6865a 100644 --- a/src/components/IconMusicOff.tsx +++ b/src/components/IconMusicOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMusicOff: React.FC = (props) => ( diff --git a/src/components/IconMusicVideo.tsx b/src/components/IconMusicVideo.tsx index bdf78d4a2..a568d0fd9 100644 --- a/src/components/IconMusicVideo.tsx +++ b/src/components/IconMusicVideo.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMusicVideo: React.FC = (props) => ( diff --git a/src/components/IconMyLocation.tsx b/src/components/IconMyLocation.tsx index 812ca5225..10687adbd 100644 --- a/src/components/IconMyLocation.tsx +++ b/src/components/IconMyLocation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconMyLocation: React.FC = (props) => ( diff --git a/src/components/IconNat.tsx b/src/components/IconNat.tsx index 109fed837..03b03dd86 100644 --- a/src/components/IconNat.tsx +++ b/src/components/IconNat.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNat: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconNaturePeople.tsx b/src/components/IconNaturePeople.tsx index bb2da7390..244e8288e 100644 --- a/src/components/IconNaturePeople.tsx +++ b/src/components/IconNaturePeople.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNaturePeople: React.FC = (props) => ( diff --git a/src/components/IconNavigateBefore.tsx b/src/components/IconNavigateBefore.tsx index da6d9e716..6fa31b7a4 100644 --- a/src/components/IconNavigateBefore.tsx +++ b/src/components/IconNavigateBefore.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNavigateBefore: React.FC = (props) => ( diff --git a/src/components/IconNavigateNext.tsx b/src/components/IconNavigateNext.tsx index c2b5ef9c6..fb6b0fe44 100644 --- a/src/components/IconNavigateNext.tsx +++ b/src/components/IconNavigateNext.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNavigateNext: React.FC = (props) => ( diff --git a/src/components/IconNavigation.tsx b/src/components/IconNavigation.tsx index ce2e45da1..bedccfcae 100644 --- a/src/components/IconNavigation.tsx +++ b/src/components/IconNavigation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNavigation: React.FC = (props) => ( diff --git a/src/components/IconNearMe.tsx b/src/components/IconNearMe.tsx index b895c9eac..a678748e9 100644 --- a/src/components/IconNearMe.tsx +++ b/src/components/IconNearMe.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNearMe: React.FC = (props) => ( diff --git a/src/components/IconNearMeDisabled.tsx b/src/components/IconNearMeDisabled.tsx index 17d31354c..f6ec1240b 100644 --- a/src/components/IconNearMeDisabled.tsx +++ b/src/components/IconNearMeDisabled.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNearMeDisabled: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconNetworkLocked.tsx b/src/components/IconNetworkLocked.tsx index c50c38a4b..2a2c4294c 100644 --- a/src/components/IconNetworkLocked.tsx +++ b/src/components/IconNetworkLocked.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNetworkLocked: React.FC = (props) => ( diff --git a/src/components/IconNewReleases.tsx b/src/components/IconNewReleases.tsx index bfb62157b..d0ff98c66 100644 --- a/src/components/IconNewReleases.tsx +++ b/src/components/IconNewReleases.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNewReleases: React.FC = (props) => ( diff --git a/src/components/IconNextPlan.tsx b/src/components/IconNextPlan.tsx index 68a41e9c9..b4ed45f5e 100644 --- a/src/components/IconNextPlan.tsx +++ b/src/components/IconNextPlan.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNextPlan: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconNightShelter.tsx b/src/components/IconNightShelter.tsx index 88956f920..37edcb694 100644 --- a/src/components/IconNightShelter.tsx +++ b/src/components/IconNightShelter.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNightShelter: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconNoPhotography.tsx b/src/components/IconNoPhotography.tsx index 60f0725ec..091e7c92b 100644 --- a/src/components/IconNoPhotography.tsx +++ b/src/components/IconNoPhotography.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNoPhotography: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconNoStroller.tsx b/src/components/IconNoStroller.tsx index c1a45d147..011b6091d 100644 --- a/src/components/IconNoStroller.tsx +++ b/src/components/IconNoStroller.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNoStroller: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconNotListedLocation.tsx b/src/components/IconNotListedLocation.tsx index df4067e1f..f148b316c 100644 --- a/src/components/IconNotListedLocation.tsx +++ b/src/components/IconNotListedLocation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNotListedLocation: React.FC = (props) => ( diff --git a/src/components/IconNotStarted.tsx b/src/components/IconNotStarted.tsx index 67f9bcc64..b6f52a8d5 100644 --- a/src/components/IconNotStarted.tsx +++ b/src/components/IconNotStarted.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNotStarted: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconNoteAdd.tsx b/src/components/IconNoteAdd.tsx index 773735850..2bbee0539 100644 --- a/src/components/IconNoteAdd.tsx +++ b/src/components/IconNoteAdd.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNoteAdd: React.FC = (props) => ( diff --git a/src/components/IconNotes.tsx b/src/components/IconNotes.tsx index 09d14baf1..1797158dc 100644 --- a/src/components/IconNotes.tsx +++ b/src/components/IconNotes.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNotes: React.FC = (props) => ( diff --git a/src/components/IconNotificationImportant.tsx b/src/components/IconNotificationImportant.tsx index 969ad77da..902ae5a36 100644 --- a/src/components/IconNotificationImportant.tsx +++ b/src/components/IconNotificationImportant.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNotificationImportant: React.FC = (props) => ( diff --git a/src/components/IconNotifications.tsx b/src/components/IconNotifications.tsx index 6720fe981..fa68400f6 100644 --- a/src/components/IconNotifications.tsx +++ b/src/components/IconNotifications.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNotifications: React.FC = (props) => ( diff --git a/src/components/IconNotificationsActive.tsx b/src/components/IconNotificationsActive.tsx index 95fd9ae62..b39964bbf 100644 --- a/src/components/IconNotificationsActive.tsx +++ b/src/components/IconNotificationsActive.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNotificationsActive: React.FC = (props) => ( diff --git a/src/components/IconNotificationsNone.tsx b/src/components/IconNotificationsNone.tsx index 8da099cb2..541ec2713 100644 --- a/src/components/IconNotificationsNone.tsx +++ b/src/components/IconNotificationsNone.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNotificationsNone: React.FC = (props) => ( diff --git a/src/components/IconNotificationsOff.tsx b/src/components/IconNotificationsOff.tsx index 0f2e9c6cc..82c424491 100644 --- a/src/components/IconNotificationsOff.tsx +++ b/src/components/IconNotificationsOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNotificationsOff: React.FC = (props) => ( diff --git a/src/components/IconNotificationsPaused.tsx b/src/components/IconNotificationsPaused.tsx index 67e20c23c..a84e9fdbc 100644 --- a/src/components/IconNotificationsPaused.tsx +++ b/src/components/IconNotificationsPaused.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconNotificationsPaused: React.FC = (props) => ( diff --git a/src/components/IconOfflineBolt.tsx b/src/components/IconOfflineBolt.tsx index d3a583925..8f471a151 100644 --- a/src/components/IconOfflineBolt.tsx +++ b/src/components/IconOfflineBolt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconOfflineBolt: React.FC = (props) => ( diff --git a/src/components/IconOfflinePin.tsx b/src/components/IconOfflinePin.tsx index f46361df6..224b68e46 100644 --- a/src/components/IconOfflinePin.tsx +++ b/src/components/IconOfflinePin.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconOfflinePin: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconOnlinePrediction.tsx b/src/components/IconOnlinePrediction.tsx index 44c31c513..7a905686f 100644 --- a/src/components/IconOnlinePrediction.tsx +++ b/src/components/IconOnlinePrediction.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconOnlinePrediction: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconOpenInBrowser.tsx b/src/components/IconOpenInBrowser.tsx index 637978453..d7f34a71f 100644 --- a/src/components/IconOpenInBrowser.tsx +++ b/src/components/IconOpenInBrowser.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconOpenInBrowser: React.FC = (props) => ( diff --git a/src/components/IconOpenInFull.tsx b/src/components/IconOpenInFull.tsx index c4df93b08..0a7042e9c 100644 --- a/src/components/IconOpenInFull.tsx +++ b/src/components/IconOpenInFull.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconOpenInFull: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconOpenWith.tsx b/src/components/IconOpenWith.tsx index ad18954a3..4ef40057e 100644 --- a/src/components/IconOpenWith.tsx +++ b/src/components/IconOpenWith.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconOpenWith: React.FC = (props) => ( diff --git a/src/components/IconOutbond.tsx b/src/components/IconOutbond.tsx index 92790ab85..3daf7c033 100644 --- a/src/components/IconOutbond.tsx +++ b/src/components/IconOutbond.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconOutbond: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconPages.tsx b/src/components/IconPages.tsx index 151718721..e7ad0dd4c 100644 --- a/src/components/IconPages.tsx +++ b/src/components/IconPages.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPages: React.FC = (props) => ( diff --git a/src/components/IconPageview.tsx b/src/components/IconPageview.tsx index 0f2e07461..bffed6ee6 100644 --- a/src/components/IconPageview.tsx +++ b/src/components/IconPageview.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPageview: React.FC = (props) => ( diff --git a/src/components/IconPalette.tsx b/src/components/IconPalette.tsx index c9e894259..a1470f9b1 100644 --- a/src/components/IconPalette.tsx +++ b/src/components/IconPalette.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPalette: React.FC = (props) => ( diff --git a/src/components/IconPanTool.tsx b/src/components/IconPanTool.tsx index 36de9c99f..4add4993c 100644 --- a/src/components/IconPanTool.tsx +++ b/src/components/IconPanTool.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPanTool: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconPanoramaFishEye.tsx b/src/components/IconPanoramaFishEye.tsx index fc5e9219d..e9f18434f 100644 --- a/src/components/IconPanoramaFishEye.tsx +++ b/src/components/IconPanoramaFishEye.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPanoramaFishEye: React.FC = (props) => ( diff --git a/src/components/IconPanoramaHorizontal.tsx b/src/components/IconPanoramaHorizontal.tsx index 696993163..7aa547e2e 100644 --- a/src/components/IconPanoramaHorizontal.tsx +++ b/src/components/IconPanoramaHorizontal.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPanoramaHorizontal: React.FC = (props) => ( diff --git a/src/components/IconPanoramaVertical.tsx b/src/components/IconPanoramaVertical.tsx index 0e64edd61..a239bbb65 100644 --- a/src/components/IconPanoramaVertical.tsx +++ b/src/components/IconPanoramaVertical.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPanoramaVertical: React.FC = (props) => ( diff --git a/src/components/IconPanoramaWideAngle.tsx b/src/components/IconPanoramaWideAngle.tsx index 2dff10619..31e3647cd 100644 --- a/src/components/IconPanoramaWideAngle.tsx +++ b/src/components/IconPanoramaWideAngle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPanoramaWideAngle: React.FC = (props) => ( diff --git a/src/components/IconPartyMode.tsx b/src/components/IconPartyMode.tsx index 34af91ed4..a8f364aba 100644 --- a/src/components/IconPartyMode.tsx +++ b/src/components/IconPartyMode.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPartyMode: React.FC = (props) => ( diff --git a/src/components/IconPause.tsx b/src/components/IconPause.tsx index 7b698c3a9..0d3024145 100644 --- a/src/components/IconPause.tsx +++ b/src/components/IconPause.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPause: React.FC = (props) => ( diff --git a/src/components/IconPauseCircleFilled.tsx b/src/components/IconPauseCircleFilled.tsx index f85a23239..8b01bb904 100644 --- a/src/components/IconPauseCircleFilled.tsx +++ b/src/components/IconPauseCircleFilled.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPauseCircleFilled: React.FC = (props) => ( diff --git a/src/components/IconPauseCircleOutline.tsx b/src/components/IconPauseCircleOutline.tsx index b97a0e53f..41c6e6b96 100644 --- a/src/components/IconPauseCircleOutline.tsx +++ b/src/components/IconPauseCircleOutline.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPauseCircleOutline: React.FC = (props) => ( diff --git a/src/components/IconPausePresentation.tsx b/src/components/IconPausePresentation.tsx index 0f285d734..281736f31 100644 --- a/src/components/IconPausePresentation.tsx +++ b/src/components/IconPausePresentation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPausePresentation: React.FC = (props) => ( diff --git a/src/components/IconPayment.tsx b/src/components/IconPayment.tsx index 1b3330843..b1521906f 100644 --- a/src/components/IconPayment.tsx +++ b/src/components/IconPayment.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPayment: React.FC = (props) => ( diff --git a/src/components/IconPayments.tsx b/src/components/IconPayments.tsx index 243d71435..97eec0a82 100644 --- a/src/components/IconPayments.tsx +++ b/src/components/IconPayments.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPayments: React.FC = (props) => ( diff --git a/src/components/IconPedalBike.tsx b/src/components/IconPedalBike.tsx index 07ca3153c..0653423ee 100644 --- a/src/components/IconPedalBike.tsx +++ b/src/components/IconPedalBike.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPedalBike: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconPeopleAlt.tsx b/src/components/IconPeopleAlt.tsx index 87da69fea..59b98ab05 100644 --- a/src/components/IconPeopleAlt.tsx +++ b/src/components/IconPeopleAlt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPeopleAlt: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconPermCameraMic.tsx b/src/components/IconPermCameraMic.tsx index 34b2c0b72..8eeabb020 100644 --- a/src/components/IconPermCameraMic.tsx +++ b/src/components/IconPermCameraMic.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPermCameraMic: React.FC = (props) => ( diff --git a/src/components/IconPermContactCalendar.tsx b/src/components/IconPermContactCalendar.tsx index ce217a6aa..95f1eadfe 100644 --- a/src/components/IconPermContactCalendar.tsx +++ b/src/components/IconPermContactCalendar.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPermContactCalendar: React.FC = (props) => ( diff --git a/src/components/IconPermDataSetting.tsx b/src/components/IconPermDataSetting.tsx index 87d342b1f..18ab41104 100644 --- a/src/components/IconPermDataSetting.tsx +++ b/src/components/IconPermDataSetting.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPermDataSetting: React.FC = (props) => ( diff --git a/src/components/IconPermDeviceInformation.tsx b/src/components/IconPermDeviceInformation.tsx index 5bdacbc7c..8c463bd82 100644 --- a/src/components/IconPermDeviceInformation.tsx +++ b/src/components/IconPermDeviceInformation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPermDeviceInformation: React.FC = (props) => ( diff --git a/src/components/IconPermIdentity.tsx b/src/components/IconPermIdentity.tsx index d88ac399b..d1ae4c17f 100644 --- a/src/components/IconPermIdentity.tsx +++ b/src/components/IconPermIdentity.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPermIdentity: React.FC = (props) => ( diff --git a/src/components/IconPermMedia.tsx b/src/components/IconPermMedia.tsx index 87bde2679..87170aead 100644 --- a/src/components/IconPermMedia.tsx +++ b/src/components/IconPermMedia.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPermMedia: React.FC = (props) => ( diff --git a/src/components/IconPermPhoneMsg.tsx b/src/components/IconPermPhoneMsg.tsx index 3eff804e9..0d49f23c9 100644 --- a/src/components/IconPermPhoneMsg.tsx +++ b/src/components/IconPermPhoneMsg.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPermPhoneMsg: React.FC = (props) => ( diff --git a/src/components/IconPermScanWifi.tsx b/src/components/IconPermScanWifi.tsx index b2c1653ae..c422b0492 100644 --- a/src/components/IconPermScanWifi.tsx +++ b/src/components/IconPermScanWifi.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPermScanWifi: React.FC = (props) => ( diff --git a/src/components/IconPerson.tsx b/src/components/IconPerson.tsx index 33734cfe2..53d3858b9 100644 --- a/src/components/IconPerson.tsx +++ b/src/components/IconPerson.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPerson: React.FC = (props) => ( diff --git a/src/components/IconPersonAdd.tsx b/src/components/IconPersonAdd.tsx index 833ae51ca..23427dd37 100644 --- a/src/components/IconPersonAdd.tsx +++ b/src/components/IconPersonAdd.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPersonAdd: React.FC = (props) => ( diff --git a/src/components/IconPersonAddAlt1.tsx b/src/components/IconPersonAddAlt1.tsx index f5ab182d3..c38aaf1a3 100644 --- a/src/components/IconPersonAddAlt1.tsx +++ b/src/components/IconPersonAddAlt1.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPersonAddAlt1: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconPersonOutline.tsx b/src/components/IconPersonOutline.tsx index bb0ecd8a9..2ecf96876 100644 --- a/src/components/IconPersonOutline.tsx +++ b/src/components/IconPersonOutline.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPersonOutline: React.FC = (props) => ( diff --git a/src/components/IconPersonPin.tsx b/src/components/IconPersonPin.tsx index ddf114cd6..3c42db678 100644 --- a/src/components/IconPersonPin.tsx +++ b/src/components/IconPersonPin.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPersonPin: React.FC = (props) => ( diff --git a/src/components/IconPersonPinCircle.tsx b/src/components/IconPersonPinCircle.tsx index 65562c4bd..9c753fcb7 100644 --- a/src/components/IconPersonPinCircle.tsx +++ b/src/components/IconPersonPinCircle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPersonPinCircle: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconPestControl.tsx b/src/components/IconPestControl.tsx index cb60dc505..abda6e08b 100644 --- a/src/components/IconPestControl.tsx +++ b/src/components/IconPestControl.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPestControl: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconPhone.tsx b/src/components/IconPhone.tsx index 75122c2e4..0e2ad871d 100644 --- a/src/components/IconPhone.tsx +++ b/src/components/IconPhone.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhone: React.FC = (props) => ( diff --git a/src/components/IconPhoneAndroid.tsx b/src/components/IconPhoneAndroid.tsx index 6a35aba10..d2975121e 100644 --- a/src/components/IconPhoneAndroid.tsx +++ b/src/components/IconPhoneAndroid.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhoneAndroid: React.FC = (props) => ( diff --git a/src/components/IconPhoneBluetoothSpeaker.tsx b/src/components/IconPhoneBluetoothSpeaker.tsx index 1829136df..1ec2c3e27 100644 --- a/src/components/IconPhoneBluetoothSpeaker.tsx +++ b/src/components/IconPhoneBluetoothSpeaker.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhoneBluetoothSpeaker: React.FC = (props) => ( diff --git a/src/components/IconPhoneCallback.tsx b/src/components/IconPhoneCallback.tsx index a2ed3a8cb..1a5d37997 100644 --- a/src/components/IconPhoneCallback.tsx +++ b/src/components/IconPhoneCallback.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhoneCallback: React.FC = (props) => ( diff --git a/src/components/IconPhoneDisabled.tsx b/src/components/IconPhoneDisabled.tsx index 8455c1009..47213de83 100644 --- a/src/components/IconPhoneDisabled.tsx +++ b/src/components/IconPhoneDisabled.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhoneDisabled: React.FC = (props) => ( diff --git a/src/components/IconPhoneEnabled.tsx b/src/components/IconPhoneEnabled.tsx index adea13f05..f9b1bb2ed 100644 --- a/src/components/IconPhoneEnabled.tsx +++ b/src/components/IconPhoneEnabled.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhoneEnabled: React.FC = (props) => ( diff --git a/src/components/IconPhoneForwarded.tsx b/src/components/IconPhoneForwarded.tsx index 4e1a96c46..494d3c27b 100644 --- a/src/components/IconPhoneForwarded.tsx +++ b/src/components/IconPhoneForwarded.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhoneForwarded: React.FC = (props) => ( diff --git a/src/components/IconPhoneInTalk.tsx b/src/components/IconPhoneInTalk.tsx index 19bcfd514..b4fda5bcc 100644 --- a/src/components/IconPhoneInTalk.tsx +++ b/src/components/IconPhoneInTalk.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhoneInTalk: React.FC = (props) => ( diff --git a/src/components/IconPhoneIphone.tsx b/src/components/IconPhoneIphone.tsx index e57de1d54..85daa91ff 100644 --- a/src/components/IconPhoneIphone.tsx +++ b/src/components/IconPhoneIphone.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhoneIphone: React.FC = (props) => ( diff --git a/src/components/IconPhoneLocked.tsx b/src/components/IconPhoneLocked.tsx index b62ca731e..60a4011df 100644 --- a/src/components/IconPhoneLocked.tsx +++ b/src/components/IconPhoneLocked.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhoneLocked: React.FC = (props) => ( diff --git a/src/components/IconPhoneMissed.tsx b/src/components/IconPhoneMissed.tsx index eb71b1658..9690766d3 100644 --- a/src/components/IconPhoneMissed.tsx +++ b/src/components/IconPhoneMissed.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhoneMissed: React.FC = (props) => ( diff --git a/src/components/IconPhonePaused.tsx b/src/components/IconPhonePaused.tsx index a1b94242b..99ca27a03 100644 --- a/src/components/IconPhonePaused.tsx +++ b/src/components/IconPhonePaused.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhonePaused: React.FC = (props) => ( diff --git a/src/components/IconPhonelink.tsx b/src/components/IconPhonelink.tsx index 173fe7206..a5cf0e4f1 100644 --- a/src/components/IconPhonelink.tsx +++ b/src/components/IconPhonelink.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhonelink: React.FC = (props) => ( diff --git a/src/components/IconPhonelinkErase.tsx b/src/components/IconPhonelinkErase.tsx index 344457fa5..99acada53 100644 --- a/src/components/IconPhonelinkErase.tsx +++ b/src/components/IconPhonelinkErase.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhonelinkErase: React.FC = (props) => ( diff --git a/src/components/IconPhonelinkLock.tsx b/src/components/IconPhonelinkLock.tsx index 1b0850fa5..ad17d3e29 100644 --- a/src/components/IconPhonelinkLock.tsx +++ b/src/components/IconPhonelinkLock.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhonelinkLock: React.FC = (props) => ( diff --git a/src/components/IconPhonelinkOff.tsx b/src/components/IconPhonelinkOff.tsx index 4d80f2831..7dff3e314 100644 --- a/src/components/IconPhonelinkOff.tsx +++ b/src/components/IconPhonelinkOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhonelinkOff: React.FC = (props) => ( diff --git a/src/components/IconPhonelinkRing.tsx b/src/components/IconPhonelinkRing.tsx index 841da56b4..3b6f8238f 100644 --- a/src/components/IconPhonelinkRing.tsx +++ b/src/components/IconPhonelinkRing.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhonelinkRing: React.FC = (props) => ( diff --git a/src/components/IconPhonelinkSetup.tsx b/src/components/IconPhonelinkSetup.tsx index d25b962ab..23cd978b4 100644 --- a/src/components/IconPhonelinkSetup.tsx +++ b/src/components/IconPhonelinkSetup.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhonelinkSetup: React.FC = (props) => ( diff --git a/src/components/IconPhoto.tsx b/src/components/IconPhoto.tsx index a6fc13e97..72580fa70 100644 --- a/src/components/IconPhoto.tsx +++ b/src/components/IconPhoto.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhoto: React.FC = (props) => ( diff --git a/src/components/IconPhotoAlbum.tsx b/src/components/IconPhotoAlbum.tsx index 02a6c7c02..b9c8ef908 100644 --- a/src/components/IconPhotoAlbum.tsx +++ b/src/components/IconPhotoAlbum.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhotoAlbum: React.FC = (props) => ( diff --git a/src/components/IconPhotoCamera.tsx b/src/components/IconPhotoCamera.tsx index edeaef049..4f5786382 100644 --- a/src/components/IconPhotoCamera.tsx +++ b/src/components/IconPhotoCamera.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhotoCamera: React.FC = (props) => ( diff --git a/src/components/IconPhotoFilter.tsx b/src/components/IconPhotoFilter.tsx index f708082ce..65b507442 100644 --- a/src/components/IconPhotoFilter.tsx +++ b/src/components/IconPhotoFilter.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhotoFilter: React.FC = (props) => ( diff --git a/src/components/IconPhotoLibrary.tsx b/src/components/IconPhotoLibrary.tsx index 8d6271371..9417e213a 100644 --- a/src/components/IconPhotoLibrary.tsx +++ b/src/components/IconPhotoLibrary.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhotoLibrary: React.FC = (props) => ( diff --git a/src/components/IconPhotoSizeSelectActual.tsx b/src/components/IconPhotoSizeSelectActual.tsx index 0ecd2c192..b5d028e62 100644 --- a/src/components/IconPhotoSizeSelectActual.tsx +++ b/src/components/IconPhotoSizeSelectActual.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhotoSizeSelectActual: React.FC = (props) => ( diff --git a/src/components/IconPhotoSizeSelectLarge.tsx b/src/components/IconPhotoSizeSelectLarge.tsx index 6ae4824e2..da2ffb600 100644 --- a/src/components/IconPhotoSizeSelectLarge.tsx +++ b/src/components/IconPhotoSizeSelectLarge.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhotoSizeSelectLarge: React.FC = (props) => ( diff --git a/src/components/IconPhotoSizeSelectSmall.tsx b/src/components/IconPhotoSizeSelectSmall.tsx index b7d527c28..615fa5da2 100644 --- a/src/components/IconPhotoSizeSelectSmall.tsx +++ b/src/components/IconPhotoSizeSelectSmall.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPhotoSizeSelectSmall: React.FC = (props) => ( diff --git a/src/components/IconPictureAsPdf.tsx b/src/components/IconPictureAsPdf.tsx index 509fc4965..151f7e2bf 100644 --- a/src/components/IconPictureAsPdf.tsx +++ b/src/components/IconPictureAsPdf.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPictureAsPdf: React.FC = (props) => ( diff --git a/src/components/IconPictureInPicture.tsx b/src/components/IconPictureInPicture.tsx index 0660216ba..755d9cd64 100644 --- a/src/components/IconPictureInPicture.tsx +++ b/src/components/IconPictureInPicture.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPictureInPicture: React.FC = (props) => ( diff --git a/src/components/IconPictureInPictureAlt.tsx b/src/components/IconPictureInPictureAlt.tsx index db5531665..6940071ce 100644 --- a/src/components/IconPictureInPictureAlt.tsx +++ b/src/components/IconPictureInPictureAlt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPictureInPictureAlt: React.FC = (props) => ( diff --git a/src/components/IconPieChart.tsx b/src/components/IconPieChart.tsx index 2f1dd347d..0a8f49fab 100644 --- a/src/components/IconPieChart.tsx +++ b/src/components/IconPieChart.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPieChart: React.FC = (props) => ( diff --git a/src/components/IconPinDrop.tsx b/src/components/IconPinDrop.tsx index eac3cc7a4..1be703c0d 100644 --- a/src/components/IconPinDrop.tsx +++ b/src/components/IconPinDrop.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPinDrop: React.FC = (props) => ( diff --git a/src/components/IconPlace.tsx b/src/components/IconPlace.tsx index c46660258..a6edd8802 100644 --- a/src/components/IconPlace.tsx +++ b/src/components/IconPlace.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPlace: React.FC = (props) => ( diff --git a/src/components/IconPlagiarism.tsx b/src/components/IconPlagiarism.tsx index c68501ccf..bf1b498cf 100644 --- a/src/components/IconPlagiarism.tsx +++ b/src/components/IconPlagiarism.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPlagiarism: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconPlayCircleFilled.tsx b/src/components/IconPlayCircleFilled.tsx index 95455ad5a..4f39009c4 100644 --- a/src/components/IconPlayCircleFilled.tsx +++ b/src/components/IconPlayCircleFilled.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPlayCircleFilled: React.FC = (props) => ( diff --git a/src/components/IconPlayCircleOutline.tsx b/src/components/IconPlayCircleOutline.tsx index 478ab3954..c75dc2f7d 100644 --- a/src/components/IconPlayCircleOutline.tsx +++ b/src/components/IconPlayCircleOutline.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPlayCircleOutline: React.FC = (props) => ( diff --git a/src/components/IconPlayForWork.tsx b/src/components/IconPlayForWork.tsx index c07f34572..6ca6f9820 100644 --- a/src/components/IconPlayForWork.tsx +++ b/src/components/IconPlayForWork.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPlayForWork: React.FC = (props) => ( diff --git a/src/components/IconPlaylistAdd.tsx b/src/components/IconPlaylistAdd.tsx index 6d17492ca..5c61a6259 100644 --- a/src/components/IconPlaylistAdd.tsx +++ b/src/components/IconPlaylistAdd.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPlaylistAdd: React.FC = (props) => ( diff --git a/src/components/IconPlaylistAddCheck.tsx b/src/components/IconPlaylistAddCheck.tsx index 457a22272..8ac1d9c98 100644 --- a/src/components/IconPlaylistAddCheck.tsx +++ b/src/components/IconPlaylistAddCheck.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPlaylistAddCheck: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconPlumbing.tsx b/src/components/IconPlumbing.tsx index 499e81002..274c8cf0d 100644 --- a/src/components/IconPlumbing.tsx +++ b/src/components/IconPlumbing.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPlumbing: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconPointOfSale.tsx b/src/components/IconPointOfSale.tsx index be47a8d1b..5ee19b61a 100644 --- a/src/components/IconPointOfSale.tsx +++ b/src/components/IconPointOfSale.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPointOfSale: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconPolymer.tsx b/src/components/IconPolymer.tsx index aab47b69c..401d13a11 100644 --- a/src/components/IconPolymer.tsx +++ b/src/components/IconPolymer.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPolymer: React.FC = (props) => ( diff --git a/src/components/IconPool.tsx b/src/components/IconPool.tsx index b9b3822f5..ea6b3963f 100644 --- a/src/components/IconPool.tsx +++ b/src/components/IconPool.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPool: React.FC = (props) => ( diff --git a/src/components/IconPortableWifiOff.tsx b/src/components/IconPortableWifiOff.tsx index 337bd8b35..eb84fbb8e 100644 --- a/src/components/IconPortableWifiOff.tsx +++ b/src/components/IconPortableWifiOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPortableWifiOff: React.FC = (props) => ( diff --git a/src/components/IconPortrait.tsx b/src/components/IconPortrait.tsx index ed9808da0..6fda92e33 100644 --- a/src/components/IconPortrait.tsx +++ b/src/components/IconPortrait.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPortrait: React.FC = (props) => ( diff --git a/src/components/IconPostAdd.tsx b/src/components/IconPostAdd.tsx index 4fe270bcb..0fd6190a7 100644 --- a/src/components/IconPostAdd.tsx +++ b/src/components/IconPostAdd.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPostAdd: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconPowerInput.tsx b/src/components/IconPowerInput.tsx index b7d71c4cf..82a740d8d 100644 --- a/src/components/IconPowerInput.tsx +++ b/src/components/IconPowerInput.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPowerInput: React.FC = (props) => ( diff --git a/src/components/IconPowerOff.tsx b/src/components/IconPowerOff.tsx index 9fa05a348..6889f0fcb 100644 --- a/src/components/IconPowerOff.tsx +++ b/src/components/IconPowerOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPowerOff: React.FC = (props) => ( diff --git a/src/components/IconPowerSettingsNew.tsx b/src/components/IconPowerSettingsNew.tsx index 184f04fb8..df4b3f7eb 100644 --- a/src/components/IconPowerSettingsNew.tsx +++ b/src/components/IconPowerSettingsNew.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPowerSettingsNew: React.FC = (props) => ( diff --git a/src/components/IconPregnantWoman.tsx b/src/components/IconPregnantWoman.tsx index dbc2cd4f0..49a78a8c7 100644 --- a/src/components/IconPregnantWoman.tsx +++ b/src/components/IconPregnantWoman.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPregnantWoman: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconPreview.tsx b/src/components/IconPreview.tsx index 39825b8a1..000aed19b 100644 --- a/src/components/IconPreview.tsx +++ b/src/components/IconPreview.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPreview: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconPrintDisabled.tsx b/src/components/IconPrintDisabled.tsx index 6248dd00f..595fcd7ec 100644 --- a/src/components/IconPrintDisabled.tsx +++ b/src/components/IconPrintDisabled.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPrintDisabled: React.FC = (props) => ( diff --git a/src/components/IconPriorityHigh.tsx b/src/components/IconPriorityHigh.tsx index f08947090..ad5307c0e 100644 --- a/src/components/IconPriorityHigh.tsx +++ b/src/components/IconPriorityHigh.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPriorityHigh: React.FC = (props) => ( diff --git a/src/components/IconPrivacyTip.tsx b/src/components/IconPrivacyTip.tsx index 89c2e9fc1..89bd8da91 100644 --- a/src/components/IconPrivacyTip.tsx +++ b/src/components/IconPrivacyTip.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPrivacyTip: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconPublicOff.tsx b/src/components/IconPublicOff.tsx index 220d5a18a..b5452b5e9 100644 --- a/src/components/IconPublicOff.tsx +++ b/src/components/IconPublicOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPublicOff: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconPublishedWithChanges.tsx b/src/components/IconPublishedWithChanges.tsx index f58b8ff5f..1e35e4493 100644 --- a/src/components/IconPublishedWithChanges.tsx +++ b/src/components/IconPublishedWithChanges.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconPublishedWithChanges: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconQuestionAnswer.tsx b/src/components/IconQuestionAnswer.tsx index b34822eb4..458735ff4 100644 --- a/src/components/IconQuestionAnswer.tsx +++ b/src/components/IconQuestionAnswer.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconQuestionAnswer: React.FC = (props) => ( diff --git a/src/components/IconQueue.tsx b/src/components/IconQueue.tsx index 2d3bb48f5..550fb5b3d 100644 --- a/src/components/IconQueue.tsx +++ b/src/components/IconQueue.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconQueue: React.FC = (props) => ( diff --git a/src/components/IconQueueMusic.tsx b/src/components/IconQueueMusic.tsx index e30d59b4a..f04626c4d 100644 --- a/src/components/IconQueueMusic.tsx +++ b/src/components/IconQueueMusic.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconQueueMusic: React.FC = (props) => ( diff --git a/src/components/IconQueuePlayNext.tsx b/src/components/IconQueuePlayNext.tsx index 1b02959ae..087090b74 100644 --- a/src/components/IconQueuePlayNext.tsx +++ b/src/components/IconQueuePlayNext.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconQueuePlayNext: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconRadioButtonChecked.tsx b/src/components/IconRadioButtonChecked.tsx index 9cf19f61d..cae55f3fb 100644 --- a/src/components/IconRadioButtonChecked.tsx +++ b/src/components/IconRadioButtonChecked.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRadioButtonChecked: React.FC = (props) => ( diff --git a/src/components/IconRadioButtonUnchecked.tsx b/src/components/IconRadioButtonUnchecked.tsx index 72513df21..40eccd1c6 100644 --- a/src/components/IconRadioButtonUnchecked.tsx +++ b/src/components/IconRadioButtonUnchecked.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRadioButtonUnchecked: React.FC = (props) => ( diff --git a/src/components/IconRateReview.tsx b/src/components/IconRateReview.tsx index d034a93c2..1ab4ba058 100644 --- a/src/components/IconRateReview.tsx +++ b/src/components/IconRateReview.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRateReview: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconReceiptLong.tsx b/src/components/IconReceiptLong.tsx index 97adf4c1b..9dd7b3c3f 100644 --- a/src/components/IconReceiptLong.tsx +++ b/src/components/IconReceiptLong.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconReceiptLong: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconRecordVoiceOver.tsx b/src/components/IconRecordVoiceOver.tsx index 7f80b4885..eccd151f4 100644 --- a/src/components/IconRecordVoiceOver.tsx +++ b/src/components/IconRecordVoiceOver.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRecordVoiceOver: React.FC = (props) => ( diff --git a/src/components/IconRedeem.tsx b/src/components/IconRedeem.tsx index 85d686b70..52468444b 100644 --- a/src/components/IconRedeem.tsx +++ b/src/components/IconRedeem.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRedeem: React.FC = (props) => ( diff --git a/src/components/IconRedo.tsx b/src/components/IconRedo.tsx index c5903c7ce..7f5dbe071 100644 --- a/src/components/IconRedo.tsx +++ b/src/components/IconRedo.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRedo: React.FC = (props) => ( diff --git a/src/components/IconReduceCapacity.tsx b/src/components/IconReduceCapacity.tsx index cd731ec7f..77709fa23 100644 --- a/src/components/IconReduceCapacity.tsx +++ b/src/components/IconReduceCapacity.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconReduceCapacity: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconRemove.tsx b/src/components/IconRemove.tsx index 344c49acf..60ea2bac2 100644 --- a/src/components/IconRemove.tsx +++ b/src/components/IconRemove.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRemove: React.FC = (props) => ( diff --git a/src/components/IconRemoveCircle.tsx b/src/components/IconRemoveCircle.tsx index 8dc930f26..3e3cf7e07 100644 --- a/src/components/IconRemoveCircle.tsx +++ b/src/components/IconRemoveCircle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRemoveCircle: React.FC = (props) => ( diff --git a/src/components/IconRemoveCircleOutline.tsx b/src/components/IconRemoveCircleOutline.tsx index c7f15e4e4..f616047d1 100644 --- a/src/components/IconRemoveCircleOutline.tsx +++ b/src/components/IconRemoveCircleOutline.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRemoveCircleOutline: React.FC = (props) => ( diff --git a/src/components/IconRemoveFromQueue.tsx b/src/components/IconRemoveFromQueue.tsx index 6be88964e..fae88570c 100644 --- a/src/components/IconRemoveFromQueue.tsx +++ b/src/components/IconRemoveFromQueue.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRemoveFromQueue: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconRemoveShoppingCart.tsx b/src/components/IconRemoveShoppingCart.tsx index 9ba39fec4..f0e499527 100644 --- a/src/components/IconRemoveShoppingCart.tsx +++ b/src/components/IconRemoveShoppingCart.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRemoveShoppingCart: React.FC = (props) => ( diff --git a/src/components/IconReorder.tsx b/src/components/IconReorder.tsx index a8482b573..81676365c 100644 --- a/src/components/IconReorder.tsx +++ b/src/components/IconReorder.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconReorder: React.FC = (props) => ( diff --git a/src/components/IconRepeat.tsx b/src/components/IconRepeat.tsx index 8fbf80d68..bd88a6404 100644 --- a/src/components/IconRepeat.tsx +++ b/src/components/IconRepeat.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRepeat: React.FC = (props) => ( diff --git a/src/components/IconRepeatOne.tsx b/src/components/IconRepeatOne.tsx index 3fb113938..36f9e2562 100644 --- a/src/components/IconRepeatOne.tsx +++ b/src/components/IconRepeatOne.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRepeatOne: React.FC = (props) => ( diff --git a/src/components/IconReplay.tsx b/src/components/IconReplay.tsx index e8e9519d0..62862b081 100644 --- a/src/components/IconReplay.tsx +++ b/src/components/IconReplay.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconReplay: React.FC = (props) => ( diff --git a/src/components/IconReplay10.tsx b/src/components/IconReplay10.tsx index 1d69024c9..80e612ec9 100644 --- a/src/components/IconReplay10.tsx +++ b/src/components/IconReplay10.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconReplay10: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconReplyAll.tsx b/src/components/IconReplyAll.tsx index 822765cb9..17231d11c 100644 --- a/src/components/IconReplyAll.tsx +++ b/src/components/IconReplyAll.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconReplyAll: React.FC = (props) => ( diff --git a/src/components/IconReport.tsx b/src/components/IconReport.tsx index 0582619fc..6045f1756 100644 --- a/src/components/IconReport.tsx +++ b/src/components/IconReport.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconReport: React.FC = (props) => ( diff --git a/src/components/IconReportOff.tsx b/src/components/IconReportOff.tsx index 036ba589c..b4c819927 100644 --- a/src/components/IconReportOff.tsx +++ b/src/components/IconReportOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconReportOff: React.FC = (props) => ( diff --git a/src/components/IconReportProblem.tsx b/src/components/IconReportProblem.tsx index 1b4000465..d084741b6 100644 --- a/src/components/IconReportProblem.tsx +++ b/src/components/IconReportProblem.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconReportProblem: React.FC = (props) => ( diff --git a/src/components/IconRequestPage.tsx b/src/components/IconRequestPage.tsx index 9a2fbac03..56b98fc93 100644 --- a/src/components/IconRequestPage.tsx +++ b/src/components/IconRequestPage.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRequestPage: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconRestaurantMenu.tsx b/src/components/IconRestaurantMenu.tsx index 785a1e0fe..2b8eee8de 100644 --- a/src/components/IconRestaurantMenu.tsx +++ b/src/components/IconRestaurantMenu.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRestaurantMenu: React.FC = (props) => ( diff --git a/src/components/IconRestore.tsx b/src/components/IconRestore.tsx index 223bcbcd8..58aaa4c96 100644 --- a/src/components/IconRestore.tsx +++ b/src/components/IconRestore.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRestore: React.FC = (props) => ( diff --git a/src/components/IconRestoreFromTrash.tsx b/src/components/IconRestoreFromTrash.tsx index 5207ba312..dfe44e417 100644 --- a/src/components/IconRestoreFromTrash.tsx +++ b/src/components/IconRestoreFromTrash.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRestoreFromTrash: React.FC = (props) => ( diff --git a/src/components/IconRestorePage.tsx b/src/components/IconRestorePage.tsx index 7ecee1618..728b28b47 100644 --- a/src/components/IconRestorePage.tsx +++ b/src/components/IconRestorePage.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRestorePage: React.FC = (props) => ( diff --git a/src/components/IconRiceBowl.tsx b/src/components/IconRiceBowl.tsx index da2d55084..74bb91758 100644 --- a/src/components/IconRiceBowl.tsx +++ b/src/components/IconRiceBowl.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRiceBowl: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconRoofing.tsx b/src/components/IconRoofing.tsx index 4f772bd87..52202d158 100644 --- a/src/components/IconRoofing.tsx +++ b/src/components/IconRoofing.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRoofing: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconRoomPreferences.tsx b/src/components/IconRoomPreferences.tsx index 9bb1bef50..d24921d35 100644 --- a/src/components/IconRoomPreferences.tsx +++ b/src/components/IconRoomPreferences.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRoomPreferences: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconRotate90DegreesCcw.tsx b/src/components/IconRotate90DegreesCcw.tsx index a6a90b4a7..9c75400c8 100644 --- a/src/components/IconRotate90DegreesCcw.tsx +++ b/src/components/IconRotate90DegreesCcw.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRotate90DegreesCcw: React.FC = (props) => ( diff --git a/src/components/IconRotateLeft.tsx b/src/components/IconRotateLeft.tsx index dc9781a84..7e984a1e2 100644 --- a/src/components/IconRotateLeft.tsx +++ b/src/components/IconRotateLeft.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRotateLeft: React.FC = (props) => ( diff --git a/src/components/IconRotateRight.tsx b/src/components/IconRotateRight.tsx index de83ec457..f165ec5ac 100644 --- a/src/components/IconRotateRight.tsx +++ b/src/components/IconRotateRight.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRotateRight: React.FC = (props) => ( diff --git a/src/components/IconRoundedCorner.tsx b/src/components/IconRoundedCorner.tsx index 6ee14394b..ebaadaa6b 100644 --- a/src/components/IconRoundedCorner.tsx +++ b/src/components/IconRoundedCorner.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRoundedCorner: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconRowing.tsx b/src/components/IconRowing.tsx index b8540cfec..80ada2311 100644 --- a/src/components/IconRowing.tsx +++ b/src/components/IconRowing.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRowing: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconRule.tsx b/src/components/IconRule.tsx index eb8c8e893..1c178a30f 100644 --- a/src/components/IconRule.tsx +++ b/src/components/IconRule.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconRule: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconSanitizer.tsx b/src/components/IconSanitizer.tsx index 696ab1c34..7a88472a7 100644 --- a/src/components/IconSanitizer.tsx +++ b/src/components/IconSanitizer.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSanitizer: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconSave.tsx b/src/components/IconSave.tsx index f08802658..16ac9b4a2 100644 --- a/src/components/IconSave.tsx +++ b/src/components/IconSave.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSave: React.FC = (props) => ( diff --git a/src/components/IconSaveAlt.tsx b/src/components/IconSaveAlt.tsx index 1ca0a9e28..08df8a246 100644 --- a/src/components/IconSaveAlt.tsx +++ b/src/components/IconSaveAlt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSaveAlt: React.FC = (props) => ( diff --git a/src/components/IconScanner.tsx b/src/components/IconScanner.tsx index ae0d2e202..da5cf4166 100644 --- a/src/components/IconScanner.tsx +++ b/src/components/IconScanner.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconScanner: React.FC = (props) => ( diff --git a/src/components/IconScatterPlot.tsx b/src/components/IconScatterPlot.tsx index b4b8e9aad..6206ad53b 100644 --- a/src/components/IconScatterPlot.tsx +++ b/src/components/IconScatterPlot.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconScatterPlot: React.FC = (props) => ( diff --git a/src/components/IconSchedule.tsx b/src/components/IconSchedule.tsx index 3b026fe4b..2f75a7405 100644 --- a/src/components/IconSchedule.tsx +++ b/src/components/IconSchedule.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSchedule: React.FC = (props) => ( diff --git a/src/components/IconSchool.tsx b/src/components/IconSchool.tsx index 2d837d55c..a6ac0222f 100644 --- a/src/components/IconSchool.tsx +++ b/src/components/IconSchool.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSchool: React.FC = (props) => ( diff --git a/src/components/IconScience.tsx b/src/components/IconScience.tsx index fbd438027..7c6874b9e 100644 --- a/src/components/IconScience.tsx +++ b/src/components/IconScience.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconScience: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconScreenLockLandscape.tsx b/src/components/IconScreenLockLandscape.tsx index 844aa16f4..49428cf29 100644 --- a/src/components/IconScreenLockLandscape.tsx +++ b/src/components/IconScreenLockLandscape.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconScreenLockLandscape: React.FC = (props) => ( diff --git a/src/components/IconScreenLockPortrait.tsx b/src/components/IconScreenLockPortrait.tsx index 424c41a28..4ecc52812 100644 --- a/src/components/IconScreenLockPortrait.tsx +++ b/src/components/IconScreenLockPortrait.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconScreenLockPortrait: React.FC = (props) => ( diff --git a/src/components/IconScreenLockRotation.tsx b/src/components/IconScreenLockRotation.tsx index 2336c0eb1..5b148c389 100644 --- a/src/components/IconScreenLockRotation.tsx +++ b/src/components/IconScreenLockRotation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconScreenLockRotation: React.FC = (props) => ( diff --git a/src/components/IconScreenRotation.tsx b/src/components/IconScreenRotation.tsx index 59202be7c..0c7f3f77a 100644 --- a/src/components/IconScreenRotation.tsx +++ b/src/components/IconScreenRotation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconScreenRotation: React.FC = (props) => ( diff --git a/src/components/IconScreenShare.tsx b/src/components/IconScreenShare.tsx index 5f492e0c3..ddffc80f6 100644 --- a/src/components/IconScreenShare.tsx +++ b/src/components/IconScreenShare.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconScreenShare: React.FC = (props) => ( diff --git a/src/components/IconSdCard.tsx b/src/components/IconSdCard.tsx index 64051035d..518e2cf58 100644 --- a/src/components/IconSdCard.tsx +++ b/src/components/IconSdCard.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSdCard: React.FC = (props) => ( diff --git a/src/components/IconSdStorage.tsx b/src/components/IconSdStorage.tsx index 9d82d526b..ef485dbe2 100644 --- a/src/components/IconSdStorage.tsx +++ b/src/components/IconSdStorage.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSdStorage: React.FC = (props) => ( diff --git a/src/components/IconSearch.tsx b/src/components/IconSearch.tsx index 32fe7dc1f..c350f4916 100644 --- a/src/components/IconSearch.tsx +++ b/src/components/IconSearch.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSearch: React.FC = (props) => ( diff --git a/src/components/IconSearchOff.tsx b/src/components/IconSearchOff.tsx index d95043ed2..3aa69d553 100644 --- a/src/components/IconSearchOff.tsx +++ b/src/components/IconSearchOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSearchOff: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconSelectAll.tsx b/src/components/IconSelectAll.tsx index ab4996d5b..6d901e7b4 100644 --- a/src/components/IconSelectAll.tsx +++ b/src/components/IconSelectAll.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSelectAll: React.FC = (props) => ( diff --git a/src/components/IconSelfImprovement.tsx b/src/components/IconSelfImprovement.tsx index de53c9325..7d92d9f21 100644 --- a/src/components/IconSelfImprovement.tsx +++ b/src/components/IconSelfImprovement.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSelfImprovement: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconSensorDoor.tsx b/src/components/IconSensorDoor.tsx index 2a8fdc8fe..19814feae 100644 --- a/src/components/IconSensorDoor.tsx +++ b/src/components/IconSensorDoor.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSensorDoor: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconSentimentSatisfied.tsx b/src/components/IconSentimentSatisfied.tsx index d67fa5ea1..2e429002d 100644 --- a/src/components/IconSentimentSatisfied.tsx +++ b/src/components/IconSentimentSatisfied.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSentimentSatisfied: React.FC = (props) => ( diff --git a/src/components/IconSentimentSatisfiedAlt.tsx b/src/components/IconSentimentSatisfiedAlt.tsx index e449de64c..ddf220cc3 100644 --- a/src/components/IconSentimentSatisfiedAlt.tsx +++ b/src/components/IconSentimentSatisfiedAlt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSentimentSatisfiedAlt: React.FC = (props) => ( diff --git a/src/components/IconSentimentVeryDissatisfied.tsx b/src/components/IconSentimentVeryDissatisfied.tsx index 745522f43..e54bc3fd3 100644 --- a/src/components/IconSentimentVeryDissatisfied.tsx +++ b/src/components/IconSentimentVeryDissatisfied.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSentimentVeryDissatisfied: React.FC = (props) => ( diff --git a/src/components/IconSentimentVerySatisfied.tsx b/src/components/IconSentimentVerySatisfied.tsx index f3426f887..8c1b284d3 100644 --- a/src/components/IconSentimentVerySatisfied.tsx +++ b/src/components/IconSentimentVerySatisfied.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSentimentVerySatisfied: React.FC = (props) => ( diff --git a/src/components/IconSetMeal.tsx b/src/components/IconSetMeal.tsx index a9cc1f16e..6a9117889 100644 --- a/src/components/IconSetMeal.tsx +++ b/src/components/IconSetMeal.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSetMeal: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconSettingsBackupRestore.tsx b/src/components/IconSettingsBackupRestore.tsx index 26adc7661..42fbc45cc 100644 --- a/src/components/IconSettingsBackupRestore.tsx +++ b/src/components/IconSettingsBackupRestore.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSettingsBackupRestore: React.FC = (props) => ( diff --git a/src/components/IconSettingsBluetooth.tsx b/src/components/IconSettingsBluetooth.tsx index 303ebf8df..5d087d389 100644 --- a/src/components/IconSettingsBluetooth.tsx +++ b/src/components/IconSettingsBluetooth.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSettingsBluetooth: React.FC = (props) => ( diff --git a/src/components/IconSettingsBrightness.tsx b/src/components/IconSettingsBrightness.tsx index 67f26fc2a..fd0c5931f 100644 --- a/src/components/IconSettingsBrightness.tsx +++ b/src/components/IconSettingsBrightness.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSettingsBrightness: React.FC = (props) => ( diff --git a/src/components/IconSettingsCell.tsx b/src/components/IconSettingsCell.tsx index cbb1e9a84..59be47cca 100644 --- a/src/components/IconSettingsCell.tsx +++ b/src/components/IconSettingsCell.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSettingsCell: React.FC = (props) => ( diff --git a/src/components/IconSettingsEthernet.tsx b/src/components/IconSettingsEthernet.tsx index c735f2040..57649d848 100644 --- a/src/components/IconSettingsEthernet.tsx +++ b/src/components/IconSettingsEthernet.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSettingsEthernet: React.FC = (props) => ( diff --git a/src/components/IconSettingsInputAntenna.tsx b/src/components/IconSettingsInputAntenna.tsx index f24713de7..642768c05 100644 --- a/src/components/IconSettingsInputAntenna.tsx +++ b/src/components/IconSettingsInputAntenna.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSettingsInputAntenna: React.FC = (props) => ( diff --git a/src/components/IconSettingsInputComponent.tsx b/src/components/IconSettingsInputComponent.tsx index 4a51b6b63..02e89ccc5 100644 --- a/src/components/IconSettingsInputComponent.tsx +++ b/src/components/IconSettingsInputComponent.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSettingsInputComponent: React.FC = (props) => ( diff --git a/src/components/IconSettingsInputComposite.tsx b/src/components/IconSettingsInputComposite.tsx index c10d633ee..7767a5859 100644 --- a/src/components/IconSettingsInputComposite.tsx +++ b/src/components/IconSettingsInputComposite.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSettingsInputComposite: React.FC = (props) => ( diff --git a/src/components/IconSettingsInputHdmi.tsx b/src/components/IconSettingsInputHdmi.tsx index 9608b925d..4c4c088bc 100644 --- a/src/components/IconSettingsInputHdmi.tsx +++ b/src/components/IconSettingsInputHdmi.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSettingsInputHdmi: React.FC = (props) => ( diff --git a/src/components/IconSettingsInputSvideo.tsx b/src/components/IconSettingsInputSvideo.tsx index daafd1f81..fcc498d5f 100644 --- a/src/components/IconSettingsInputSvideo.tsx +++ b/src/components/IconSettingsInputSvideo.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSettingsInputSvideo: React.FC = (props) => ( diff --git a/src/components/IconSettingsOverscan.tsx b/src/components/IconSettingsOverscan.tsx index 77ee541fd..72547190a 100644 --- a/src/components/IconSettingsOverscan.tsx +++ b/src/components/IconSettingsOverscan.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSettingsOverscan: React.FC = (props) => ( diff --git a/src/components/IconSettingsPhone.tsx b/src/components/IconSettingsPhone.tsx index f8e1b2400..19b431080 100644 --- a/src/components/IconSettingsPhone.tsx +++ b/src/components/IconSettingsPhone.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSettingsPhone: React.FC = (props) => ( diff --git a/src/components/IconSettingsPower.tsx b/src/components/IconSettingsPower.tsx index 276d364f7..940dafd30 100644 --- a/src/components/IconSettingsPower.tsx +++ b/src/components/IconSettingsPower.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSettingsPower: React.FC = (props) => ( diff --git a/src/components/IconSettingsRemote.tsx b/src/components/IconSettingsRemote.tsx index d061306cf..826aad2f3 100644 --- a/src/components/IconSettingsRemote.tsx +++ b/src/components/IconSettingsRemote.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSettingsRemote: React.FC = (props) => ( diff --git a/src/components/IconSettingsSystemDaydream.tsx b/src/components/IconSettingsSystemDaydream.tsx index 63a671774..2950b94b2 100644 --- a/src/components/IconSettingsSystemDaydream.tsx +++ b/src/components/IconSettingsSystemDaydream.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSettingsSystemDaydream: React.FC = (props) => ( diff --git a/src/components/IconSettingsVoice.tsx b/src/components/IconSettingsVoice.tsx index 28fec0837..ad9f49cf7 100644 --- a/src/components/IconSettingsVoice.tsx +++ b/src/components/IconSettingsVoice.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSettingsVoice: React.FC = (props) => ( diff --git a/src/components/IconShare.tsx b/src/components/IconShare.tsx index d860f4db8..576907b8b 100644 --- a/src/components/IconShare.tsx +++ b/src/components/IconShare.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconShare: React.FC = (props) => ( diff --git a/src/components/IconShop.tsx b/src/components/IconShop.tsx index 3d5d5681f..9bf89d4e6 100644 --- a/src/components/IconShop.tsx +++ b/src/components/IconShop.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconShop: React.FC = (props) => ( diff --git a/src/components/IconShopTwo.tsx b/src/components/IconShopTwo.tsx index c9914339c..356bf3197 100644 --- a/src/components/IconShopTwo.tsx +++ b/src/components/IconShopTwo.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconShopTwo: React.FC = (props) => ( diff --git a/src/components/IconShoppingBag.tsx b/src/components/IconShoppingBag.tsx index 2f7ad437c..169c0d8ba 100644 --- a/src/components/IconShoppingBag.tsx +++ b/src/components/IconShoppingBag.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconShoppingBag: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconShoppingCart.tsx b/src/components/IconShoppingCart.tsx index 1a5ef0115..94e481fa1 100644 --- a/src/components/IconShoppingCart.tsx +++ b/src/components/IconShoppingCart.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconShoppingCart: React.FC = (props) => ( diff --git a/src/components/IconShortText.tsx b/src/components/IconShortText.tsx index 29be34cb1..141fc96d0 100644 --- a/src/components/IconShortText.tsx +++ b/src/components/IconShortText.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconShortText: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconShuffle.tsx b/src/components/IconShuffle.tsx index eadf7011e..4e2a2f573 100644 --- a/src/components/IconShuffle.tsx +++ b/src/components/IconShuffle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconShuffle: React.FC = (props) => ( diff --git a/src/components/IconShutterSpeed.tsx b/src/components/IconShutterSpeed.tsx index 37d3d0deb..35240f278 100644 --- a/src/components/IconShutterSpeed.tsx +++ b/src/components/IconShutterSpeed.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconShutterSpeed: React.FC = (props) => ( diff --git a/src/components/IconSick.tsx b/src/components/IconSick.tsx index 647a0d18c..c5f5d0411 100644 --- a/src/components/IconSick.tsx +++ b/src/components/IconSick.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSick: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconSignalCellularAlt.tsx b/src/components/IconSignalCellularAlt.tsx index 31967eaf9..a6694316f 100644 --- a/src/components/IconSignalCellularAlt.tsx +++ b/src/components/IconSignalCellularAlt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSignalCellularAlt: React.FC = (props) => ( diff --git a/src/components/IconSignalCellularConnectedNoInternet4Bar.tsx b/src/components/IconSignalCellularConnectedNoInternet4Bar.tsx index 90b71187e..56942573a 100644 --- a/src/components/IconSignalCellularConnectedNoInternet4Bar.tsx +++ b/src/components/IconSignalCellularConnectedNoInternet4Bar.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSignalCellularConnectedNoInternet4Bar: React.FC = ( props ) => ( diff --git a/src/components/IconSignalCellularNoSim.tsx b/src/components/IconSignalCellularNoSim.tsx index 53ac374ed..335fa8e8a 100644 --- a/src/components/IconSignalCellularNoSim.tsx +++ b/src/components/IconSignalCellularNoSim.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSignalCellularNoSim: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconSignalCellularOff.tsx b/src/components/IconSignalCellularOff.tsx index 8b37ce8bb..f7f385754 100644 --- a/src/components/IconSignalCellularOff.tsx +++ b/src/components/IconSignalCellularOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSignalCellularOff: React.FC = (props) => ( diff --git a/src/components/IconSignalWifi4Bar.tsx b/src/components/IconSignalWifi4Bar.tsx index c72182aa7..73150eb10 100644 --- a/src/components/IconSignalWifi4Bar.tsx +++ b/src/components/IconSignalWifi4Bar.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSignalWifi4Bar: React.FC = (props) => ( diff --git a/src/components/IconSignalWifi4BarLock.tsx b/src/components/IconSignalWifi4BarLock.tsx index d5ee5a424..858d6922a 100644 --- a/src/components/IconSignalWifi4BarLock.tsx +++ b/src/components/IconSignalWifi4BarLock.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSignalWifi4BarLock: React.FC = (props) => ( diff --git a/src/components/IconSignalWifiOff.tsx b/src/components/IconSignalWifiOff.tsx index 20a198ffd..39ee0bade 100644 --- a/src/components/IconSignalWifiOff.tsx +++ b/src/components/IconSignalWifiOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSignalWifiOff: React.FC = (props) => ( diff --git a/src/components/IconSimCard.tsx b/src/components/IconSimCard.tsx index 2f565daa9..0bccc2c84 100644 --- a/src/components/IconSimCard.tsx +++ b/src/components/IconSimCard.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSimCard: React.FC = (props) => ( diff --git a/src/components/IconSingleBed.tsx b/src/components/IconSingleBed.tsx index ecf9cd299..ddd6f8b51 100644 --- a/src/components/IconSingleBed.tsx +++ b/src/components/IconSingleBed.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSingleBed: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconSkipPrevious.tsx b/src/components/IconSkipPrevious.tsx index aa003ca3e..51e13f777 100644 --- a/src/components/IconSkipPrevious.tsx +++ b/src/components/IconSkipPrevious.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSkipPrevious: React.FC = (props) => ( diff --git a/src/components/IconSlideshow.tsx b/src/components/IconSlideshow.tsx index e4c519713..e7e74da85 100644 --- a/src/components/IconSlideshow.tsx +++ b/src/components/IconSlideshow.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSlideshow: React.FC = (props) => ( diff --git a/src/components/IconSlowMotionVideo.tsx b/src/components/IconSlowMotionVideo.tsx index 550e0f8b4..68e2ae6b5 100644 --- a/src/components/IconSlowMotionVideo.tsx +++ b/src/components/IconSlowMotionVideo.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSlowMotionVideo: React.FC = (props) => ( diff --git a/src/components/IconSmartButton.tsx b/src/components/IconSmartButton.tsx index 6982b39db..2d1391d05 100644 --- a/src/components/IconSmartButton.tsx +++ b/src/components/IconSmartButton.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSmartButton: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconSmokeFree.tsx b/src/components/IconSmokeFree.tsx index 1fba7f65b..753d35099 100644 --- a/src/components/IconSmokeFree.tsx +++ b/src/components/IconSmokeFree.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSmokeFree: React.FC = (props) => ( diff --git a/src/components/IconSmokingRooms.tsx b/src/components/IconSmokingRooms.tsx index 65222c537..90acd4645 100644 --- a/src/components/IconSmokingRooms.tsx +++ b/src/components/IconSmokingRooms.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSmokingRooms: React.FC = (props) => ( diff --git a/src/components/IconSms.tsx b/src/components/IconSms.tsx index a62b5ca4f..d10adece0 100644 --- a/src/components/IconSms.tsx +++ b/src/components/IconSms.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSms: React.FC = (props) => ( diff --git a/src/components/IconSmsFailed.tsx b/src/components/IconSmsFailed.tsx index 2815f6359..40b5e5134 100644 --- a/src/components/IconSmsFailed.tsx +++ b/src/components/IconSmsFailed.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSmsFailed: React.FC = (props) => ( diff --git a/src/components/IconSnippetFolder.tsx b/src/components/IconSnippetFolder.tsx index 064949932..883722c51 100644 --- a/src/components/IconSnippetFolder.tsx +++ b/src/components/IconSnippetFolder.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSnippetFolder: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconSoap.tsx b/src/components/IconSoap.tsx index 8def5d1e2..0cb7128ee 100644 --- a/src/components/IconSoap.tsx +++ b/src/components/IconSoap.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSoap: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconSortByAlpha.tsx b/src/components/IconSortByAlpha.tsx index 528c3b630..7fa9eabbc 100644 --- a/src/components/IconSortByAlpha.tsx +++ b/src/components/IconSortByAlpha.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSortByAlpha: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconSpeaker.tsx b/src/components/IconSpeaker.tsx index a812a672a..c4504943f 100644 --- a/src/components/IconSpeaker.tsx +++ b/src/components/IconSpeaker.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSpeaker: React.FC = (props) => ( diff --git a/src/components/IconSpeakerGroup.tsx b/src/components/IconSpeakerGroup.tsx index 8ba898cca..19a4b43e6 100644 --- a/src/components/IconSpeakerGroup.tsx +++ b/src/components/IconSpeakerGroup.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSpeakerGroup: React.FC = (props) => ( diff --git a/src/components/IconSpeakerNotes.tsx b/src/components/IconSpeakerNotes.tsx index 622ce3430..124cc87d5 100644 --- a/src/components/IconSpeakerNotes.tsx +++ b/src/components/IconSpeakerNotes.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSpeakerNotes: React.FC = (props) => ( diff --git a/src/components/IconSpeakerNotesOff.tsx b/src/components/IconSpeakerNotesOff.tsx index 16417d2f3..5536143d3 100644 --- a/src/components/IconSpeakerNotesOff.tsx +++ b/src/components/IconSpeakerNotesOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSpeakerNotesOff: React.FC = (props) => ( diff --git a/src/components/IconSpeakerPhone.tsx b/src/components/IconSpeakerPhone.tsx index 4bb6d231e..3d0f4c759 100644 --- a/src/components/IconSpeakerPhone.tsx +++ b/src/components/IconSpeakerPhone.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSpeakerPhone: React.FC = (props) => ( diff --git a/src/components/IconSpeed.tsx b/src/components/IconSpeed.tsx index dd909b3b1..7dfbe3d80 100644 --- a/src/components/IconSpeed.tsx +++ b/src/components/IconSpeed.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSpeed: React.FC = (props) => ( diff --git a/src/components/IconSpellcheck.tsx b/src/components/IconSpellcheck.tsx index b020c8973..eb3bcab3f 100644 --- a/src/components/IconSpellcheck.tsx +++ b/src/components/IconSpellcheck.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSpellcheck: React.FC = (props) => ( diff --git a/src/components/IconSports.tsx b/src/components/IconSports.tsx index af99fd946..eec350d08 100644 --- a/src/components/IconSports.tsx +++ b/src/components/IconSports.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSports: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconStarBorder.tsx b/src/components/IconStarBorder.tsx index 48a154787..f6600b817 100644 --- a/src/components/IconStarBorder.tsx +++ b/src/components/IconStarBorder.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconStarBorder: React.FC = (props) => ( diff --git a/src/components/IconStarHalf.tsx b/src/components/IconStarHalf.tsx index 249538aca..da91c5de3 100644 --- a/src/components/IconStarHalf.tsx +++ b/src/components/IconStarHalf.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconStarHalf: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconStarRate.tsx b/src/components/IconStarRate.tsx index fe4c50c8e..f783624b6 100644 --- a/src/components/IconStarRate.tsx +++ b/src/components/IconStarRate.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconStarRate: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconStayCurrentLandscape.tsx b/src/components/IconStayCurrentLandscape.tsx index aca9f90ff..4b26df25d 100644 --- a/src/components/IconStayCurrentLandscape.tsx +++ b/src/components/IconStayCurrentLandscape.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconStayCurrentLandscape: React.FC = (props) => ( diff --git a/src/components/IconStayCurrentPortrait.tsx b/src/components/IconStayCurrentPortrait.tsx index 297867731..e752ee916 100644 --- a/src/components/IconStayCurrentPortrait.tsx +++ b/src/components/IconStayCurrentPortrait.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconStayCurrentPortrait: React.FC = (props) => ( diff --git a/src/components/IconStayPrimaryLandscape.tsx b/src/components/IconStayPrimaryLandscape.tsx index 95bfd0e1c..076523c89 100644 --- a/src/components/IconStayPrimaryLandscape.tsx +++ b/src/components/IconStayPrimaryLandscape.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconStayPrimaryLandscape: React.FC = (props) => ( diff --git a/src/components/IconStayPrimaryPortrait.tsx b/src/components/IconStayPrimaryPortrait.tsx index 85fa57403..59d526e29 100644 --- a/src/components/IconStayPrimaryPortrait.tsx +++ b/src/components/IconStayPrimaryPortrait.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconStayPrimaryPortrait: React.FC = (props) => ( diff --git a/src/components/IconStickyNote2.tsx b/src/components/IconStickyNote2.tsx index ff3faab0f..c96de296e 100644 --- a/src/components/IconStickyNote2.tsx +++ b/src/components/IconStickyNote2.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconStickyNote2: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconStopCircle.tsx b/src/components/IconStopCircle.tsx index 38e1fe83f..25fa26ea1 100644 --- a/src/components/IconStopCircle.tsx +++ b/src/components/IconStopCircle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconStopCircle: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconStorage.tsx b/src/components/IconStorage.tsx index 9df7b4ba4..dd6dcbc83 100644 --- a/src/components/IconStorage.tsx +++ b/src/components/IconStorage.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconStorage: React.FC = (props) => ( diff --git a/src/components/IconStore.tsx b/src/components/IconStore.tsx index 2805b8a3a..6c4d7a92f 100644 --- a/src/components/IconStore.tsx +++ b/src/components/IconStore.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconStore: React.FC = (props) => ( diff --git a/src/components/IconStoreMallDirectory.tsx b/src/components/IconStoreMallDirectory.tsx index 492a89fbf..cc89f1919 100644 --- a/src/components/IconStoreMallDirectory.tsx +++ b/src/components/IconStoreMallDirectory.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconStoreMallDirectory: React.FC = (props) => ( diff --git a/src/components/IconStorefront.tsx b/src/components/IconStorefront.tsx index ea30633c3..6b734dcc1 100644 --- a/src/components/IconStorefront.tsx +++ b/src/components/IconStorefront.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconStorefront: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconStreetview.tsx b/src/components/IconStreetview.tsx index b5be11870..2e461d8e9 100644 --- a/src/components/IconStreetview.tsx +++ b/src/components/IconStreetview.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconStreetview: React.FC = (props) => ( diff --git a/src/components/IconStrikethroughS.tsx b/src/components/IconStrikethroughS.tsx index 4b29bf15b..2834a3a6d 100644 --- a/src/components/IconStrikethroughS.tsx +++ b/src/components/IconStrikethroughS.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconStrikethroughS: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconSubdirectoryArrowLeft.tsx b/src/components/IconSubdirectoryArrowLeft.tsx index 3d7f7a370..7b567b02a 100644 --- a/src/components/IconSubdirectoryArrowLeft.tsx +++ b/src/components/IconSubdirectoryArrowLeft.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSubdirectoryArrowLeft: React.FC = (props) => ( diff --git a/src/components/IconSubdirectoryArrowRight.tsx b/src/components/IconSubdirectoryArrowRight.tsx index 26db445bc..886d6f184 100644 --- a/src/components/IconSubdirectoryArrowRight.tsx +++ b/src/components/IconSubdirectoryArrowRight.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSubdirectoryArrowRight: React.FC = (props) => ( diff --git a/src/components/IconSubject.tsx b/src/components/IconSubject.tsx index 64ef10eef..cef8c1bef 100644 --- a/src/components/IconSubject.tsx +++ b/src/components/IconSubject.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSubject: React.FC = (props) => ( diff --git a/src/components/IconSubscript.tsx b/src/components/IconSubscript.tsx index 2d19fd478..7ec8993ad 100644 --- a/src/components/IconSubscript.tsx +++ b/src/components/IconSubscript.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSubscript: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconSubtitles.tsx b/src/components/IconSubtitles.tsx index f4f76c972..afb1c531c 100644 --- a/src/components/IconSubtitles.tsx +++ b/src/components/IconSubtitles.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSubtitles: React.FC = (props) => ( diff --git a/src/components/IconSubtitlesOff.tsx b/src/components/IconSubtitlesOff.tsx index 374bacc44..c58f68bc1 100644 --- a/src/components/IconSubtitlesOff.tsx +++ b/src/components/IconSubtitlesOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSubtitlesOff: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconSupervisorAccount.tsx b/src/components/IconSupervisorAccount.tsx index 4651cd461..7bee194b9 100644 --- a/src/components/IconSupervisorAccount.tsx +++ b/src/components/IconSupervisorAccount.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSupervisorAccount: React.FC = (props) => ( diff --git a/src/components/IconSupport.tsx b/src/components/IconSupport.tsx index f0be247a8..23e7a674a 100644 --- a/src/components/IconSupport.tsx +++ b/src/components/IconSupport.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSupport: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconSwapCalls.tsx b/src/components/IconSwapCalls.tsx index 4bbb84d09..f8efbd76d 100644 --- a/src/components/IconSwapCalls.tsx +++ b/src/components/IconSwapCalls.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSwapCalls: React.FC = (props) => ( diff --git a/src/components/IconSwapHoriz.tsx b/src/components/IconSwapHoriz.tsx index 0f5a5d6db..985dc7fa5 100644 --- a/src/components/IconSwapHoriz.tsx +++ b/src/components/IconSwapHoriz.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSwapHoriz: React.FC = (props) => ( diff --git a/src/components/IconSwapHorizontalCircle.tsx b/src/components/IconSwapHorizontalCircle.tsx index 21c6c46f7..19b8cc99e 100644 --- a/src/components/IconSwapHorizontalCircle.tsx +++ b/src/components/IconSwapHorizontalCircle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSwapHorizontalCircle: React.FC = (props) => ( diff --git a/src/components/IconSwapVert.tsx b/src/components/IconSwapVert.tsx index 1a7fd7eef..7902bc0c8 100644 --- a/src/components/IconSwapVert.tsx +++ b/src/components/IconSwapVert.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSwapVert: React.FC = (props) => ( diff --git a/src/components/IconSwapVerticalCircle.tsx b/src/components/IconSwapVerticalCircle.tsx index da8b4b42b..5f1118708 100644 --- a/src/components/IconSwapVerticalCircle.tsx +++ b/src/components/IconSwapVerticalCircle.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSwapVerticalCircle: React.FC = (props) => ( diff --git a/src/components/IconSwitchCamera.tsx b/src/components/IconSwitchCamera.tsx index 3a2c12b4f..badacdc7a 100644 --- a/src/components/IconSwitchCamera.tsx +++ b/src/components/IconSwitchCamera.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSwitchCamera: React.FC = (props) => ( diff --git a/src/components/IconSwitchLeft.tsx b/src/components/IconSwitchLeft.tsx index 9503c42f2..bd4241558 100644 --- a/src/components/IconSwitchLeft.tsx +++ b/src/components/IconSwitchLeft.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSwitchLeft: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconSync.tsx b/src/components/IconSync.tsx index 3d0b6730f..bc2d80250 100644 --- a/src/components/IconSync.tsx +++ b/src/components/IconSync.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSync: React.FC = (props) => ( diff --git a/src/components/IconSyncAlt.tsx b/src/components/IconSyncAlt.tsx index 14229b6a8..d117171c9 100644 --- a/src/components/IconSyncAlt.tsx +++ b/src/components/IconSyncAlt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSyncAlt: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconSyncProblem.tsx b/src/components/IconSyncProblem.tsx index 66818fcdf..2d7a2fbb5 100644 --- a/src/components/IconSyncProblem.tsx +++ b/src/components/IconSyncProblem.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSyncProblem: React.FC = (props) => ( diff --git a/src/components/IconSystemUpdate.tsx b/src/components/IconSystemUpdate.tsx index c83d0ab0a..c90847fcf 100644 --- a/src/components/IconSystemUpdate.tsx +++ b/src/components/IconSystemUpdate.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSystemUpdate: React.FC = (props) => ( diff --git a/src/components/IconSystemUpdateAlt.tsx b/src/components/IconSystemUpdateAlt.tsx index db14fdad8..9ae4b8d17 100644 --- a/src/components/IconSystemUpdateAlt.tsx +++ b/src/components/IconSystemUpdateAlt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconSystemUpdateAlt: React.FC = (props) => ( diff --git a/src/components/IconTab.tsx b/src/components/IconTab.tsx index 169e019f8..74220f64f 100644 --- a/src/components/IconTab.tsx +++ b/src/components/IconTab.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTab: React.FC = (props) => ( diff --git a/src/components/IconTabUnselected.tsx b/src/components/IconTabUnselected.tsx index 8c221715d..4282915c6 100644 --- a/src/components/IconTabUnselected.tsx +++ b/src/components/IconTabUnselected.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTabUnselected: React.FC = (props) => ( diff --git a/src/components/IconTableChart.tsx b/src/components/IconTableChart.tsx index 896779585..8a2078a85 100644 --- a/src/components/IconTableChart.tsx +++ b/src/components/IconTableChart.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTableChart: React.FC = (props) => ( diff --git a/src/components/IconTableRows.tsx b/src/components/IconTableRows.tsx index b2eace44a..5b8bc8efe 100644 --- a/src/components/IconTableRows.tsx +++ b/src/components/IconTableRows.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTableRows: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconTabletAndroid.tsx b/src/components/IconTabletAndroid.tsx index 66a44592c..1d49395c7 100644 --- a/src/components/IconTabletAndroid.tsx +++ b/src/components/IconTabletAndroid.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTabletAndroid: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconTagFaces.tsx b/src/components/IconTagFaces.tsx index 1e7ad328e..dfe1b0d6e 100644 --- a/src/components/IconTagFaces.tsx +++ b/src/components/IconTagFaces.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTagFaces: React.FC = (props) => ( diff --git a/src/components/IconTapAndPlay.tsx b/src/components/IconTapAndPlay.tsx index 5aa4d1a36..a0baad459 100644 --- a/src/components/IconTapAndPlay.tsx +++ b/src/components/IconTapAndPlay.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTapAndPlay: React.FC = (props) => ( diff --git a/src/components/IconTapas.tsx b/src/components/IconTapas.tsx index 1a6372f63..f51eb0a6f 100644 --- a/src/components/IconTapas.tsx +++ b/src/components/IconTapas.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTapas: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconTextFields.tsx b/src/components/IconTextFields.tsx index d4cbae6f6..459bc490a 100644 --- a/src/components/IconTextFields.tsx +++ b/src/components/IconTextFields.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTextFields: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconTextRotateUp.tsx b/src/components/IconTextRotateUp.tsx index aa2afaf2d..0d5e49532 100644 --- a/src/components/IconTextRotateUp.tsx +++ b/src/components/IconTextRotateUp.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTextRotateUp: React.FC = (props) => ( diff --git a/src/components/IconTextRotateVertical.tsx b/src/components/IconTextRotateVertical.tsx index 000a08ba5..7e173ebce 100644 --- a/src/components/IconTextRotateVertical.tsx +++ b/src/components/IconTextRotateVertical.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTextRotateVertical: React.FC = (props) => ( diff --git a/src/components/IconTextRotationAngledown.tsx b/src/components/IconTextRotationAngledown.tsx index 63509fb17..56defc9bc 100644 --- a/src/components/IconTextRotationAngledown.tsx +++ b/src/components/IconTextRotationAngledown.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTextRotationAngledown: React.FC = (props) => ( diff --git a/src/components/IconTextRotationAngleup.tsx b/src/components/IconTextRotationAngleup.tsx index e7ca932a2..a836387ba 100644 --- a/src/components/IconTextRotationAngleup.tsx +++ b/src/components/IconTextRotationAngleup.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTextRotationAngleup: React.FC = (props) => ( diff --git a/src/components/IconTextRotationDown.tsx b/src/components/IconTextRotationDown.tsx index 47613037b..d68b92834 100644 --- a/src/components/IconTextRotationDown.tsx +++ b/src/components/IconTextRotationDown.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTextRotationDown: React.FC = (props) => ( diff --git a/src/components/IconTextRotationNone.tsx b/src/components/IconTextRotationNone.tsx index bf8367fc3..d3a278c5e 100644 --- a/src/components/IconTextRotationNone.tsx +++ b/src/components/IconTextRotationNone.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTextRotationNone: React.FC = (props) => ( diff --git a/src/components/IconTextSnippet.tsx b/src/components/IconTextSnippet.tsx index c44d67c7f..b4c3446d4 100644 --- a/src/components/IconTextSnippet.tsx +++ b/src/components/IconTextSnippet.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTextSnippet: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconTexture.tsx b/src/components/IconTexture.tsx index 58cf173e3..285c04d8b 100644 --- a/src/components/IconTexture.tsx +++ b/src/components/IconTexture.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTexture: React.FC = (props) => ( diff --git a/src/components/IconTheaters.tsx b/src/components/IconTheaters.tsx index acdba4590..b153bbedf 100644 --- a/src/components/IconTheaters.tsx +++ b/src/components/IconTheaters.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTheaters: React.FC = (props) => ( diff --git a/src/components/IconThumbDown.tsx b/src/components/IconThumbDown.tsx index 820822370..34f6b0b36 100644 --- a/src/components/IconThumbDown.tsx +++ b/src/components/IconThumbDown.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconThumbDown: React.FC = (props) => ( diff --git a/src/components/IconThumbDownAlt.tsx b/src/components/IconThumbDownAlt.tsx index a9849ab1f..feb322b84 100644 --- a/src/components/IconThumbDownAlt.tsx +++ b/src/components/IconThumbDownAlt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconThumbDownAlt: React.FC = (props) => ( diff --git a/src/components/IconThumbUp.tsx b/src/components/IconThumbUp.tsx index e3acb4b59..3c0343fed 100644 --- a/src/components/IconThumbUp.tsx +++ b/src/components/IconThumbUp.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconThumbUp: React.FC = (props) => ( diff --git a/src/components/IconThumbUpAlt.tsx b/src/components/IconThumbUpAlt.tsx index 717fc6bc4..137eaa382 100644 --- a/src/components/IconThumbUpAlt.tsx +++ b/src/components/IconThumbUpAlt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconThumbUpAlt: React.FC = (props) => ( diff --git a/src/components/IconThumbsUpDown.tsx b/src/components/IconThumbsUpDown.tsx index f12ae88af..8fcc948a1 100644 --- a/src/components/IconThumbsUpDown.tsx +++ b/src/components/IconThumbsUpDown.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconThumbsUpDown: React.FC = (props) => ( diff --git a/src/components/IconTimeToLeave.tsx b/src/components/IconTimeToLeave.tsx index f2db6dc5e..987f4583c 100644 --- a/src/components/IconTimeToLeave.tsx +++ b/src/components/IconTimeToLeave.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTimeToLeave: React.FC = (props) => ( diff --git a/src/components/IconTimelapse.tsx b/src/components/IconTimelapse.tsx index f768f4bf4..d7eea428d 100644 --- a/src/components/IconTimelapse.tsx +++ b/src/components/IconTimelapse.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTimelapse: React.FC = (props) => ( diff --git a/src/components/IconTimeline.tsx b/src/components/IconTimeline.tsx index 7b8dce965..6c1b9edc4 100644 --- a/src/components/IconTimeline.tsx +++ b/src/components/IconTimeline.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTimeline: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconTimer10.tsx b/src/components/IconTimer10.tsx index 6a3707e9f..4661e4978 100644 --- a/src/components/IconTimer10.tsx +++ b/src/components/IconTimer10.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTimer10: React.FC = (props) => ( diff --git a/src/components/IconTimer3.tsx b/src/components/IconTimer3.tsx index 762b9c6d7..6a984b309 100644 --- a/src/components/IconTimer3.tsx +++ b/src/components/IconTimer3.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTimer3: React.FC = (props) => ( diff --git a/src/components/IconTimerOff.tsx b/src/components/IconTimerOff.tsx index ba9f8ead6..9025896ea 100644 --- a/src/components/IconTimerOff.tsx +++ b/src/components/IconTimerOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTimerOff: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconToc.tsx b/src/components/IconToc.tsx index 51c857d6c..2c7c3c170 100644 --- a/src/components/IconToc.tsx +++ b/src/components/IconToc.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconToc: React.FC = (props) => ( diff --git a/src/components/IconToday.tsx b/src/components/IconToday.tsx index d27c1655a..634a86497 100644 --- a/src/components/IconToday.tsx +++ b/src/components/IconToday.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconToday: React.FC = (props) => ( diff --git a/src/components/IconToggleOff.tsx b/src/components/IconToggleOff.tsx index 466e81481..00d37dd00 100644 --- a/src/components/IconToggleOff.tsx +++ b/src/components/IconToggleOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconToggleOff: React.FC = (props) => ( diff --git a/src/components/IconToggleOn.tsx b/src/components/IconToggleOn.tsx index ccc5b6423..ddaafee93 100644 --- a/src/components/IconToggleOn.tsx +++ b/src/components/IconToggleOn.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconToggleOn: React.FC = (props) => ( diff --git a/src/components/IconToll.tsx b/src/components/IconToll.tsx index bb9d9a1eb..ce42211da 100644 --- a/src/components/IconToll.tsx +++ b/src/components/IconToll.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconToll: React.FC = (props) => ( diff --git a/src/components/IconTonality.tsx b/src/components/IconTonality.tsx index a3ae2905a..e612098f8 100644 --- a/src/components/IconTonality.tsx +++ b/src/components/IconTonality.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTonality: React.FC = (props) => ( diff --git a/src/components/IconTopic.tsx b/src/components/IconTopic.tsx index 55fc0b983..d5946efdf 100644 --- a/src/components/IconTopic.tsx +++ b/src/components/IconTopic.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTopic: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconToys.tsx b/src/components/IconToys.tsx index 0a11eb01e..7abee036a 100644 --- a/src/components/IconToys.tsx +++ b/src/components/IconToys.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconToys: React.FC = (props) => ( diff --git a/src/components/IconTrackChanges.tsx b/src/components/IconTrackChanges.tsx index d5eeb34ce..8370c329c 100644 --- a/src/components/IconTrackChanges.tsx +++ b/src/components/IconTrackChanges.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTrackChanges: React.FC = (props) => ( diff --git a/src/components/IconTraffic.tsx b/src/components/IconTraffic.tsx index 28b9d894f..851c16419 100644 --- a/src/components/IconTraffic.tsx +++ b/src/components/IconTraffic.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTraffic: React.FC = (props) => ( diff --git a/src/components/IconTrain.tsx b/src/components/IconTrain.tsx index c9193d5c7..2c7287373 100644 --- a/src/components/IconTrain.tsx +++ b/src/components/IconTrain.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTrain: React.FC = (props) => ( diff --git a/src/components/IconTram.tsx b/src/components/IconTram.tsx index a13258fd1..43e597fb4 100644 --- a/src/components/IconTram.tsx +++ b/src/components/IconTram.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTram: React.FC = (props) => ( diff --git a/src/components/IconTransferWithinAStation.tsx b/src/components/IconTransferWithinAStation.tsx index 289158b9c..d3cbab203 100644 --- a/src/components/IconTransferWithinAStation.tsx +++ b/src/components/IconTransferWithinAStation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTransferWithinAStation: React.FC = (props) => ( diff --git a/src/components/IconTransform.tsx b/src/components/IconTransform.tsx index 781105436..a232d4f2d 100644 --- a/src/components/IconTransform.tsx +++ b/src/components/IconTransform.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTransform: React.FC = (props) => ( diff --git a/src/components/IconTransitEnterexit.tsx b/src/components/IconTransitEnterexit.tsx index cb39753ce..83417c76a 100644 --- a/src/components/IconTransitEnterexit.tsx +++ b/src/components/IconTransitEnterexit.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTransitEnterexit: React.FC = (props) => ( diff --git a/src/components/IconTranslate.tsx b/src/components/IconTranslate.tsx index d813dd97c..c6128e6d9 100644 --- a/src/components/IconTranslate.tsx +++ b/src/components/IconTranslate.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTranslate: React.FC = (props) => ( diff --git a/src/components/IconTrendingDown.tsx b/src/components/IconTrendingDown.tsx index e3bf1ac1d..bcfeb867d 100644 --- a/src/components/IconTrendingDown.tsx +++ b/src/components/IconTrendingDown.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTrendingDown: React.FC = (props) => ( diff --git a/src/components/IconTrendingFlat.tsx b/src/components/IconTrendingFlat.tsx index 48b95ec0f..b47ad30bc 100644 --- a/src/components/IconTrendingFlat.tsx +++ b/src/components/IconTrendingFlat.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTrendingFlat: React.FC = (props) => ( diff --git a/src/components/IconTrendingUp.tsx b/src/components/IconTrendingUp.tsx index 94e1caa3a..7ed6f36bc 100644 --- a/src/components/IconTrendingUp.tsx +++ b/src/components/IconTrendingUp.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTrendingUp: React.FC = (props) => ( diff --git a/src/components/IconTripOrigin.tsx b/src/components/IconTripOrigin.tsx index 4d2253e90..a7d148ef0 100644 --- a/src/components/IconTripOrigin.tsx +++ b/src/components/IconTripOrigin.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTripOrigin: React.FC = (props) => ( diff --git a/src/components/IconTty.tsx b/src/components/IconTty.tsx index c8ebb8b50..c5c846088 100644 --- a/src/components/IconTty.tsx +++ b/src/components/IconTty.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTty: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconTurnedIn.tsx b/src/components/IconTurnedIn.tsx index 1803d1c50..9c2e10c8b 100644 --- a/src/components/IconTurnedIn.tsx +++ b/src/components/IconTurnedIn.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTurnedIn: React.FC = (props) => ( diff --git a/src/components/IconTurnedInNot.tsx b/src/components/IconTurnedInNot.tsx index 61567d27c..8e7851e40 100644 --- a/src/components/IconTurnedInNot.tsx +++ b/src/components/IconTurnedInNot.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTurnedInNot: React.FC = (props) => ( diff --git a/src/components/IconTv.tsx b/src/components/IconTv.tsx index 4bf072b24..bfa71e2cf 100644 --- a/src/components/IconTv.tsx +++ b/src/components/IconTv.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTv: React.FC = (props) => ( diff --git a/src/components/IconTvOff.tsx b/src/components/IconTvOff.tsx index 2d30c9237..677e27d67 100644 --- a/src/components/IconTvOff.tsx +++ b/src/components/IconTvOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTvOff: React.FC = (props) => ( diff --git a/src/components/IconTwoWheeler.tsx b/src/components/IconTwoWheeler.tsx index d07c5cab5..2930d0528 100644 --- a/src/components/IconTwoWheeler.tsx +++ b/src/components/IconTwoWheeler.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconTwoWheeler: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconUnfoldLess.tsx b/src/components/IconUnfoldLess.tsx index 17881376e..d8f0cb3d1 100644 --- a/src/components/IconUnfoldLess.tsx +++ b/src/components/IconUnfoldLess.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconUnfoldLess: React.FC = (props) => ( diff --git a/src/components/IconUnfoldMore.tsx b/src/components/IconUnfoldMore.tsx index fed8f687a..d295910c4 100644 --- a/src/components/IconUnfoldMore.tsx +++ b/src/components/IconUnfoldMore.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconUnfoldMore: React.FC = (props) => ( diff --git a/src/components/IconUnpublished.tsx b/src/components/IconUnpublished.tsx index 4e35cc619..4cf12efb7 100644 --- a/src/components/IconUnpublished.tsx +++ b/src/components/IconUnpublished.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconUnpublished: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconUpdate.tsx b/src/components/IconUpdate.tsx index eba07660a..64b51130e 100644 --- a/src/components/IconUpdate.tsx +++ b/src/components/IconUpdate.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconUpdate: React.FC = (props) => ( = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconVerified.tsx b/src/components/IconVerified.tsx index 821dca8be..2a417b551 100644 --- a/src/components/IconVerified.tsx +++ b/src/components/IconVerified.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVerified: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconVerticalAlignBottom.tsx b/src/components/IconVerticalAlignBottom.tsx index dd2ced3f3..dbc5b2383 100644 --- a/src/components/IconVerticalAlignBottom.tsx +++ b/src/components/IconVerticalAlignBottom.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVerticalAlignBottom: React.FC = (props) => ( diff --git a/src/components/IconVerticalAlignCenter.tsx b/src/components/IconVerticalAlignCenter.tsx index 559175626..22b66493b 100644 --- a/src/components/IconVerticalAlignCenter.tsx +++ b/src/components/IconVerticalAlignCenter.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVerticalAlignCenter: React.FC = (props) => ( diff --git a/src/components/IconVerticalAlignTop.tsx b/src/components/IconVerticalAlignTop.tsx index 122ef70f4..f554527d7 100644 --- a/src/components/IconVerticalAlignTop.tsx +++ b/src/components/IconVerticalAlignTop.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVerticalAlignTop: React.FC = (props) => ( diff --git a/src/components/IconVerticalDistribute.tsx b/src/components/IconVerticalDistribute.tsx index 659069aab..7f628fff0 100644 --- a/src/components/IconVerticalDistribute.tsx +++ b/src/components/IconVerticalDistribute.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVerticalDistribute: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconVibration.tsx b/src/components/IconVibration.tsx index 85c980b98..57ca003bf 100644 --- a/src/components/IconVibration.tsx +++ b/src/components/IconVibration.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVibration: React.FC = (props) => ( diff --git a/src/components/IconVideoCall.tsx b/src/components/IconVideoCall.tsx index d725e4290..9398cef58 100644 --- a/src/components/IconVideoCall.tsx +++ b/src/components/IconVideoCall.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVideoCall: React.FC = (props) => ( diff --git a/src/components/IconVideoLabel.tsx b/src/components/IconVideoLabel.tsx index cf8a3b3fd..d490885cc 100644 --- a/src/components/IconVideoLabel.tsx +++ b/src/components/IconVideoLabel.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVideoLabel: React.FC = (props) => ( diff --git a/src/components/IconVideoLibrary.tsx b/src/components/IconVideoLibrary.tsx index c16877908..b93f9b2fa 100644 --- a/src/components/IconVideoLibrary.tsx +++ b/src/components/IconVideoLibrary.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVideoLibrary: React.FC = (props) => ( diff --git a/src/components/IconVideoSettings.tsx b/src/components/IconVideoSettings.tsx index 25963a2a2..d366ef8d2 100644 --- a/src/components/IconVideoSettings.tsx +++ b/src/components/IconVideoSettings.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVideoSettings: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconVideocamOff.tsx b/src/components/IconVideocamOff.tsx index 57bf7caf7..cd7220c4e 100644 --- a/src/components/IconVideocamOff.tsx +++ b/src/components/IconVideocamOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVideocamOff: React.FC = (props) => ( diff --git a/src/components/IconVideogameAsset.tsx b/src/components/IconVideogameAsset.tsx index ae68f0624..6ebaff71b 100644 --- a/src/components/IconVideogameAsset.tsx +++ b/src/components/IconVideogameAsset.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVideogameAsset: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconViewArray.tsx b/src/components/IconViewArray.tsx index 35d2013ad..b34e350e1 100644 --- a/src/components/IconViewArray.tsx +++ b/src/components/IconViewArray.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconViewArray: React.FC = (props) => ( diff --git a/src/components/IconViewCarousel.tsx b/src/components/IconViewCarousel.tsx index fc64ddca2..2f9e95c33 100644 --- a/src/components/IconViewCarousel.tsx +++ b/src/components/IconViewCarousel.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconViewCarousel: React.FC = (props) => ( diff --git a/src/components/IconViewColumn.tsx b/src/components/IconViewColumn.tsx index c167bda07..f499d60fc 100644 --- a/src/components/IconViewColumn.tsx +++ b/src/components/IconViewColumn.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconViewColumn: React.FC = (props) => ( diff --git a/src/components/IconViewComfy.tsx b/src/components/IconViewComfy.tsx index 0147c0f89..fd7fc89be 100644 --- a/src/components/IconViewComfy.tsx +++ b/src/components/IconViewComfy.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconViewComfy: React.FC = (props) => ( diff --git a/src/components/IconViewCompact.tsx b/src/components/IconViewCompact.tsx index 9d57d13d5..5910d8730 100644 --- a/src/components/IconViewCompact.tsx +++ b/src/components/IconViewCompact.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconViewCompact: React.FC = (props) => ( diff --git a/src/components/IconViewDay.tsx b/src/components/IconViewDay.tsx index c0f3cf1e4..931a6ed44 100644 --- a/src/components/IconViewDay.tsx +++ b/src/components/IconViewDay.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconViewDay: React.FC = (props) => ( diff --git a/src/components/IconViewHeadline.tsx b/src/components/IconViewHeadline.tsx index 870c390cf..5129ca55c 100644 --- a/src/components/IconViewHeadline.tsx +++ b/src/components/IconViewHeadline.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconViewHeadline: React.FC = (props) => ( diff --git a/src/components/IconViewList.tsx b/src/components/IconViewList.tsx index 5e884fe37..94adb824e 100644 --- a/src/components/IconViewList.tsx +++ b/src/components/IconViewList.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconViewList: React.FC = (props) => ( diff --git a/src/components/IconViewModule.tsx b/src/components/IconViewModule.tsx index 49de3cdf0..b1c8b054e 100644 --- a/src/components/IconViewModule.tsx +++ b/src/components/IconViewModule.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconViewModule: React.FC = (props) => ( diff --git a/src/components/IconViewQuilt.tsx b/src/components/IconViewQuilt.tsx index 170902d7a..8f3101cfd 100644 --- a/src/components/IconViewQuilt.tsx +++ b/src/components/IconViewQuilt.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconViewQuilt: React.FC = (props) => ( diff --git a/src/components/IconViewSidebar.tsx b/src/components/IconViewSidebar.tsx index 770b9506b..2ef5fa9f2 100644 --- a/src/components/IconViewSidebar.tsx +++ b/src/components/IconViewSidebar.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconViewSidebar: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconViewWeek.tsx b/src/components/IconViewWeek.tsx index 8b5d43d1c..f364b6fbb 100644 --- a/src/components/IconViewWeek.tsx +++ b/src/components/IconViewWeek.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconViewWeek: React.FC = (props) => ( diff --git a/src/components/IconVignette.tsx b/src/components/IconVignette.tsx index 7b57342e3..1eb3b7514 100644 --- a/src/components/IconVignette.tsx +++ b/src/components/IconVignette.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVignette: React.FC = (props) => ( diff --git a/src/components/IconVisibility.tsx b/src/components/IconVisibility.tsx index a3fac4cff..bbbe5ef84 100644 --- a/src/components/IconVisibility.tsx +++ b/src/components/IconVisibility.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVisibility: React.FC = (props) => ( diff --git a/src/components/IconVisibilityOff.tsx b/src/components/IconVisibilityOff.tsx index 320c8d49f..ca1fbbe22 100644 --- a/src/components/IconVisibilityOff.tsx +++ b/src/components/IconVisibilityOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVisibilityOff: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconVoiceOverOff.tsx b/src/components/IconVoiceOverOff.tsx index f2c2c3552..f1cb13637 100644 --- a/src/components/IconVoiceOverOff.tsx +++ b/src/components/IconVoiceOverOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVoiceOverOff: React.FC = (props) => ( diff --git a/src/components/IconVoicemail.tsx b/src/components/IconVoicemail.tsx index f8f4e25db..3b48efd48 100644 --- a/src/components/IconVoicemail.tsx +++ b/src/components/IconVoicemail.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVoicemail: React.FC = (props) => ( diff --git a/src/components/IconVolumeDown.tsx b/src/components/IconVolumeDown.tsx index 8422c0050..de70bc161 100644 --- a/src/components/IconVolumeDown.tsx +++ b/src/components/IconVolumeDown.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVolumeDown: React.FC = (props) => ( diff --git a/src/components/IconVolumeMute.tsx b/src/components/IconVolumeMute.tsx index 4a758544d..2ed465b44 100644 --- a/src/components/IconVolumeMute.tsx +++ b/src/components/IconVolumeMute.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVolumeMute: React.FC = (props) => ( diff --git a/src/components/IconVolumeOff.tsx b/src/components/IconVolumeOff.tsx index c86aa1f75..de11e7b41 100644 --- a/src/components/IconVolumeOff.tsx +++ b/src/components/IconVolumeOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVolumeOff: React.FC = (props) => ( diff --git a/src/components/IconVolumeUp.tsx b/src/components/IconVolumeUp.tsx index f7f953f10..e816ad73d 100644 --- a/src/components/IconVolumeUp.tsx +++ b/src/components/IconVolumeUp.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVolumeUp: React.FC = (props) => ( diff --git a/src/components/IconVpnKey.tsx b/src/components/IconVpnKey.tsx index f24b6204a..96d1f5afb 100644 --- a/src/components/IconVpnKey.tsx +++ b/src/components/IconVpnKey.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVpnKey: React.FC = (props) => ( diff --git a/src/components/IconVpnLock.tsx b/src/components/IconVpnLock.tsx index 916a61744..ce5d61a93 100644 --- a/src/components/IconVpnLock.tsx +++ b/src/components/IconVpnLock.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconVpnLock: React.FC = (props) => ( diff --git a/src/components/IconWallpaper.tsx b/src/components/IconWallpaper.tsx index ac6bc87d6..e57924f22 100644 --- a/src/components/IconWallpaper.tsx +++ b/src/components/IconWallpaper.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWallpaper: React.FC = (props) => ( diff --git a/src/components/IconWarning.tsx b/src/components/IconWarning.tsx index eb27810e7..90f520ac5 100644 --- a/src/components/IconWarning.tsx +++ b/src/components/IconWarning.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWarning: React.FC = (props) => ( diff --git a/src/components/IconWash.tsx b/src/components/IconWash.tsx index 3c1a24fe9..2c9693eba 100644 --- a/src/components/IconWash.tsx +++ b/src/components/IconWash.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWash: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconWatchLater.tsx b/src/components/IconWatchLater.tsx index 739874666..cb366c36d 100644 --- a/src/components/IconWatchLater.tsx +++ b/src/components/IconWatchLater.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWatchLater: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconWbAuto.tsx b/src/components/IconWbAuto.tsx index 98c9cee96..fedd84ac7 100644 --- a/src/components/IconWbAuto.tsx +++ b/src/components/IconWbAuto.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWbAuto: React.FC = (props) => ( diff --git a/src/components/IconWbCloudy.tsx b/src/components/IconWbCloudy.tsx index 1ae7e1698..b4964ee2a 100644 --- a/src/components/IconWbCloudy.tsx +++ b/src/components/IconWbCloudy.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWbCloudy: React.FC = (props) => ( diff --git a/src/components/IconWbIncandescent.tsx b/src/components/IconWbIncandescent.tsx index 5e9be7a59..ac2166881 100644 --- a/src/components/IconWbIncandescent.tsx +++ b/src/components/IconWbIncandescent.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWbIncandescent: React.FC = (props) => ( diff --git a/src/components/IconWbIridescent.tsx b/src/components/IconWbIridescent.tsx index 3348e9ef5..95fc0a686 100644 --- a/src/components/IconWbIridescent.tsx +++ b/src/components/IconWbIridescent.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWbIridescent: React.FC = (props) => ( diff --git a/src/components/IconWbSunny.tsx b/src/components/IconWbSunny.tsx index ecddcc35a..e460b0793 100644 --- a/src/components/IconWbSunny.tsx +++ b/src/components/IconWbSunny.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWbSunny: React.FC = (props) => ( diff --git a/src/components/IconWc.tsx b/src/components/IconWc.tsx index 08cc843e6..3f3caee25 100644 --- a/src/components/IconWc.tsx +++ b/src/components/IconWc.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWc: React.FC = (props) => ( diff --git a/src/components/IconWeb.tsx b/src/components/IconWeb.tsx index 2077a84c9..852084f5e 100644 --- a/src/components/IconWeb.tsx +++ b/src/components/IconWeb.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWeb: React.FC = (props) => ( diff --git a/src/components/IconWebAsset.tsx b/src/components/IconWebAsset.tsx index a21feb9e5..ee7858d52 100644 --- a/src/components/IconWebAsset.tsx +++ b/src/components/IconWebAsset.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWebAsset: React.FC = (props) => ( diff --git a/src/components/IconWeekend.tsx b/src/components/IconWeekend.tsx index 0572a843a..89f235f69 100644 --- a/src/components/IconWeekend.tsx +++ b/src/components/IconWeekend.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWeekend: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconWheelchairPickup.tsx b/src/components/IconWheelchairPickup.tsx index 1cf8796c3..cc3daa0f3 100644 --- a/src/components/IconWheelchairPickup.tsx +++ b/src/components/IconWheelchairPickup.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWheelchairPickup: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconWidgets.tsx b/src/components/IconWidgets.tsx index da106c45c..36af6c4c7 100644 --- a/src/components/IconWidgets.tsx +++ b/src/components/IconWidgets.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWidgets: React.FC = (props) => ( diff --git a/src/components/IconWifi.tsx b/src/components/IconWifi.tsx index fe56409d9..08599a303 100644 --- a/src/components/IconWifi.tsx +++ b/src/components/IconWifi.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWifi: React.FC = (props) => ( diff --git a/src/components/IconWifiCalling.tsx b/src/components/IconWifiCalling.tsx index e4da70fd7..e28897685 100644 --- a/src/components/IconWifiCalling.tsx +++ b/src/components/IconWifiCalling.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWifiCalling: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconWifiOff.tsx b/src/components/IconWifiOff.tsx index 0e03e5fb4..4d937234d 100644 --- a/src/components/IconWifiOff.tsx +++ b/src/components/IconWifiOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWifiOff: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconWineBar.tsx b/src/components/IconWineBar.tsx index 10a8478e2..099fc2b71 100644 --- a/src/components/IconWineBar.tsx +++ b/src/components/IconWineBar.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWineBar: React.FC = (props) => ( = (props) => ( diff --git a/src/components/IconWorkOff.tsx b/src/components/IconWorkOff.tsx index 4749054cb..385d9c9e8 100644 --- a/src/components/IconWorkOff.tsx +++ b/src/components/IconWorkOff.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWorkOff: React.FC = (props) => ( diff --git a/src/components/IconWorkOutline.tsx b/src/components/IconWorkOutline.tsx index 2bd23e7ed..04c28c80c 100644 --- a/src/components/IconWorkOutline.tsx +++ b/src/components/IconWorkOutline.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWorkOutline: React.FC = (props) => ( diff --git a/src/components/IconWrapText.tsx b/src/components/IconWrapText.tsx index a3b27a89d..d98fd38ac 100644 --- a/src/components/IconWrapText.tsx +++ b/src/components/IconWrapText.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWrapText: React.FC = (props) => ( diff --git a/src/components/IconWrongLocation.tsx b/src/components/IconWrongLocation.tsx index 6af0e5a50..fe4f01414 100644 --- a/src/components/IconWrongLocation.tsx +++ b/src/components/IconWrongLocation.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconWrongLocation: React.FC = (props) => ( = (props) => ( = (props) => ( diff --git a/src/components/IconZoomIn.tsx b/src/components/IconZoomIn.tsx index 08f90e1f7..2791850d9 100644 --- a/src/components/IconZoomIn.tsx +++ b/src/components/IconZoomIn.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconZoomIn: React.FC = (props) => ( diff --git a/src/components/IconZoomOut.tsx b/src/components/IconZoomOut.tsx index 3e06b69ee..693db5cb1 100644 --- a/src/components/IconZoomOut.tsx +++ b/src/components/IconZoomOut.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconZoomOut: React.FC = (props) => ( diff --git a/src/components/IconZoomOutMap.tsx b/src/components/IconZoomOutMap.tsx index 13456ec3f..3ebef5f20 100644 --- a/src/components/IconZoomOutMap.tsx +++ b/src/components/IconZoomOutMap.tsx @@ -1,5 +1,6 @@ import React from 'react' import { IconProps } from './types' + const IconZoomOutMap: React.FC = (props) => (